oraclecloud实例利用 cloud-init 脚本来开启 root 账号密码登录!脚本!

时间:5年前   阅读:18893

利用 cloud-init 脚本来开启 root 账号密码登录!脚本:

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


其中qiquanjicom为密码,改为自己的密码就好

微信扫码关注

更新实时通知

上一篇:HTML5 web storage本地存储

下一篇:网站全站变为黑白色的html代码,放在head标签内

网友评论

请先 登录 再评论,若不是会员请先 注册