从 inittab 不以 root 身份执行 python 脚本

发布于 2024-10-08 00:30:50 字数 269 浏览 4 评论 0原文

我有一个 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 技术交流群。

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

发布评论

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

评论(3

↘紸啶 2024-10-15 00:30:50

使用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.

你又不是我 2024-10-15 00:30:50

你可以将 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

甜宝宝 2024-10-15 00:30:50

你可以这样做:

ig:34:respawn:sudo -u <USER> bash -c 'cd <SCRIPT_WORKING_DIR> && ./PYTHON_SCRIPT.py'

You can do something like:

ig:34:respawn:sudo -u <USER> bash -c 'cd <SCRIPT_WORKING_DIR> && ./PYTHON_SCRIPT.py'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文