从 inittab 不以 root 身份执行 python 脚本
我有一个 python 脚本,我想从 inittab 启动,如下所示
s1:respawn:/home/a_user/app/script.py
我相信 initab 以 root 身份执行,因此 a_user 的环境不可用
该脚本需要知道“ a_user”用于ini文件设置和日志文件存储的主目录。我想避免在脚本中对这些路径进行硬编码。是否可以以 a_user 而不是 root 身份执行此脚本?如果可能的话,a_user HOME 环境变量是否可用?
问候
I have a python script which I would like to launch from inittab, shown below
s1:respawn:/home/a_user/app/script.py
I believe initab executes as root, so the a_user's envrinment is not available
The script needs to know "a_user" home directory for ini file settings and log file storage. I would like to avoid hard coding these paths in my script. Is it possible to execute this script as a_user and not a root? If this is possible would a_user HOME environment variable be available?
Regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用
runuser
(或发行版的等效项)以其他用户身份运行它。runuser
确实会更改$HOME
,但其他类似命令可能不会。Use
runuser
(or the distro's equvalent) to run it as a different user.runuser
does change$HOME
, but other similar commands may not.你可以将 python 二进制文件复制到 python-suid,
将其 chown 给您想要运行脚本的用户,
然后在脚本 #!/usr/bin/python-suid 中chown u+s python-suid
you could copy python binary to python-suid,
chown it to user you want to run scripts as and chown u+s python-suid
then in script #!/usr/bin/python-suid
你可以这样做:
You can do something like: