甲骨文的主机使用ssh账号密码登陆的方法

甲骨文的VPS用SSH登录的时候,都是用密钥登录。而且甲骨文需要定期更新密钥,比较麻烦,所以个人还是喜欢用密码登录。

第一步:连接上SSH后,切换到ROOT

我使用的是,甲骨文VPS的CentOS 7,

CentOS 默认登录账户: opc

输入命令 sudo -i 切换到ROOT。

sudo -i

第二步:输入以下代码

替换“你的密码”

echo root:你的密码 |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 service sshd restart

成功用密码的方式登录上甲骨文SSH。

喜欢文章请点个赞!

原创文章,作者:NicheSpider,如若转载,请注明出处:http://nichespider.com/207.html

(0)
上一篇 2022年10月11日 下午11:33

相关推荐