Hello everyone, it’s my first time working with Digital Ocean. I’ve already created my droplet with ubuntu 16, created my SSH keys on Mac and included in the droplet. But I can’t login using SSH without including the private key path:
ssh root@DROPLET_IP -i /path/to/private_key
If the path to private key is included I can log in, otherwise the public key is denied.
Can anyone help me?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in Q&A, subscribe to topics of interest, and get courses and tools that will help you grow as a developer and scale your project or business.
Where is your private key located? By default, ssh looks for a key in
~/.ssh/id_rsa
. It sounds like your key is stored somewhere else, so that’s why you’re unable to connect without explicitly specifying the path to your key.You can either move/copy your SSH key to that path, use ssh-agent, or modify the config file
~/.ssh/config
to include the existing path: