以非 root 用户身份启动时设置服务
我希望以 Fedora 15 上的非 root 用户身份在启动时启动服务。
我已将脚本放入 /etc/init.d/ 中,使用 chkconfig --add 和 chkconfig --level 来完成所有设置并正常工作。
我需要做什么才能以非 root 身份启动它?
谢谢你! 凯特
I would like to have a service start at boot, as a non-root user on Fedora 15.
I have placed the script into /etc/init.d/, used chkconfig --add and chkconfig --level to get it all set up and it is working correctly.
What do I need to do to have it launched as non-root?
Thank you!
Kate
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您当前对该服务的调用是:
则使用“su”或“sudo”更改为非 root 用户:
双破折号对于将“
sudo
选项”与“您的服务选项”。If your current invocation of the service is:
then use 'su' or 'sudo' to change to a non-root user:
The double-dash is important to separate the 'options to
sudo
' from the 'options to your service'.