程序开发博客
网络技术与安全

甲骨文云 服务器 Oracle Cloud 如何启用root登录

甲骨文云 服务器 Oracle Cloud 如何启用root登录

Oracle Cloud 开启root 登录

1.利用 cloud-init脚本来开启root账号密码登录
脚本如下:

#!/bin/bash echo root:329105sz |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

默认密码是: 329105sz
登录后一定要修改密码!命令:passwd

2.使用密钥登录系统以后
执行如下命令

sudo -i
passwd
按提示刷入密码,重复输入密码。
接着输入

echo root:329105sz |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; service sshd restart

重启sshd服务

sudo service sshd restart

3、使用密钥登录系统以后

sudo -i vi /root/.ssh/authorized_keys

把ssh-rsa之前的内容都删除掉.

vi /etc/ssh/sshd_config

找到PermitRootLogin, 把前面的#去掉
更改为 PermitRootLogin yes
找到PasswordAuthentication
更改为 PasswordAuthentication yes
退出编辑
passwd 更改密码
reboot 重启vps

所用到的命令;
vi 文本编辑器
cd 进入目录
pwd 查看当前位置
ls 查看当前文件夹文件
ls -a 查看当前文件夹所有文件
vi 编辑器命令
i 进入编辑模式
esc 回到命令模式
:wq 保存并退出

赞(0)
未经允许不得转载:瓦普技术博客 » 甲骨文云 服务器 Oracle Cloud 如何启用root登录

互联网技术动态与开发

网站搭建技术,程序开发与代码,一个分享网络技术代码VPS服务器的技术博客网站。

联系我们关于我们