Linux 提示没有root用户的定时任务

image

  • 执行crontab -l

某次查看定时任务列表时,返回no crontab for root,因为这个 liunx 服务器第一次使用 crontab ,还没有生成对应的文件导致的。

  • 执行crontab -e
1
2
3
4
5
6
7
8
9
no crontab for root - using an empty one

Select an editor. To change later, run 'select-editor'.
1. /bin/nano <---- easiest
2. /usr/bin/vim.basic
3. /usr/bin/vim.tiny
4. /bin/ed

Choose 1-4 [1]:3

选择一个编辑器,这里我选了/usr/bin/vim.tiny,回车。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#  Edit this file to introduce tasks to be run by cron.
#
# Each task to run has to be defined through a single line
# indicating with different fields when the task will be run
# and what command to run for the task
#
# To define the time you can provide concrete values for
# minute (m), hour (h), day of month (dom), month (mon),
# and day of week (dow) or use '*' in these fields (for 'any').#
# Notice that tasks will be started based on the cron's system
# daemon's notion of time and timezones.
#
# Output of the crontab jobs (including errors) is sent through
# email to the user the crontab file belongs to (unless redirected).
#
# For example, you can run a backup of all your user accounts
# at 5 a.m every week with:
# 0 5 * * 1 tar -zcf /var/backups/home.tgz /home/
#
# For more information see the manual pages of crontab(5) and cron(8)
#
# m h dom mon dow command
~
~
~
~
~
~
~
~
~
~
~
~
"/tmp/crontab.iE77U6/crontab" 22L, 888C

执行了crontab -e后,就生成了这个文件。

-------------本文结束感谢您的阅读-------------
0%