"WARNING: UNPROTECTED PRIVATE KEY FILE!"의 두 판 사이의 차이

5번째 줄: 5번째 줄:
==문제상황==
==문제상황==
<syntaxhighlight lang='console'>
<syntaxhighlight lang='console'>
root@zetawiki:~# ssh 135.79.246.80 -i abcd.pem
root@zetawiki:~# ssh 135.79.246.80 -i hello.pem
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@        WARNING: UNPROTECTED PRIVATE KEY FILE!          @
@        WARNING: UNPROTECTED PRIVATE KEY FILE!          @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
Permissions 0644 for 'abcd.pem' are too open.
Permissions 0644 for 'hello.pem' are too open.
It is required that your private key files are NOT accessible by others.
It is required that your private key files are NOT accessible by others.
This private key will be ignored.
This private key will be ignored.
18번째 줄: 18번째 줄:
==조치==
==조치==
<syntaxhighlight lang='console'>
<syntaxhighlight lang='console'>
root@zetawiki:~# chmod 600 abcd.pem  
root@zetawiki:~# chmod 600 hello.pem  
root@zetawiki:~# ssh 135.79.246.80 -i abcd.pem
root@zetawiki:~# ssh 135.79.246.80 -i hello.pem
Welcome to Ubuntu 16.04.2 LTS (GNU/Linux 4.4.0-83-generic x86_64)
Welcome to Ubuntu 16.04.2 LTS (GNU/Linux 4.4.0-83-generic x86_64)
... (생략)
... (생략)

2024년 3월 10일 (일) 09:24 판

1 개요

WARNING: UNPROTECTED PRIVATE KEY FILE!
Permissions 0644 for 'hello.pem' are too open.

2 문제상황

root@zetawiki:~# ssh 135.79.246.80 -i hello.pem
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@         WARNING: UNPROTECTED PRIVATE KEY FILE!          @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
Permissions 0644 for 'hello.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 "abcd.pem": bad permissions
Permission denied (publickey).

3 조치

root@zetawiki:~# chmod 600 hello.pem 
root@zetawiki:~# ssh 135.79.246.80 -i hello.pem
Welcome to Ubuntu 16.04.2 LTS (GNU/Linux 4.4.0-83-generic x86_64)
... (생략)

4 같이 보기

5 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}