红联Linux门户
Linux帮助

ssh免密码登陆ubuntu腾讯云服务器

发布时间:2015-11-09 10:31:31来源:linux网站作者:tengfei_world

如何使用ssh username@host登陆腾讯云服务器?

为了安全,腾讯云默认让我门使用 ssh -i  pub_key username@host登陆云服务器。这里说明以下如何使用ssh username@host免密码登陆。


以 ssh -i  pub_key username@host 登陆云主机,pub_key是当我们购买服务器之后,腾讯给我的密钥。

运行命令 vim /etc/ssh/sshd_config, 修改PasswordAuthentication no 为 PasswordAuthentication yes
修改.ssh文件的权限, 若没有.ssh权限,请使用ssh-keygen -t rsa 生成,使用 sudo chmod  -R 700 .ssh修改文件权限

重启云服务器

在本机上打开命令行,使用ssh-copy-id username@host连接云服务器(username为服务器的用户名,host为云服务器的公网ip),执行完之后,之后就可以免密码登陆云主机了


注意:需要安装ssh以及ssh-copy-id等。


阿里云云服务器Linux系统挂载数据盘图文教程:http://www.linuxdiyf.com/linux/14984.html

阿里云服务器挂载数据盘:http://www.linuxdiyf.com/linux/13885.html

阿里云服务器ECS Ubuntu系统安装配置:http://www.linuxdiyf.com/linux/13662.html

Ubuntu系统中登陆阿里云服务器的方法:http://www.linuxdiyf.com/linux/13369.html