Centos 7无法SSH远程连接及解决方法 小土豆linux学习随笔 —— 清听凌雪慕忆 以前运维中,服务器或者虚拟机安装完Centos 7系统,配置网络设置后即可利用ssh远程。昨夜,怪哉,不
—— 清听凌雪慕忆
以前运维中,服务器或者虚拟机安装完Centos 7系统,配置网络设置后即可利用ssh远程。昨夜,怪哉,不知为何虚拟机中的Centos 7无法远程,排除网络原因,想爆了小脑壳儿,最终却忽略了SSH配置,尝试之后果然灵了,随即补充知识库,做随笔。
【工作环境】:远程主机(windows 10)、虚拟机(Vmware Workstation),安装了CentOS7,通过SSH工具连接虚拟机中的CentOS7。
[root@localhost ~]# yum list installed | grep openssh-server# 或 查看ssh是否安装[root@localhost ~]# rpm -qa | grep ssh
rpm -qa|grep xxx 命令-qa代表query,a代表all;rpm -q ----查询一个包是否被安装rpm -qa ----列出所有被安装的rpm package| ----| 表示管道,上一条命令的输出,作为下一条命令参数(输入)。grep ----用于查找文件里符合条件的字符串。xxx ----要查询的名称
yum install openssh-server
找到 /etc/ssh/ 目录下的sshd服务配置文件 sshd_config。
[root@localhost ~]# cd /[root@localhost /]# cd /etc/ssh
用Vim编辑器或Gedit打开。
说明:SSH默认端口为22,在此处也可以修改为其他端口。
文件中,关于监听端口、监听地址前的 # 号去除(取消注释)。
开启允许远程登录。
Centos7,要使用netstat的命令的话,需要安装net-tools后才可以使用。
# 安装netstat工具yum instatll net-tools –y
# 开启ssh服务[root@localhost ssh]# sudo service sshd startStarting sshd (via systemctl): [ 确定 ]# 重启ssh服务[root@localhost ssh]# sudo service sshd restartRestarting sshd (via systemctl): [root@localhost ssh]# ss -ntp | grep 22
#检查 sshd 服务是否已经开启[root@localhost ssh]# ps -e | grep sshd# 检查 22 号端口是否开启监听[root@localhost ssh]# netstat -an | grep 22# 或[root@localhost ssh]# netstat -aNLPt | grep 22
[root@localhost ~]# systemctl status sshd
# 设置开机自启动[root@localhost ~]# systemctl enable sshd.service
[root@localhost ~]# systemctl list-unit-files | grep sshdanaconda-sshd.service statiCSShd-keygen.service staticsshd.service enabledsshd@.service staticsshd.Socket disabled[root@localhost ~]#
# 查看ssh服务进程命令ps -ef|grep ssh# 设置ssh服务为开机启动命令:chkconfig sshd on # 设置ssh服务禁止开机启动命令chkconfig sshd off # 停止ssh服务命令service sshd stop # 查看ssh服务22端口是否启动命令netstat -antp | grep sshd
来源地址:https://blog.csdn.net/weixin_39137153/article/details/124621589
--结束END--
本文标题: Centos 7无法SSH远程连接及解决方法
本文链接: https://lsjlt.com/news/424185.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
2024-10-22
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0