centos怎么设置开机自启动ssh服务
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了centos怎么设置开机自启动ssh服务相关的知识,希望对你有一定的参考价值。
打开命令行界面或者虚拟终端使用root账号,执行chkconfig sshd on就能实现需求。
补充部分,chkconfig 可以控制服务是否开机启动,遇到其他服务也可以使用这个命令。 参考技术A 输入命令:chkconfig sshd on 即可
centos虚拟机开启命令
虚拟机,是VMWARE,ESXI,远程命令。systemctl start nginx.service
设置开机自启动
systemctl enable nginx.service
停止开机自启动
systemctl disable nginx.service
查看服务当前状态
systemctl status nginx.service
重新启动服务
systemctl restart nginx.service
查看所有已启动的服务
systemctl list-units --type=service 参考技术A 开机点击开机
关机使用命令 poweroff
以上是关于centos怎么设置开机自启动ssh服务的主要内容,如果未能解决你的问题,请参考以下文章