对于非Ubuntu用户而言,配置以通过ssh访问Ubuntu系统的设置
在初始状态下,使用ssh。
- 在初始状态下,以根用户身份执行 ssh 操作时会显示以下信息并断开连接
Please login as the user "ubuntu" rather than the user "root".
Connection to xx.xxx.xxx.xxx closed.
解决方案
- 将 ubuntu 用户持有的密钥信息改写成要 ssh 的用户。
$ cp /home/ubuntu/.ssh/authorized_keys /root/.ssh/authorized_keys
将ubuntu用户的密钥信息同步给想要通过ssh连接的用户。
$ rsync -a --chown=user:user-group /home/ubuntu/.ssh /home/user