我添加了这样的用户:
$adduser --system --home /no/home --no-create-home --group --disabled-password --disabled-login testuser
$adduser testuser testgroup
为sudoers添加了行(visudo):
testuser ALL=(ALL) NOPASSWD: ALL %testgroup ALL=(ALL:ALL) NOPASSWD: ALL
当我尝试使用以下内容运行bash脚本时:
#!/bin/sh sudo -u testuser /usr/bin/PHP /usr/local/bin/script.PHP
但是当我运行这个脚本时,我在日志中收到错误:
sudo: no tty present and no askpass program specified
编辑:requiretty不在sudoers文件中.