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.
net/ssh gem を使用してリモート サーバーでコマンドを開始し、コマンドがデッドロック状態になっている場合、リモート サーバーで実行されているプロセスの pid を見つけて強制終了するにはどうすればよいでしょうか?
net/ssh gem はこれをサポートしていますか?
sshリモートサーバーにアクセスできる場合は、これを使用してプロセスの pid を取得できます。
ssh
# Assuming the command you want to kill is a ruby program. # If the program is something else, say sparrow mail app, you should replace # ruby with sparrow below. ps -ax | grep ruby
そして、おそらく:
kill -9 <pid>
タグ付けして視覚化する