WARNING: UNPROTECTED PRIVATE KEY FILE! error message
Was trying to ssh into my Amazon Web Services EC2 instances yesterday
ssh -i ec2-webserver.pem root@ec2-***.compute-1.amazonaws.com
and encountered this funky error message :
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@ WARNING: UNPROTECTED PRIVATE KEY FILE! @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
Permissions 0440 for 'ec2-webserver.pem' are too open.
It is recommended that your private key files are NOT accessible by others.
This private key will be ignored.
bad permissions: ignore key: ec2-webserver.pem
Password:
Upon further investigation, found out that this problem is actually caused by OpenSSH client security policy rather than AWS EC2.
To fix this error, change the permission of the /.ssh
directory to 0700
and the ec2-webserver.pem file to 0600
chmod 0700 $HOME/.ssh/
chmod 0600 $HOME/ec2-webserver.pem
Try the ssh command again and bingo! No more WARNING: UNPROTECTED PRIVATE KEY FILE!
error message
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+7.2k Golang : Check if one string(rune) is permutation of another string(rune)
+19.5k Golang : Get current URL example
+31.6k Golang : How to convert(cast) string to IP address?
+6.9k Nginx : Password protect a directory/folder
+7.1k CloudFlare : Another way to get visitor's real IP address
+30.3k Golang : How to verify uploaded file is image or allowed file types
+25.6k Golang : How to write CSV data to file
+6.8k Golang : Join lines with certain suffix symbol example
+18.6k Golang : Iterating Elements Over A List
+9.3k Golang : Create unique title slugs example
+87.4k Golang : How to convert character to ASCII and back
+8.7k Golang : Random integer with rand.Seed() within a given range