Linux脚本备忘录
AWS Lightsail设置root账户
#!/bin/bash
echo root:PASSWORD |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
本作品采用 知识共享署名-相同方式共享 4.0 国际许可协议 进行许可。
评论已关闭