错误:“您必须有 tty 才能运行 sudo”使用 sshpass 时

发布于 2025-01-11 09:08:37 字数 614 浏览 0 评论 0原文

我有 gitlab CI 作业,其脚本执行如下:

  stage: permissions
  script: 
    sshpass -p "${PASSWORD}" ssh ${USER}@${HOST} sudo chown -cv user_a:user_a ${directory}/test.txt

上面给出了以下错误:

sudo: sorry, you must have a tty to run sudo

如果我添加 -tssh 我得到:

Pseudo-terminal will not be allocated because stdin is not a terminal.
sudo: sorry, you must have a tty to run sudo

如果我添加 -ttssh,作业一直等待我输入密码。

我的要求是使用 ssh 和文本密码(即 sshpass )执行远程命令,有没有办法可以在不更改服务器上的任何 sudoers 权限的情况下实现此目的?

I have gitlab CI job which had a script execution like below:

  stage: permissions
  script: 
    sshpass -p "${PASSWORD}" ssh ${USER}@${HOST} sudo chown -cv user_a:user_a ${directory}/test.txt

The above gives me following error:

sudo: sorry, you must have a tty to run sudo

If i add -t with ssh i get:

Pseudo-terminal will not be allocated because stdin is not a terminal.
sudo: sorry, you must have a tty to run sudo

If i add -tt with ssh, the job keeps waiting for me to enter the password.

My requirement is to execute a remote command using ssh and text password i.e. sshpass, is there a way i can achieve this without change any sudoers permissions over the server?

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

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

发布评论

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

评论(1

很酷不放纵 2025-01-18 09:08:37

使用类似的内容:

sshpass -p "${PASSWORD}" ssh ${USER}@${HOST} sh -c "echo ${PASSWORD} | sudo chown -cv user_a:user_a ${directory}/test.txt"

将密码从 not tty 写入 sudo 的示例:

echo ${PASSWORD} | sudo -S command

ps 对于配置服务器,请使用 Ansible,他处理这样的任务非常容易。

Use somethinc like:

sshpass -p "${PASSWORD}" ssh ${USER}@${HOST} sh -c "echo ${PASSWORD} | sudo chown -cv user_a:user_a ${directory}/test.txt"

Example for write password from not tty to sudo:

echo ${PASSWORD} | sudo -S command

p.s. For configure servers use Ansible, he handles such tasks very easily.

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