no crontab for root - using an empty one crontab: installing new crontab "/tmp/crontab.Ar0WMU":1: bad hour errors in crontab file, can't install.
时间: 2023-07-18 12:20:24 浏览: 255
这个错误通常出现在 crontab 文件中有错误的时间格式。请检查你的 crontab 文件中的时间格式是否正确。例如,时间格式应该是 0-59 的数字,而不是字符串。你也可以使用 crontab -e 命令编辑你的 crontab 文件,然后保存并退出。如果问题仍然存在,请尝试重新安装 cron 服务。
相关问题
no crontab for root - using an empty one crontab: installing new crontab "/tmp/crontab.H7mbdO"
这个报错是因为在Linux服务器上尝试为root用户创建定时任务时发生的。"no crontab for root - using an empty one crontab: installing new crontab"的意思是root用户没有预设的定时任务,因此会安装一个空的定时任务。然而,由于权限问题,无法在指定的目录/var/spool/cron/创建新的定时任务文件/tmp/crontab.H7mbdO。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* *3* [linux no crontab for root - using an empty one Permission denied](https://blog.csdn.net/marchcma/article/details/111272443)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 100%"]
[ .reference_list ]
no crontab for root - using an empty one crontab: installing new crontab
错误消息"no crontab for root - using an empty one crontab: installing new crontab"表示在用户root下没有设置任何crontab,因此系统创建了一个新的空crontab文件。
这个错误信息并不会影响你编写定时计划。在Linux系统中,/etc/crontab是系统范围的crontab文件,不属于root用户的crontab。而每个用户的crontab文件独立存储在/var/spool/cron或/var/spool/cron/crontabs目录中(请注意不要直接编辑这些文件!)。
如果你想为root用户创建一个新的crontab,可以按照以下步骤操作:
. 以root用户身份登录到系统。
2. 运行命令`crontab -e`来编辑root用户的crontab文件。
3. 如果此时没有任何crontab文件,你可能会看到提示"no crontab for root - using an empty one"。
4. 稍后会出现一个编辑器界面,你可以在其中添加定时任务。
5. 编辑完成后保存并退出编辑器,系统会自动安装新的crontab文件。
请注意,当编辑crontab文件时,请确保按照正确的语法编写定时任务,并且在设置完成后保存文件。这样,定时任务将按照你的设置自动执行。
阅读全文