CentOS开机自动启动某服务

这里以启动sshd服务为例:
查看sshd是否已经是系统服务:
chkconfig --list |grep sshd
会显示:
sshd 0:off 1:off 2:off 3:off 4:off 5:off 6:off
使用如下命令设置sshd服务自动启动:

chkconfig --level 5 sshd on


或者直接将启动命令追加到文件 /etc/rc.d/rc.local 中

你可能感兴趣的:(linux)