配置开启ssh服务
2019-6-21 dingshangchao 服务器
centos一般是默认安装和开启ssh服务的,但如果没有
先检查有没有安装ssh服务:rpm -qa | grep ssh
如果没有安装ssh服务就安装 : yum install openssh-server
vi /etc/ssh/sshd_config
搜索:
#PasswordAuthentication yes (去掉注释)
#PermitRootLogin prohibit-password (去掉注释并且删除prohibit-password改为yes)
开启服务 service ssh start
查看服务开启状态 service ssh status