Xshell 连接不上 Ubuntu 服务器

1.防火墙问题,关闭windows防火墙,360等

# 通过命令查看ubuntu防火墙:
[mirror@~]$ sudo ufw status
# 发现防火墙已经是inactive,依旧停一下:
[mirror@~]$ sudo ufw disable
# 可是依旧无效,ubuntu防火墙开放端口命令:
[mirror@~]$ sudo ufw allow 22

2.linux ssh服务是否已经启动?
ubuntu默认是不会安装ssh-server的,会默认安装ssh-client

# 安装openssh-server
[mirror@~]$ sudo apt-get install openssh-server
# 查看安装结果:
[mirror@~]$ ps -e |grep ssh

3.怎么在xshell中 不能登录root

# 1、确认ssh服务已安装,通过普通用户连接成功;
# 2、确认ssh配置是否对 root 进行特殊设置,修改/etc/ssh/sshd_config文件中, 
# PermitRootLogin without-password 中的 without-password改为yes;
[mirror@~]$ vim /etc/ssh/sshd_config
# 3、重启 ssh 服务
[mirror@~]$ /etc/init.d/ssh restart

你可能感兴趣的:(Xshell 连接不上 Ubuntu 服务器)