以 root 身份从 linux bash 重新启动 apache2

发布于 2024-12-04 08:49:38 字数 562 浏览 1 评论 0原文

我想从 linux (OpenSUSE) 中的 bash 重新启动 apache。

我正在尝试从文件(stdin)读取根密码。我是这样做的:

exec < /opt/otrsadm/stdin
read a1
sudo apache2ctl -k graceful
echo $a1

我在日志中看到以下内容:

[Mon Sep 12 23:23:12 2011] [error] [client 192.168.1.101] Restarting apache
[Mon Sep 12 23:23:13 2011] [error] [client 192.168.1.101] sudo
[Mon Sep 12 23:23:13 2011] [error] [client 192.168.1.101] : 
[Mon Sep 12 23:23:13 2011] [error] [client 192.168.1.101] no tty present and no askpass program specified

我的问题是什么以及如何解决它?

I want to restart apache from a bash in linux (OpenSUSE).

I am trying to read the root password from a file (stdin). This is how I do it:

exec < /opt/otrsadm/stdin
read a1
sudo apache2ctl -k graceful
echo $a1

I get this in my log:

[Mon Sep 12 23:23:12 2011] [error] [client 192.168.1.101] Restarting apache
[Mon Sep 12 23:23:13 2011] [error] [client 192.168.1.101] sudo
[Mon Sep 12 23:23:13 2011] [error] [client 192.168.1.101] : 
[Mon Sep 12 23:23:13 2011] [error] [client 192.168.1.101] no tty present and no askpass program specified

What's my problem and how do I fix it?

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

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

发布评论

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

评论(1

向日葵 2024-12-11 08:49:38

sudo -S 选项从标准输入读取密码。

-S(stdin)选项使 sudo 从
标准输入而不是终端设备。

echo "password" | sudo -S apache2ctl -l graceful 

The sudo -S option reads the password from stdin.

The -S (stdin) option causes sudo to read the password from the
standard input instead of the terminal device.

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