安装完Centos 6.3之后,发现ssh服务默认没有打开,又想远程访问,需要手动执行services sshd start (当然,关闭是services sshd stop),这样ssh服务才能开启。
想要随机启动的话,可以使用chkconfig(该命令主要用来查询或修改系统服务的运行级信息。
如下,查询时用chkconfig
-
[root@localhost jwstudy]# chkconfig | grep sshd
-
sshd 0:关闭 1:关闭 2:启用 3:启用 4:启用 5:启用 6:关闭
随机启动可以使用如下命令
-
[root@localhost jwstudy]# chkconfig sshd on
-
[root@localhost jwstudy]# chkconfig | grep sshd
-
sshd 0:关闭 1:关闭 2:启用 3:启用 4:启用 5:启用 6:关闭
关闭随机启动可以使用如下命令
-
[root@localhost jwstudy]# chkconfig sshd off
-
[root@localhost jwstudy]# chkconfig | grep sshd
-
sshd 0:关闭 1:关闭 2:关闭 3:关闭 4:关闭 5:关闭 6:关闭
阅读(5695) | 评论(0) | 转发(0) |