作为不同用户执行 cron 作业?

发布于 2024-10-21 12:35:52 字数 107 浏览 0 评论 0原文

我需要在我的一项 cron 作业中通过curl 调用脚本。该脚本需要对 Web 根目录的写入权限。 Apache 没有对我的 Web 根目录的写入权限。如何以不同的用户身份执行 cron 作业?谢谢。

I need to call a script via curl in one of my cron jobs. The script needs write access to the web root. Apache doesn't have write access to my web root. How can I execute the cron job as a different user? Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

东京女 2024-10-28 12:35:52

您可以使用组权限。

创建一个对该目录具有写入权限的组。

groupadd web

将您自己和 apache 添加到新的 Web 组中

useradd -G apache web

更改文档根目录的所有权权限以属于新的 Web 组

chown -R you:web /path/to/docroot

设置 docroot 可写

chmod a+w /path/to/docroot

You can use group permissions.

Create a group that will have write access to that directory.

groupadd web

Add yourself and apache to the new web group

useradd -G apache web

Change the document root's ownership permissions to belong to the new web group

chown -R you:web /path/to/docroot

Set the docroot writable

chmod a+w /path/to/docroot
像你 2024-10-28 12:35:52

无论您如何处理此问题,您都需要一个具有 Web 根目录写入权限的帐户(限制越多越好)。我知道,这似乎是显而易见的。接下来,以该用户身份登录并创建 cron 作业。如果您有 root:

$ su
# su -u thisotheruser
$ crontab -e

并创建 cron 作业。稍后有几个人退出,一切就都准备好了。

No matter how you go about this, you need an account (the more restricted, the better) that has write access to the web root. This seems obvious, I know. Next, log in as that user and create the cron job. If you have root:

$ su
# su -u thisotheruser
$ crontab -e

and create the cron job. A couple exits later, and you're all set.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文