chkconfig
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了chkconfig相关的知识,希望对你有一定的参考价值。
10.23 linux任务计划croncrontab命令被用来提交和管理用户的需要周期性执行的任务,与windows下的计划任务类似,当安装完成操作系统后,默认会安装此服务工具,并且会自动启动crond进程,crond进程每分钟会定期检查是否有要执行的任务,如果有要执行的任务,则自动执行该任务。
语法: crontab [options]
Options:
-e:=edit 编辑用户的计时器设置
-l:=list 列出用户的计时器设置
-r:=remove 删除用户的计时器设置
-u:=user 指定设定计时器的用户
配置计划任务
crontab的配置文件: /etc/crontab
[[email protected] ~]# cat /etc/crontab
SHELL=/bin/bash
PATH=/sbin:/bin:/usr/sbin:/usr/bin
MAILTO=root# For details see man 4 crontabs # Example of job definition: # .---------------- minute (0 - 59) # | .------------- hour (0 - 23) # | | .---------- day of month (1 - 31) # | | | .------- month (1 - 12) OR jan,feb,mar,apr ... # | | | | .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat # | | | | | # * * * * * user-name command to be executed
设定计划任务
eg:
[[email protected] ~]# crontab -e
0 3 * /bin/bash /usr/local/sbin/123.sh >>/tmp/123.log 2>>/tmp/123.log
0 3 1-10 */2 2,5 /bin/bash /usr/local/sbin/123.sh >>/tmp/123.log 2>>/tmp/123.log
解析:
-
第一条命令:
每天凌晨3点(*位置不指定数字就代表每天、月、周),当前用户(未指定用户,默认为当前用户)执行该命令(123.sh提前写好的命令脚本),并将正确日志和错误日志记录到/tmp/123.log文件中。 - 第二条命令:
每个偶数月(*/2:表示能被2整除)1号到10号的周二和周五的凌晨3点,当前用户(未指定用户,默认为当前用户)执行该命令(123.sh提前写好的命令脚本),并将正确日志和错误日志记录到/tmp/123.log文件中。
启动crond服务/查看服务状态
配置完成后需要启动crond服务:
启动服务:
[[email protected] ~]# systemctl start crond
查看crond服务状态:
方法1:
[[email protected] ~]# ps aux |grep cron
root 1033 0.0 0.0 126236 1664 ? Ss 10:22 0:01 /usr/sbin/crond -n
root 7295 0.0 0.0 112680 976 pts/0 S+ 15:59 0:00 grep --color=auto cron方法2:
[[email protected] ~]# systemctl status crond
● crond.service - Command Scheduler
Loaded: loaded (/usr/lib/systemd/system/crond.service; enabled; vendor preset: enabled)
Active: active (running) since 一 2018-01-29 10:22:43 CST; 5h 40min ago
Main PID: 1033 (crond)
CGroup: /system.slice/crond.service
└─1033 /usr/sbin/crond -n......
停止crond服务:
[[email protected] ~]# systemctl stop crond
查看:
[[email protected] ~]# systemctl status crond
注意: 在编写配置文件或者shell脚本时,所有的命令都要使用绝对路径;每个计划任务追加一个日志。
查看现有的计划任务
[[email protected] ~]# crontab -l
no crontab for root
添加一条任务计划
[[email protected] ~]# crontab -e
1 10 2 /usr/bin/find /tmp/ -type f -mtime +100 |xargs rm -f
[[email protected] ~]# crontab -l
1 10 2 /usr/bin/find /tmp/ -type f -mtime +100 |xargs rm -f
计划任务存放位置: /var/spool/cron/,所有的计划任务存放在该目录下以用户名命名的文件中,备份时可以使用该文件。
删除计划任务
[[email protected] ~]# crontab -r
10.24 chkconfig工具
chkconfig命令检查、设置系统的各种服务。这是Red Hat公司遵循GPL规则所开发的程序,它可查询操作系统在每一个执行等级中会执行哪些系统服务,其中包括各类常驻服务。谨记chkconfig不是立即自动禁止或激活一个服务,它只是简单的改变了符号连接(该命令多用于centos6及以前版本)。
语法: chkconfig [options]
Options:
--list:查看在使用chkconfig命令的服务的状态
--add:增加指定服务
--del:删除指定服务
--level:指定某系统服务要在系统某运行级别中开启或关毕。
应用:
- chkconfig --list 查看当前系统服务状态
[[email protected] ~]# chkconfig --list
注:该输出结果只显示 SysV 服务,并不包含
原生 systemd 服务。SysV 配置数据
可能被原生 systemd 配置覆盖。要列出 systemd 服务,请执行 ‘systemctl list-unit-files‘。 查看在具体 target 启用的服务请执行 ‘systemctl list-dependencies [target]‘。
netconsole 0:关 1:关 2:关 3:关 4:关 5:关 6:关
network 0:关 1:关 2:开 3:开 4:开 5:开 6:关
服务所在位置:/etc/init.d/
[[email protected] ~]# ls /etc/init.d/
functions netconsole network README
-
更改服务状态
- 更改服务所有状态:
[[email protected] ~]# chkconfig network off/on
- 功能服务在某一运行级别的状态:
[[email protected] ~]# chkconfig --level 345 network off/on
运行级别配置文件:“/etc/inittab”,centos7已不再使用该文件。
添加/删除服务
首先,在添加服务之前必须把该服务的脚本放到“/etc/init.d/”目录下并添加执行权限。然后执行命令:
[[email protected] ~]# cd /etc/init.d
[[email protected] init.d]# ls
functions netconsole network README
[[email protected] init.d]# cp network 123
[[email protected] init.d]# ls -l
总用量 40
-rwxr-xr-x. 1 root root 6643 1月 29 16:35 123
......[[email protected] init.d]# chkconfig --list
注:该输出结果只显示 SysV 服务,并不包含
原生 systemd 服务。SysV 配置数据
可能被原生 systemd 配置覆盖。要列出 systemd 服务,请执行 ‘systemctl list-unit-files‘。 查看在具体 target 启用的服务请执行 ‘systemctl list-dependencies [target]‘。
netconsole 0:关 1:关 2:关 3:关 4:关 5:关 6:关
network 0:关 1:关 2:关 3:关 4:关 5:关 6:关
[[email protected] init.d]# chkconfig --add 123
[[email protected] init.d]# chkconfig --list注:该输出结果只显示 SysV 服务,并不包含
原生 systemd 服务。SysV 配置数据
可能被原生 systemd 配置覆盖。要列出 systemd 服务,请执行 ‘systemctl list-unit-files‘。 查看在具体 target 启用的服务请执行 ‘systemctl list-dependencies [target]‘。
123 0:关 1:关 2:开 3:开 4:开 5:开 6:关
netconsole 0:关 1:关 2:关 3:关 4:关 5:关 6:关
network 0:关 1:关 2:关 3:关 4:关 5:关 6:关删除
[[email protected] init.d]# chkconfig --del 123
10.25 systemd管理服务
systemctl命令是系统服务管理器指令,它实际上将 service 和 chkconfig 这两个命令组合到一起。
systemctl命令
以上是关于chkconfig的主要内容,如果未能解决你的问题,请参考以下文章