/etc/init.d/cron restart -bash: /etc/init.d/cron: No such file or directory
时间: 2023-07-28 18:10:31 浏览: 95
一些常见的日志管理方法和工具
如果在你的 Linux 系统中执行 `/etc/init.d/cron restart` 命令时出现 `/etc/init.d/cron: No such file or directory` 的错误提示,可能是因为你的系统使用的是 Systemd 而不是 SysVinit。
在 Systemd 中,服务的启动和管理不再通过 `/etc/init.d/` 目录下的脚本文件实现,而是通过使用 `systemctl` 命令。
因此,你可以尝试使用以下命令来重启 crontab 服务:
```
sudo systemctl restart cron.service
```
如果你希望在系统启动时自动启动 crontab 服务,可以使用以下命令:
```
sudo systemctl enable cron.service
```
这样就可以在系统启动时自动启动 crontab 服务了。如果还有问题,可以在评论区留言。
阅读全文