문서의 선택한 두 판 사이의 차이를 보여줍니다.
양쪽 이전 판 이전 판 다음 판 | 이전 판 |
instance_root_password_injection [2021/12/24 02:15] – koov | instance_root_password_injection [2023/07/20 15:39] (현재) – [참조링크] koov |
---|
| |
===== Red Hat Enterprise Linux ===== | ===== Red Hat Enterprise Linux ===== |
RHEL 의 경우 기본 ssh 설정이 password login 자체가 막혀있기 때문에 추가적인 설정이 필요하다. | RHEL 의 경우 기본 ssh 설정이 root login 자체가 막혀있기 때문에 추가적인 설정이 필요하다. |
| |
<WRAP prewrap> | <WRAP prewrap> |
expire: false | expire: false |
runcmd: | runcmd: |
- sed -i'.orig' -e's/without-password/yes/' /etc/ssh/sshd_config | - sed -i'.orig' -e's/without-password/yes/' /etc/ssh/sshd_config |
- service sshd restart | - sed -i -e '/^Port/s/^.*$/Port 4444/' /etc/ssh/sshd_config |
| - sed -i -e '/^PermitRootLogin/s/^.*$/PermitRootLogin no/' /etc/ssh/sshd_config |
| - service sshd restart |
</code> | </code> |
</WRAP> | </WRAP> |
| |
| ==== 참조링크 ==== |
| * https://cloudinit.readthedocs.io/en/latest/index.html |
| * https://access.redhat.com/discussions/499513 |
| * https://access.redhat.com/documentation/en-us/red_hat_openstack_platform/16.0/html/instances_and_images_guide/ch-manage_instances#section-inject-admin-password |
| * https://access.redhat.com/documentation/en-us/red_hat_enterprise_linux_atomic_host/7/html/installation_and_configuration_guide/setting_up_cloud_init |
| |