[AWS] EC2 User data로 SSH 비밀번호 설정하기

Jeongtae Kim·2023년 2월 21일
0

AWS

목록 보기
2/13
post-thumbnail
#!/bin/bash
sed -i 's/PasswordAuthentication no/PasswordAuthentication yes/' /etc/ssh/sshd_config
systemctl restart sshd
echo 'password' | passwd --stdin ec2-user

Platform : Amazon Linux 2

profile
유용할지도 모른다.

0개의 댓글