oracle cloud root账户 ssh登录
系统为centos7
问题:
ssh root登录oracle cloud,
提示Please login as the user “opc” rather than the user “root”.
解决:
1. 通过opc账户ssh登录oracle cloud
2. 登录root账户 sudo -i
3. 修改root账户登录密码 passwd root
4. 删除 ~/.ssh/authorized_keys 里面的代码
5. 编辑/etc/ssh/sshd_config文件
PermitRootLogin yes
PubkeyAuthentication yes
6. 重启ssh服务 service sshd restart
7. 通过root账户ssh登录成功
Comments
Post a Comment