嘟嘟社区

谷歌云 一键root登录有没有


和aws一样输入命令就能root登录的

多谢大佬

我有,不告诉你,不喜欢伸手党。

Romeoiii 发表于 2022-3-14 19:56
我有,不告诉你,不喜欢伸手党。

好吧 我搜一下

找到了 分享一下

设置root密码
2.切换到root账号
sudo -i
3.设置root密码
passwd
开启SSH权限
CentOS和Debian通用,输入以下两条命令
sed -i ‘s/PermitRootLogin no/PermitRootLogin yes/g’ /etc/ssh/sshd_config
sed -i ‘s/PasswordAuthentication no/PasswordAuthentication yes/g’ /etc/ssh/sshd_config
Ubuntu系统,输入以下两条命令
sed -i ‘s/#PermitRootLogin prohibit-password/PermitRootLogin yes/g’ /etc/ssh/sshd_config
sed -i ‘s/PasswordAuthentication no/PasswordAuthentication yes/g’ /etc/ssh/sshd_config
重启服务器
reboot

mgwx 发表于 2022-3-14 20:01
找到了 分享一下

设置root密码

对,就这个,你真效率。

直接dd