차이
문서의 선택한 두 판 사이의 차이를 보여줍니다.
다음 판 | 이전 판 | ||
instance_root_password_injection [2021/09/17 01:34] – 만듦 koov | instance_root_password_injection [2023/07/20 15:39] (현재) – [참조링크] koov | ||
---|---|---|---|
줄 26: | 줄 26: | ||
* https:// | * https:// | ||
+ | ===== Red Hat Enterprise Linux ===== | ||
+ | RHEL 의 경우 기본 ssh 설정이 root login 자체가 막혀있기 때문에 추가적인 설정이 필요하다. | ||
+ | |||
+ | <WRAP prewrap> | ||
+ | <code yaml> | ||
+ | # | ||
+ | # vim: | ||
+ | debug: True | ||
+ | ssh_pwauth: True | ||
+ | disable_root: | ||
+ | chpasswd: | ||
+ | list: | | ||
+ | root: | ||
+ | cloud-user: | ||
+ | expire: false | ||
+ | runcmd: | ||
+ | - sed -i' | ||
+ | - sed -i -e '/ | ||
+ | - sed -i -e '/ | ||
+ | - service sshd restart | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | ==== 참조링크 ==== | ||
+ | * https:// | ||
+ | * https:// | ||
+ | * https:// | ||
+ | * https:// | ||