默认密码92kmenet,注意更改root密码,使用时请将将代码中的92kmnet改为自己将要设置的密码.
登录进ssh,再执行以下的代码.
#!/bin/bash
echo root:92kmnet |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
你也可以在创建instance时,点击add launch script,将上面的代码复制进去.
此代码在Centos7/Debian/Ubuntu上均通过测试. 其他发行版自行测试,不过应该不存在问题.
本文来自投稿,不代表本站立场,如若转载,请注明出处: