首页 > vps > Oracle 使用 root 用户密码登录

Oracle 使用 root 用户密码登录

2019年9月18日

ssh密钥随便传后者贴一下,不传不让创建。
如果想开机就使用root账户密码登录。
把以下代码中得 shell 复制到最后得 init-cloud 中即可。

#!/bin/bash
echo root:Vicer |sudo chpasswd root
sudo sed -i 's/^#\?PermitRootLogin.*/PermitRootLogin yes/g' /etc/ssh/sshd_config;
sudo sed -i 's/^#\?PasswordAuthentication.*/PasswordAuthentication yes/g' /etc/ssh/sshd_config;
sudo reboot

其中密码为 Vicer ,可自行更改。
也可以手动更改。

终端直接执行 ssh opc@ip 连接。centos 7 这里的用户名是opc
连接上以后
sudo -i
nano /etc/ssh/sshd_config
修改
#允许使用密码登录
PasswordAuthentication yes
#允许root认证登录
PermitRootLogin yes

然后重启sshed
systemctl restart sshd

设置root密码
passwd

分类: vps 标签:
本文的评论功能被关闭了.