Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- jest
- NPM
- 기후변화
- url #querystring
- 클로저
- 객체참조 #객체
- OOP
- lightsail nodejs apache
- this
- ESLint
- git pair
- #cloudfront #s3 #html 확장자 없애기
- TypeScript
Archives
- Today
- Total
Hello World...
oracle cluod 프리티어 사용 중 Permissions 0644 error 본문
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@ WARNING: UNPROTECTED PRIVATE KEY FILE! @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
Permissions 0644 for 'ssh-key-20xx-0x-0x.key' are too open.
It is required that your private key files are NOT accessible by others.
This private key will be ignored.
Load key "ssh-key-20xx-0x-0x.key": bad permissions
ubuntu@xxx.xx.xx.xx: Permission denied (publickey).
파일의 권한을 재설정 해주어야 한다.
너무 많은 권한이 주어져서 에러가 나는 것이었다.
-rw-r--r-- >> -rw-------
이렇게 권한을 바꾸어야 한다.
명령어
chomd 600 ssh-key-20xx-0x-0x.key
Comments