1.1.切换到root角色
sudo -i # 切换到root角色
passwd root # 给root用户设置密码
1.2. 修改SSH配置文件/etc/ssh/sshd_config
vi /etc/ssh/sshd_config
修改PermitRootLogin和PasswordAuthentication为yes
# Authentication:
PermitRootLogin yes // 默认为no,需要开启root用户访问改为yes # Change to no to disable tunnelled clear text passwords
PasswordAuthentication yes // 默认为no,改为yes开启密码登陆
1.3重启SSH服务使修改生效
/etc/init.d/ssh restart
1.4 本地用xshell生成密秘钥
1.5 添加SSH密钥
找到云端可添加密钥的地方
粘贴刚才从xshell复制的秘钥。在末尾添加 [空格][用户名] 这里就是“yourname”,保存即可。
1.6 xshell连接
用xshell新建一个会话窗口,使用密钥登陆,即可
网友评论