Oracle 开启密码登录

1.连接SSH登录

#登录root给权限
sudo -i

#打开文件修改(把ssh-rsa之前的文字都删除掉)
vi /root/.ssh/authorized_keys

#打开sshd_config
vim /etc/ssh/sshd_config

#修改sshd_config
PermitRootLogin yes  #允许root登录
PasswordAuthentication yes #开启密码登录

#重启服务器
reboot

#等待重连后输入
passwd #按提示设置密码

 

2.连接SSH登录

账号:root
密码:上面设置的密码

阅读剩余
THE END