未找到 Systemd 计时器和挂载

未找到 Systemd 计时器和挂载

我正在尝试设置每 4 小时运行一次的 systemd 时间。当计时器触发时,运行脚本来更新一些数据文件。我跟着systemd 计时器每 2 小时在整点 30 分钟计时一次?systemd 计时器每 15 分钟一次

文件/etc/systemd/system/ftc-data.service

[Unit]
Description=Fetch FTC Do Not Call data files

[Service]
Type=oneshot
ExecStart=/var/ftc/ftc-data/fetch-data.sh

文件/etc/systemd/system/ftc-data.timer

[Unit]
Description=Run ftc-data.service every 4 hours

[Timer]
OnCalendar=00/4:00

[Install]
WantedBy=timers.target

这就是问题出现的地方:

systemctl enable /etc/systemd/system/ftc-data.timer
systemctl start  /etc/systemd/system/ftc-data.timer
systemctl enable /etc/systemd/system/ftc-data.service

命令的结果是:

# systemctl enable /etc/systemd/system/ftc-data.timer

# systemctl start  /etc/systemd/system/ftc-data.timer
Failed to start etc-systemd-system-ftc\x2ddata.timer.mount: Unit etc-systemd-system-ftc\x2ddata.timer.mount not found.

# systemctl enable /etc/systemd/system/ftc-data.service
The unit files have no installation config (WantedBy, RequiredBy, Also, Alias
settings in the [Install] section, and DefaultInstance for template units).
This means they are not meant to be enabled using systemctl.
Possible reasons for having this kind of units are:
1) A unit may be statically enabled by being symlinked from another unit's
   .wants/ or .requires/ directory.
2) A unit's purpose may be to act as a helper for some other unit which has
   a requirement dependency on it.
3) A unit may be started when needed via activation (socket, path, timer,
   D-Bus, udev, scripted systemctl call, ...).
4) In case of template units, the unit is meant to be enabled with some
   instance name specified.

看起来问题是在尝试启用时开始的ftc-data.timer。我试图理解Failed to start etc-systemd-system-ftc\x2ddata.timer.mount: Unit etc-systemd-system-ftc\x2ddata.timer.mount not found.但我在搜索时没有找到命中。我发现了一个帖子新手角 » 单位计时器但是由于 systemd 的计时器太乱,这个家伙又开始使用 cron。

这里是挂载系统文档,但是如果我读完之后能说出问题所在,那该死的。我不知道文件系统挂载与事物有什么关系。我想做的就是每 4 小时运行一个脚本。

cron现在真的很想念。cron简单且有效。它已被替换为更复杂但不起作用的东西。叹...

需要修复什么(除了 systemd 之外)?


这是 Fedora 29 服务器,SELinux 处于强制模式。这可能与以下事情有关:

# ls -Zd /var/ftc/ftc-data/fetch-data.sh
unconfined_u:object_r:httpd_sys_content_t:s0 /var/ftc/ftc-data/fetch-data.sh

Web 服务器可以访问,/var/ftc/ftc-data/因为它需要提供目录中的文档 另请参阅如何解决 Nginx 子目录权限被拒绝的问题?

答案1

你应该提供姓名单元的路径,而不是文件的路径。

你应该这样做:

systemctl enable ftc-data.timer
systemctl start ftc-data.timer
systemctl enable ftc-data.service

相关内容