instance_root_password_injection

차이

문서의 선택한 두 판 사이의 차이를 보여줍니다.

차이 보기로 링크

다음 판
이전 판
instance_root_password_injection [2021/09/17 01:34] – 만듦 koovinstance_root_password_injection [2023/07/20 15:39] (현재) – [참조링크] koov
줄 26: 줄 26:
   * https://techglimpse.com/nova-boot-instance-with-password/   * https://techglimpse.com/nova-boot-instance-with-password/
  
 +===== Red Hat Enterprise Linux =====
 +RHEL 의 경우 기본 ssh 설정이 root login 자체가 막혀있기 때문에 추가적인 설정이 필요하다.
 +
 +<WRAP prewrap>
 +<code yaml>
 +#cloud-config
 +# vim:syntax=yaml
 +debug: True
 +ssh_pwauth: True
 +disable_root: false
 +chpasswd:
 +  list: |
 +    root:password
 +    cloud-user:password
 +  expire: false
 +runcmd:
 +  - sed -i'.orig' -e's/without-password/yes/' /etc/ssh/sshd_config
 +  - 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>
 +</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
  
  • instance_root_password_injection.1631842479.txt.gz
  • 마지막으로 수정됨: 2021/09/17 01:34
  • 저자 koov