在 rhel 6 上使用非 root 用户的新贵
upstart with non root user on rhel 6
如何在 rhel 6 中以非 root 用户身份启动 upstart 脚本。我尝试了以下选项但没有成功。
exec start-stop-daemon --start --quiet --chuid mongodb --exec $command //This works only on ubuntu
exec setuid $uid -c $command // Didn't work
exec --run-as-user $user $command // Didn't work
exec su -c $command $user
上面的命令对我有用。这可能对其他人有帮助,因此发布答案。
如何在 rhel 6 中以非 root 用户身份启动 upstart 脚本。我尝试了以下选项但没有成功。
exec start-stop-daemon --start --quiet --chuid mongodb --exec $command //This works only on ubuntu
exec setuid $uid -c $command // Didn't work
exec --run-as-user $user $command // Didn't work
exec su -c $command $user
上面的命令对我有用。这可能对其他人有帮助,因此发布答案。