CentOS7.9开启SSH
检查系统是否安装了SSH服务
rpm -qa | grep ssh
系统安装SSH服务
openssh-server:yum install openssh-server
查看并修改SSH配置
vim /etc/ssh/sshd_config
ssd_config是sshd服务的配置文件,可在其中配置参数,登陆用户等,文件位置位于/etc/ssh/sshd_config,这里可以直接通过vi(不会vi编辑的自己查)命令打开文件进行主要参数的配置(把对应参数前面的警号去掉就可以了):
(1)、Port 22,sshd服务的端口
(2)、Protocol 2,也就是外部连接的协议用ssh2,当然如果不设置也可。
(3)、PermitRootLogin no/yes,如果允许使用root登陆则设为yes,否则为no
(4)、PasswordAuthentication no/yes,no为不允许使用密码登陆,yes为允许使用密码登陆,一般如果用自己账户登录都用密码,所以这一项最好设为yes,否则会导致window中能ping通linux系统,但是ssh连接不上。
设置好后保存退出。
启动ssh服务:/bin/systemctl start sshd.service
systemctl restart sshd.service //重启命令 systemctl start sshd.service //启动命令
检查ssh服务是否开启
ps -e | grep sshd
检查 22端口 是否开启
netstat -ntlp | grep 22
将ssh服务添加到自启动列表中
systemctl enable sshd.service