Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私の開発サーバーの 1 つで、10 秒ごとに 10 秒間 CPU を占有するコマンドを実行するテスト スクリプトがあることに気付きました。
テスト スクリプトを実行しているプロセスを強制終了しましたが、実行中のプロセスを監視していると、不明なプロセスによってテスト スクリプトが定期的に開始されていることに気付きました。これを開始するcronジョブを考えています。このテストスクリプトを定期的に実行しているプロセスを見つける方法はありますか?
プロセスIDとその親のIDは、次を使用して確認できますps。
ps
$ ps -o pid,ppid 4708 PID PPID 4708 4580
または、親のIDを取得することもできます。
$ ps -o ppid= 4708 4580