命令在通过结构执行时被挂起

发布于 2024-09-06 20:26:14 字数 288 浏览 2 评论 0原文

当我通过结构在一台远程计算机上运行以下命令时,它被挂起。

def execute_lmo_scripts():
    print "preparing to execute lmo scripts................"    
    output = run("sudo suwww ; ")  # or this command  sudo("suwww",shell=False)

如果我在远程服务器上手动运行该命令,它可能正在执行。 任何人都可以指导我如何解决这个问题吗?

When i am running the below command on one of the remote machine via fabric it is getting hanged.

def execute_lmo_scripts():
    print "preparing to execute lmo scripts................"    
    output = run("sudo suwww ; ")  # or this command  sudo("suwww",shell=False)

If i manually run the command on the remote server it is being executed probably.
Can any one please guide me on how to resolve this problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

帅气尐潴 2024-09-13 20:26:14

可能您使用的是 run("sudo ..") 而不是 sudo() 并且 sudo 命令要求的输入不是没有被收到,所以它永远在等待。

Probably that you're using run("sudo ..") and not sudo() and the sudo command is asking for input that isn't being received, so it's waiting, forever.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文