Ubuntu 18.04 SSH 无法远程登录问题

Posted liweiwei1419

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu 18.04 SSH 无法远程登录问题相关的知识,希望对你有一定的参考价值。

Ubuntu 18.04 SSH 无法远程登录问题

Ubuntu 系统默认 root 用户是不能登录的,密码也是空的。

root 用户设置密码:

sudo passwd root

解决 Ubuntu 18.04 SSH 无法远程登录问题

1、安装 openssh-server

sudo apt-get install openssh-server

2、编辑配置文件 /etc/ssh/sshd_config

sudo vi /etc/ssh/sshd_config
  • 禁用:PermitRootLogin prohibit-password
  • 添加:PermitRootLogin yes


或者:

sudo nano /etc/ssh/sshd_config
PermitRootLogin prohibit-password to PermitRootLogin yes 
PasswordAuthentication no to PasswordAuthentication yes

3、重启服务

sudo service ssh restart

或者:

sudo systemctl restart ssh

然后登录:

ssh root@192.168.64.5 # Multipass 虚拟机
ssh root@192.168.47.128 # VMWare 虚拟机

然后输入密码。

参考资料

  • https://blog.csdn.net/xiato_yu/article/details/104166581
  • https://www.digitalocean.com/community/questions/error-permission-denied-publickey-when-i-try-to-ssh
    https://cloud.tencent.com/developer/article/1496006
  • scp 跨机器拷贝:https://segmentfault.com/a/1190000014667067

以上是关于Ubuntu 18.04 SSH 无法远程登录问题的主要内容,如果未能解决你的问题,请参考以下文章

Ubuntu 18.04 SSH 无法远程登录问题

新安装的ubuntu18.04系统无法用xshell远程连接问题

Ubuntu 18.04 新系统 允许root远程登录

Ubuntu 18.04 新系统 允许root远程登录

win10 远程登录Ubuntu 18.04错误

在Ubuntu 18.04系统中启用SSH登录的方法