On the Linux Bash language command line/console, Iโll introduce how to omit the password prompt for SSH connections.
ssh-keygen -t rsa # if you don't have yet.
ssh [email protected] mkdir -p ~/.ssh
cat ~/.ssh/id_rsa.pub | ssh [email protected] 'cat >> ~/.ssh/authorized_keys' # I like this way of writing
ssh [email protected] # you've being able to bypass password
# This means adding the client's public key to the server.
The ConoHa VPS password is 9 digits, but after typing it about 50 times, it became troublesome.