Quantcast
Channel: Ask OpenStack: Q&A Site for OpenStack Users and Developers - Individual question feed
Viewing all articles
Browse latest Browse all 8

Comment by najeh for Best practice is to not have passwords on cloud instances. If you have several hundred instances to look after, you either give them the same password (bad for security) or you have to remember several hundred passwords (good luck). So, the standard practice is to use password-less ssh. You set up a keypair (openstack keypair create mykey > mykey.pem), launch the instance with the key (openstack server create --key-name mykey ...), and ssh into the instance using the private key (ssh -i mykey.pem ...). i suggest you learn about ssh and keys, and Nova and keypairs.

$
0
0
Thanks this solve my issue, the mykey.pem will be the same for all instances ?

Viewing all articles
Browse latest Browse all 8

Trending Articles