创建 AMI 不会复制 sshd 文件设置

创建 AMI 不会复制 sshd 文件设置

我已经为我的实例配置了用户和密码验证,但是每次启动时我都必须执行此操作:

#!/bin/bash
sudo sed -i 's/PasswordAuthentication no/PasswordAuthentication yes/g' /etc/ssh/sshd_config
sudo service sshd restart

从现有实例创建图像不复制该文件的原因是什么?

答案1

问题在这里得到回答:https://stackoverflow.com/questions/18344390/how-do-i-get-aws-ec2-to-not-reset-my-sshd-config-file

配置在 /etc/cloud/cloud.cfg 文件中

相关内容