0

Lsof:连接到远程服务器时找不到 Bash 命令。这同样适用于终端。

我尝试在 python 中使用其中三个用于 ssh 的库:pssh、fabric 和 paramiko。

主要错误是使用 pssh 和 fabric 库,我的大多数命令都可以工作,例如 ls、df、kill 等。但是 lsof 命令不起作用。它会抛出此错误“lsof:找不到 bash 命令”。如果我使用 putty 连接到终端并运行相同的命令,Lsof 可以完美运行。

因此,我尝试了 paramiko 的 invoke_shell 变体,因为它使用了 shell 通道。虽然 paramiko 的 invoke_shell 正确运行 lsof 命令,但它很耗时。

面料代码:

c = Connection()
result = c.run('lsof /lt')

print(result.stdout.strip())

密码:

from __future__ import print_function

from pssh.clients import ParallelSSHClient

hosts = ['host']
client = ParallelSSHClient(hosts, user='usename', password='pass')

output = client.run_command('lsof /lt | grep deleted ',  sudo=True)
for host, host_output in output.items():
    for line in host_output.stdout:
        print(line)

由于我对此很陌生,因此我们将不胜感激。请让我知道解决此问题的最佳方法是什么。

4

1 回答 1

0

Thanks for the comment @larsks. That fixed it.

What I did was: Run type -a lsof and copy the path from there and then add it to my script.

Thanks a lot!

于 2019-08-14T09:47:38.607 回答