在here-document中通过SSH运行命令时不存在TTY

前端之家收集整理的这篇文章主要介绍了在here-document中通过SSH运行命令时不存在TTY前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试通过这样的文档在这样的SSH上运行命令:
ssh example.com <<END
sudo /etc/init.d/apache2 reload
END

除非我正在尝试运行需要输入的内容,例如sudo的密码,否则通常可以正常工作.在这种情况下,我收到以下消息:

sudo: no tty present and no askpass program specified

我知道我可以在SSH上使用-t标志来分配伪tty,例如:

ssh -t example.com "sudo /etc/init.d/apache2 reload"

它会工作,但是当我在这里尝试同样的事情 – 文档时,它不起作用,我将得到关于没有tty存在的相同错误

ssh -t example.com <<END
sudo /etc/init.d/apache2 reload
END

知道如何让这个工作吗?

另外,如果你想知道为什么我希望它使用here-document而不是只是在同一行上传递它,那是因为输入命令(可能有几个)来自脚本读取的配置文件而且我听说它避免了转义引号,双引号等命令的麻烦.

解决方法

使用visudo编辑sudoers文件并插入以下行:
Defaults:<user>    !requiretty

It doesn’t answer why using the ssh -t "something" versus ssh -t
<<STOP something STOP
doesn’t work. Let’s say I’m not using sudo but
I’m using passwd for my own user directly,I still won’t get the TTY
using the heredoc.

尝试ssh -t -t强制伪tty分配,即使stdin不是终端.

原文链接:https://www.f2er.com/linux/401643.html

猜你在找的Linux相关文章