File tree Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Expand file tree Collapse file tree 1 file changed +12
-4
lines changed Original file line number Diff line number Diff line change 8
8
- Ubuntu:` dpkg -l | grep cron `
9
9
10
10
- 安装(一般系统是集成的):
11
- - CentOS 6:` sudo yum install -y vixie-cron crontabs `
11
+ - CentOS 6 / 7 :` sudo yum install -y vixie-cron crontabs `
12
12
- Ubuntu:` sudo apt-get install -y cron `
13
13
14
14
- 服务常用命令
15
- - service crond start //启动服务
16
- - service crond stop //关闭服务
17
- - service crond restart //重启服务
15
+ - CentOS 6
16
+ - `service crond start` 启动服务
17
+ - `service crond stop` 关闭服务
18
+ - `service crond restart` 重启服务
19
+ - CentOS 7
20
+ - `systemctl start crond` 启动服务
21
+ - `systemctl restart crond` 重新启动服务
22
+ - `systemctl status crond` 加入自启动
23
+ - `systemctl stop crond` 关闭服务
24
+
18
25
19
26
## Crontab 服务器配置文件常用参数
20
27
28
35
- ` 45 4 1-10 * * service httpd restart ` #每月的 1 到 10 日的 4:45 重启 apache
29
36
- ` */2 * * * * service httpd restart ` #每隔两分钟重启 apache
30
37
- ` 1-59/2 * * * * service httpd restart ` #每隔两分钟重启 apache(这个比较特殊:1-59/2 这个表示过掉0分,从 1 分开始算,每隔两分执行,所以 1 分执行了,3 分执行了,5 分执行了....都是奇数进行执行。默认的 * /2 都是偶数执行。)
38
+ - ` * */2 * * * service httpd restart ` #每隔两小时重启 apache
31
39
- ` 0 23-7/2 * * * service httpd restart ` #晚上 11 点到早上 7 点之间,每隔 2 个小时重启 apache
32
40
- ` 0-59/30 18-23 * * * service httpd restart ` #每天 18:00 到 23:00 之间,每隔 30 分钟重启 apache(方法一)
33
41
- ` 0,30 18-23 * * * service httpd restart ` #每天 18:00 到 23:00 之间,每隔 30 分钟重启 apache(方法二)
You can’t perform that action at this time.
0 commit comments