开机启动方式:update-rc.d、systemctl enable、chkconfig、配置文件设置、计划任务、作为服务启动

开机启动方式

开机启动有多种方式,包括:update-rc.d、systemctl enable、chkconfig、配置文件设置、计划任务

下面以sshd服务为例进行记录

通过命令方式开机启动

update-rc.d

update-rc.d sshd enable

systemctl enable

systemctl enable sshd

chkconfig

chkconfig sshd on

crontab

usage: crontab [-u user] file
crontab [-u user] [ -e | -l | -r ]
(default operation is replace, per 1003.2)
-e (edit user’s crontab)
-l (list user’s crontab)
-r (delete user’s crontab)
-i (prompt before deleting user’s crontab)
-s (selinux context)
exsample:

crontab -u root -e

at

语法:
at
例1:

[root@CentOS7 ~]# at

你可能感兴趣的:(系统运维)