打算用cloud-init设置回目录权限或者允许root登录好像也不行。
用过了下列几个cloud-init。
#!/bin/bash
apt install sudo -y
sudo echo root:新密码\n新密码" | passwd 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
users:
- name: root
plain_text_passwd: '密码'
lock_passwd: false
#!/bin/bash
chmod 755 /home
然后用root、debian、密码密钥各种方式都登录不上去,请问大佬们我的姿势是否有问题 。请问还有什么办法能拯救小鸡?