ubuntu首次SSH使用root账户远程登录教程

1、
使用刚刚安装ubuntu系统时账户进入系统并重置root密码

sudo passwd root

在[sudo] password for landry:后输入当前用户的密码
2、Ubuntu配置源
第一步:修改sources.list配置文件:
sudo vim /etc/apt/sources.list
我这里使用的是阿里源,也可使用163、清华、华为、中科大等源,
在文件最前面添加以下条目,保险起见,的操作之前做好备份

deb http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-proposed main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ bionic-backports main restricted universe multiverse

第二步:更新缓存
执行下面的命令:

sudo apt-get update
sudo apt-get upgrade

3、安装ssh工具
(1)打开终端键入如下命令:

apt-get update

apt-get install openssh-server和VIM工具
(2)选择Y继续执行:
ubuntu首次SSH使用root账户远程登录教程_第1张图片
(3)启动SSH服务
在终端键入

 /etc/init.d/ssh start
 备注小提示:(这两条不用敲)
/etc/init.d/ssh restart   #重启SSH服务
/etc/init.d/ssh stop      #关闭SSH服务

查看进程,检查是否启动成功,键入如下命令:

ps -e | grep sshd

ubuntu首次SSH使用root账户远程登录教程_第2张图片
有了进程才能进行SSH服务的使用。

配置root用户SSH服务
Ubuntu中SSH服务安装完成后查看是否允许root用户登陆,若不允许则无法远程登陆root用户,需要修改配置

(4).首先,打开“/etc/ssh/sshd_config”

sudo vim  /etc/ssh/sshd_config

(5).找到并用#注释掉这行:PermitRootLogin prohibit-password

查看是否有“PermitRootLogin yes”新建一行 添加:PermitRootLogin yes

重启服务

#sudo service ssh restart
ubuntu首次SSH使用root账户远程登录教程_第3张图片
(6)开始使用第三方远程软件进行操作
如图:我使用的mobaxterm,你可以使用putty,xshell,CRT等工具
ubuntu首次SSH使用root账户远程登录教程_第4张图片
(7)如果在root登录过程中提示如下对话框
ubuntu首次SSH使用root账户远程登录教程_第5张图片
解决方法为:

使用有管理员权限的用户(否则无法打开该文件)在命令行敲入
gedit /root/.profile 或者 sudo gedit /root/.profile或者sudo vim /root/.profile
将文件末尾一句 mesg n || true更改为:
tty -s && mesg n || true
ubuntu首次SSH使用root账户远程登录教程_第6张图片

保存退出,再重新登录root账户就可以了

如果不成功的话,请检查防火墙、默认22端口情况、ip网络配置、账号密码是否正常,云服务器需要弄安全组的,
参考链接及相关:

  1. ubuntu开启SSH服务
    http://www.cnblogs.com/xiazh/archive/2010/08/13/1798844.html
  2. Ubuntu 14.04远程登录服务器–ssh的安装和配置
    http://jingyan.baidu.com/article/9c69d48fb9fd7b13c8024e6b.html
  3. ubuntu14.04 ssh的安装及使用方法
    http://jingyan.baidu.com/article/0eb457e52e50ad03f1a90518.html
  4. ubuntu16.04安装 + xshell连接虚拟机
    http://blog.csdn.net/chi_wawa/article/details/52467914
  5. ubuntu SSH配置 以及 与xshell文件传输
    http://blog.sina.com.cn/s/blog_53683dc20102v3wz.html
  6. ssh远程登录命令简单实例
    http://www.2cto.com/os/201307/228495.html
  7. 菜鸟Linux系列:[4]SSH免密码登陆远程服务器
    http://jingyan.baidu.com/article/2fb0ba4043124a00f2ec5f0f.html
  8. linux下ssh远程登录服务器入门操作
    http://www.cnblogs.com/plwang1990/p/5279451.html

你可能感兴趣的:(ssh,ubuntu,ubuntu,ssh,linux)