配置SSH

Posted a1a2

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了配置SSH相关的知识,希望对你有一定的参考价值。

 

、非root用户则执行su或su - 或su root或su - root切换为root用户

2、查看SSH是否安装(检查是否装了SSH包)

输入命令:rpm -qa | grep ssh

 技术图片

注:若没安装SSH则可输入:yum install openssh-server安装。

3、查看SSH服务是否正在运行。
输入命令:/etc/init.d/sshd status

 技术图片

4、若centos 6.5系统中SSH服务处于非运行状态

使用(service sshd start)命令开启SSH服务

停止SSH服务命令(service sshd stop)

重启SSH服务命令(service sshd restart)

5、netstat -antp | grep sshd 查看是否启动22端口

 技术图片

6、检查SSHD是否在本运行级别下设置为开机启动
输入命令:chkconfig --list sshd
如图所示centos 6.5系统中SSH服在本运行级别下已经设置为开机启动,如果没设置启动就使用如下命令[chkconfig --level 2345 sshd on]设置下即可

 技术图片

7、设置SSH服务为开机启动。
输入命令:chkconfig sshd on 即可。
注:若是chkconfig sshd off则禁止SSH开机启动

8、使用xshell链接虚拟机

 

centos7 以前的版本 使用(service 服务名 start)命令开启服务
停止服务命令(service 服务名 stop)
重启服务命令(service 服务名 restart)

centos7的版本 使用(systemctl  start 服务名)命令开启服务
停止服务命令(systemctl  stop 服务名)
重启服务命令(systemctl restart 服务名)

以上是关于配置SSH的主要内容,如果未能解决你的问题,请参考以下文章

SSH 配置

如何配置openSSH

ansible怎么配置ssh参数

ssh 事务详细配置

Mac SourceTree配置SSH

Linux配置ssh