在虚拟机(Vmware Workstation)下,安装了CentOS7,现在想通过SSH工具连接虚拟机中的CentOS7
1、 首先,要确保CentOS7安装了 openssh-server,在终端中输入 yum list installed | grep openssh-server
此处显示已经安装了 openssh-server,如果又没任何输出显示表示没有安装 openssh-server,通过输入 yum install openssh-server
yum list installed | grep openssh-server
来进行安装openssh-server
2、 找到了 /etc/ssh/ 目录下的sshd服务配置文件 sshd_config,用vi编辑器打开
将文件中,关于监听端口、监听地址前的 # 号去除
# If you want to change the port on a SELinux system, you have to tell# SELinux about this change.# semanage port -a -t ssh_port_t -p tcp #PORTNUMBER#
Port 22#AddressFamily any
ListenAddress 0.0.0.0
ListenAddress ::
然后开启允许远程登录
# Authentication:#LoginGraceTime 2m
PermitRootLogin yes
#StrictModes yes#MaxAuthTries 6#MaxSessions 10
最后,开启使用用户名密码来作为连接验证
# To disable tunneled clear text passwords, change to no here!
PasswordAuthentication yes
#PermitEmptyPasswords no
PasswordAuthentication yes
保存文件,退出
3、 开启 sshd 服务,输入 sudo service sshd restart
[root@jcgitlabsvr02 bin]# sudo service sshd restart
Redirecting to /bin/systemctl restart sshd.service
检查 sshd 服务是否已经开启,输入ps -e | grep sshd
[root@jcgitlabsvr02 bin]# ps -e | grep sshd32642 ? 00:00:00 sshd
参考链接
https://blog.csdn.net/qq_41768362/article/details/117331798
版权归原作者 程序之巅 所有, 如有侵权,请联系我们删除。