파일 권한 변경 명령어.
$ chmod [변경될 권한값] [변경할 파일]
ex)
$ chmod 755 file
소유자 변경 명령어.
$ chown [변경할 소유자] [변경할 파일]
group도 변경 가능.
$ chown [변경할 소유자].[변경할 group] [변경할 파일]
ex)
$ chown seok file
$ chown seok.mygroup file
Warning: Permanently added '3.38.106.202' (ED25519) to the list of known hosts.
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@ WARNING: UNPROTECTED PRIVATE KEY FILE! @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
Permissions 0644 for 'my-ubuntu.pem' are too open.
It is required that your private key files are NOT accessible by others.
This private key will be ignored.
Load key "my-ubuntu.pem": bad permissions
ubuntu@3.38.106.202: Permission denied (publickey).
private key의 권한이 너무 open되어 있어서 permission denied.
private key의 권한을 400(owner만 읽기 가능)로 변경하여 해결.
$ chmod 400 my-ubuntu.pem
https://library.gabia.com/contents/9008/
https://m.blog.naver.com/PostView.naver?isHttpsRedirect=true&blogId=robotluv1226&logNo=220618363082
https://conory.com/blog/19194