centos7开启ssh服务
很多时候我们都会用到ssh远程登录linux主机,但是因为安装时的选择,有些版本可能默认不开启ssh服务,甚至都没有shs服务
(1)检查有无安装ssh服务
rpm -qa|grep ssh
如上图所示已安装ssh服务
如无没有安装则可通过yum install open-server 安装
(2)编辑配置文件
vi /etc/ssh/sshd_config
去掉 #port 22 之前的#号
(3)开启ssh服务
/bin/systemctl start sshd.service
(4)检查ssh服务和 port 22端口状态
ps -ef|grep sshd
netstat -an|grep 22
(5)将ssh服务添加到自启动列表中
systemctl enable sshd.service