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.
我创建了一个简单的监控 python 程序,它使用 paramiko 和 fabric api 通过 ssh 检查远程服务器,现在我想找出远程服务器的 java 程序中是否发生死锁。
我知道我可以通过使用在本地执行此操作
$JAVA_HOME/bin/jstack -F `pgrep java`|grep "Deadlock"
但是我怎样才能通过 ssh 使用 python 做到这一点?