If this info helped you out you can say thanks and support future content by clicking my Amazon affiliate link: amzn.to/3JwRQeF. If you make a purchase on Amazon within 24 hours of clicking the link I may receive a micro-commission and it costs you nothing extra. Any income from these sales goes directly to supporting me in making new videos and guides. Thank you for your support!
Susan, words won't be enough to thank you on how amazing this tutorial is! So informative, so many positives. To begin with the way you explained, managed, wow! + you solved my problems in less then 15 mins, I have been googling for 60 mins! Thank you
Hi Susan, Thanks for the awesome tutorial. It solved the issue that I was grappling with for the past 3+ days. None of the other tutorials even come close to what and how you have described the issue and its resolution. Thanks
Thank you so much for your help with the authentication problem! I was stuck on this issue for a whole day, and your video provided the clear and effective solution I needed. I really appreciate your time and effort in making such valuable content. You’ve saved me a lot of frustration-thanks again! ❤
Hi all I figured it out! for some reason I had to use this line to create the publiv and private IDs ssh-keygen -t ed25519 -C "your email addy goes here". That worked!
Thank you. Adding my current pub key fixed the issue. Note to anyone using Proxmox Hypervisor for VMs: We can inject ssh keys into the vm, through the Cloud-init option.
thank you you have no idea how much time it toke but after trying every thing I have seen your video it was vary clear and straight forwarded it was help full.
Hello, I have been trying to access the SSH through a VPS to configure wireguard but I am getting an error message, Permission denied (Publickey,password) I have checked if the keys are a match and they are. Don’t know what to do.
thanks a lot!!! i was with trouble cause of custom name: i hadn't had a config file on my .ssh dir on windows with "IdentityFile [path-to-private-key]". THANK YOU
This saved me a lot of frustration. I couldn't find anything on google describing my issue, but I was missing the config file in ~/.ssh... Problem solved. Thank you so much
I did follow almost everything but stuck with the step of having authorized_keys. This file is not on my server. So I tried creating one and adding the public key to it but to no avail.
Pls please i have two kali on vmware bridged mod i have the good pubkeys good permissions ssh is active i can ping ssh is up when nmap i use the right private key but the error message when I try ssh is showing me the wrong finger print and its always the i have the good sshd_config too pubkeyauth yes
Hi Casey - If you don't see an authorized_keys file there you can create it. The known_hosts file is different - that keeps track of what external hosts that system has connected to so that when you go to connect to those hosts again, it won't prompt you to approve the connection.
what if after checking the config file and the IdentityFile is pointing to the right key, but after running verbose you see that it is the default id_rsa key that is being picked up?
You can attempt the SSH connection by explicitly specifying which key to use. This will confirm/deny the key you are trying to use is functioning. The command to do that is: ssh -i ~/.ssh/your-key your-username@your-server-ip If that succeeds you know the key is not the problem, but there is some problem with your SSH config or how the key was added to the config. If it fails, you know it's a problem with the key. Feel free to follow-up with what you find and I can continue to help you troubleshoot.
In addition to checking that the public key is on the server in the correct location, were you able to confirm the other steps as well? This includes: 1. That the private and public key are a match 2. If the private key has a custom name that your SSH config is set to attempt to use that key If you've checked all of those things and it's still not working, run "ssh -v username@ip-address" and study the output for clues. If you want, you can email me the output (mail@codewithsusan.com) and I can help look it over for you.
Muchas gracias por su amable respuesta y ofrecer de su tiempo para ayudarme, y pues le voy a contactar para darle los detalles de el comando -v. Otra ves me encantó el video y la forma sencilla y detallada que lo explicas que para alguien como yo que estoy dando pasos de baby en esto lo comprendí todo.
Not sure if this is still being followed or not but here it goes…. Would this problem be the same if I am getting a message that says “permission denied (publickey,password)”? I am only getting the message after trying a password three times (but it’s the password I’ve used for the past four months). It just seems to have stop being recognized.
If you're using passwords to log in, the SSH keys should be irrelevant. Odd that it had been previously working and just stopped. Do you have some alternative way to log into your server to troubleshoot (E.g. another member on your team that has access or via a dashboard from your server provider) ?
My problem was not having a username in front of the machine I wanted to connect to (RPI) as I had changed the SD card and the username was not the same. Probably would not have noticed that if I didn't see you entered username first. :D Thanks for the video!
Hi Susan. I've got this working as you told connecting via console in my cloud. I put my public key in there but only my pc has access to that vm. How can I have this working for any other computers from my office?
For each computer you want to connect from, you want to generate a key pair and install the public key from that pair on the server. Here's my video on setting up keys: ruclips.net/video/k7Q-QfiOPLk/видео.html
when checking the connection with ssh -v it shows that it is not using the correct key file. How do i fix. In terraform the path to key file is correct but it is still trying to find the pair in the wrong key file
It's the default user the server came set up with from my server provider. Many servers have a "root" admin user you can connect as. Sometimes though, you can't directly connect to a server as root for security purposes, but that's not the case on this server. When you set up a server, they should give you information on what default user it is set up with so you can connect as that user.
question, I was giving the RSA private key to login from work, could I ask you how to go abouts to connect? i've been googling this all day. Do i need to override my private key to the key i was giving? thank you.
In your case, you're not generating the keys on your computer, you're working with an existing key. To set this up, place the key they gave you in your computer's ~/.ssh directory. You can name this file whatever you want, but let's say for example you call it "my-work-key" (because it's a private key, we won't use an extension). Then, edit your SSH config file (~/.ssh/config) like I showed in the video adding the line referencing this key (IdentityFile ~/.ssh/my-work-key). Now when you attempt to SSH into your work server, it should attempt to authenticate with that key. If that doesn't work, let me know and I can help debug further.
Thank you for the content, this has been a struggle to set the ssh with digital ocean and your content help a lot and I learnt new stuff about ssh. What about the add ssh key feature from the control panel of digital ocean why it doesn't work?
It's possible you're using the DigitalOcean "add a SSH key" feature that simply allows you to store a key with your DigitalOcean account that can automatically be added to new servers whenever they're created. This is different than adding keys to existing servers.
If this info helped you out you can say thanks and support future content by clicking my Amazon affiliate link: amzn.to/3JwRQeF. If you make a purchase on Amazon within 24 hours of clicking the link I may receive a micro-commission and it costs you nothing extra. Any income from these sales goes directly to supporting me in making new videos and guides. Thank you for your support!
I was stucked in this step from last 2 days and after seeing this video i did it in less than 5 mins. Words not enough to thank you @Susan.
Thank you Susan, I had checked 100 tutorials and your explanation was the only one that could finally help me solve my issue.
Susan, words won't be enough to thank you on how amazing this tutorial is! So informative, so many positives. To begin with the way you explained, managed, wow! + you solved my problems in less then 15 mins, I have been googling for 60 mins! Thank you
So happy it helped, @Aditya! 🙂
I was stuck on this issue for days. Thank you so much for not only creating a clear tutorial, but also explaining what was causing the error.
Thank you so much this tutorial helped me debug my project and with how long I've been stuck on it I was starting to lose it 😭❤
Hi Susan,
Thanks for the awesome tutorial.
It solved the issue that I was grappling with for the past 3+ days.
None of the other tutorials even come close to what and how you have described the issue and its resolution.
Thanks
You are a true Pro Susan, i had two days of turmoil trying to hit my head on the wall to find this. New subscriber here 😊
Thank you so much for your help with the authentication problem! I was stuck on this issue for a whole day, and your video provided the clear and effective solution I needed. I really appreciate your time and effort in making such valuable content. You’ve saved me a lot of frustration-thanks again! ❤
Hi all I figured it out! for some reason I had to use this line to create the publiv and private IDs ssh-keygen -t ed25519 -C "your email addy goes here". That worked!
I'm so glad I had this issue, because now after watching your video, I finally have a decent understanding of how ssh works.
Thank you :)
Awesome :)
I was starting to lose my mind trying to figure this out! You are a life saver, thank you!
You're welcome, glad it helped!
Losing my mind right now
@@sheyig346mee too lol
I never thought it could be my cloud providers mistake
I am finally able to connect to my VM Thank you
Glad you got it sorted out!
It's a very useful vedio those who have facing permission denied error. Thank you very much Ma'am
You know. I usually don't like videos much. But you solved a problem that was making me frustrate. Thank you
Step by step instructions, which is required for a beginner and that is what you have take us through. Thank you and will follow you..!! HIGH FIVE🤟👏
For sure, that is the best explanation about this subject ever. You saved hours of searching time. Thanks a lot. :)
I love this video. Thank you, Susan. You're more helpful than the folks at DO!
Thank you. Adding my current pub key fixed the issue.
Note to anyone using Proxmox Hypervisor for VMs: We can inject ssh keys into the vm, through the Cloud-init option.
thank you you have no idea how much time it toke but after trying every thing I have seen your video it was vary clear and straight forwarded it was help full.
You're welcome - glad you found it helpful!
1 gün boyunca uğraşıyordum sayende halledebildim
Very helpful. Thank you for making these troubleshooting guides for servers. Greetings from México!!
Susan its wonderfull explanation.
My circleci CICD integration successfully done.
This helped me a bunch since both on my phone (termux) and my laptop, there was no config file generated. One file, one line -- solved. Thank you :)
A bundle of thanks, you saved my time. Carry on helping the community ma'am. Best of luck 🤞
Happy to help!
Excellent article, I had been looking for this for days, thanks a lot
Best clear, concise explanation on the internet! Thank you!
High praise - thank you!
This was a very useful video btw. Editing the config file helped me to solve my issue on runpod. Thanks
Thank you for guiding us Susan.
Much love from Kenya. I found this so helpful!
Thanks Susan, you help me a lot your last method. Greetings from Brazil.
Glad it helped!
Great video, explanation.
Concise and accurate.
Thanks for sharing such content🙌
Wonderful job Susan! You just saved my life! Thank you!
Thanks Susan for this really clear video !
Glad it was helpful!
Finally a video with a voice over!
thats the best video on the entire internet, thank you!
Thank you. It helped a lot. It just worked as expected
Hello, I have been trying to access the SSH through a VPS to configure wireguard but I am getting an error message, Permission denied (Publickey,password)
I have checked if the keys are a match and they are. Don’t know what to do.
Very helpful video. Thanks Susan.
Glad it was helpful!
when i open the .ssh from the server, my public key is already there, but i still get access denied.
Thank you so much I owe you my degree!!!!much love
Best video I've found. Thank you! Fixed my issue.
Glad it helped!
Thanks Susan! This was very helpful
Thank you. Awesome Job 🎉
Love you Susan.... I was struggling since 3 days thanks alot
Glad the struggle is over :)
Glad I found this solution
nice explanation
so what if there's just nothing listed in my authorized_keys directory?
thanks sussan!!!
Great explanation. Fixed my same issue with clear understanding.
Glad it was helpful; thanks for watching.
This was soooo helpful! Thank you so much!
thanks a lot!!! i was with trouble cause of custom name: i hadn't had a config file on my .ssh dir on windows with "IdentityFile [path-to-private-key]". THANK YOU
thank you very much for a very good explanation!
This saved me a lot of frustration. I couldn't find anything on google describing my issue, but I was missing the config file in ~/.ssh... Problem solved. Thank you so much
absolute lifesaver, thanks a lot
Glad it helped!
I did follow almost everything but stuck with the step of having authorized_keys. This file is not on my server. So I tried creating one and adding the public key to it but to no avail.
If you email me the output of the command "ssh -v your-username@your-ip-address" I can take a look and help you debug. mail@codewithsusan.com.
Pls please i have two kali on vmware bridged mod i have the good pubkeys good permissions ssh is active i can ping ssh is up when nmap i use the right private key but the error message when I try ssh is showing me the wrong finger print and its always the i have the good sshd_config too pubkeyauth yes
Regarding the wrong fingerprint - is the issue described in this video what you're seeing: ruclips.net/video/Ias1KrmCpkg/видео.html ?
In EC2 Ubuntu Instance Create a new user
and SSH Key pair with an authorized key how do i do that im a bit confused can you help
This is very helpful, well articulated.
Thank you for this one. now i understand how SSH to be fixed
Thank You very much Susan! It helped me fix the issue
Glad it helped!
Awesome, clear and concise tutorial.
My ssh folder on my vm doesn't contain "authorized_keys" file but a "known_hosts" file, do these represent the same use?
Hi Casey - If you don't see an authorized_keys file there you can create it. The known_hosts file is different - that keeps track of what external hosts that system has connected to so that when you go to connect to those hosts again, it won't prompt you to approve the connection.
@@codewithsusan Thanks so much, this worked!
what if after checking the config file and the IdentityFile is pointing to the right key, but after running verbose you see that it is the default id_rsa key that is being picked up?
You can attempt the SSH connection by explicitly specifying which key to use. This will confirm/deny the key you are trying to use is functioning.
The command to do that is:
ssh -i ~/.ssh/your-key your-username@your-server-ip
If that succeeds you know the key is not the problem, but there is some problem with your SSH config or how the key was added to the config.
If it fails, you know it's a problem with the key.
Feel free to follow-up with what you find and I can continue to help you troubleshoot.
Great Video thanks Susan
Thank you, great content.
Thanks its clear step and helpful to solve my issue
Great video! Thanks
Y que pasa cuando la clave pública si está en el archivo y aún sigue dando el mismo error de denied permission (pubkey)?
Y buen video,me encantó lo fácil que fue entenderlo saludos desde Puerto Rico 🇵🇷 aquí un nuevo sub
In addition to checking that the public key is on the server in the correct location, were you able to confirm the other steps as well? This includes:
1. That the private and public key are a match
2. If the private key has a custom name that your SSH config is set to attempt to use that key
If you've checked all of those things and it's still not working, run "ssh -v username@ip-address" and study the output for clues. If you want, you can email me the output (mail@codewithsusan.com) and I can help look it over for you.
Gracias lo aprecio :)
Muchas gracias por su amable respuesta y ofrecer de su tiempo para ayudarme, y pues le voy a contactar para darle los detalles de el comando -v. Otra ves me encantó el video y la forma sencilla y detallada que lo explicas que para alguien como yo que estoy dando pasos de baby en esto lo comprendí todo.
Perfect, great video!
Very well explained. Thank you
Best! save my day. Thanks.
Not sure if this is still being followed or not but here it goes…. Would this problem be the same if I am getting a message that says “permission denied (publickey,password)”? I am only getting the message after trying a password three times (but it’s the password I’ve used for the past four months). It just seems to have stop being recognized.
If you're using passwords to log in, the SSH keys should be irrelevant. Odd that it had been previously working and just stopped. Do you have some alternative way to log into your server to troubleshoot (E.g. another member on your team that has access or via a dashboard from your server provider) ?
My problem was not having a username in front of the machine I wanted to connect to (RPI) as I had changed the SD card and the username was not the same. Probably would not have noticed that if I didn't see you entered username first. :D Thanks for the video!
Thank u so much!!! It was very helpful ;)
This is helped me a lot
thanks susan that was helpful
Hi Susan. I've got this working as you told connecting via console in my cloud. I put my public key in there but only my pc has access to that vm. How can I have this working for any other computers from my office?
For each computer you want to connect from, you want to generate a key pair and install the public key from that pair on the server. Here's my video on setting up keys: ruclips.net/video/k7Q-QfiOPLk/видео.html
@@codewithsusan Thank you!
Easy explanation, thank you!
Thank you for the step by step guide
very well explained. thank you so much
when checking the connection with ssh -v it shows that it is not using the correct key file. How do i fix. In terraform the path to key file is correct but it is still trying to find the pair in the wrong key file
Hi Chastain - If you want to share the output of `ssh -v` with me via email (mail@codewithsusan.com) I can help you troubleshoot further.
Interesting authorisation method for notes access :)
Seems like a fair exchange for free content, no? : )
amazing video and notes
nice vid, what if the folder which point to the config is instead /etc/sshh and not ~/.ssh?
Are you saying your config file is located in /etc/ssh or that the line within the config file that identifies the SSH key is pointing to /etc/ssh?
Glad I found this
Thanks a ton for the detailed information ❤
No problem. Thanks for watching Avaneesh!
Awesome and very clear, thanks for sharing your acknowledgement
hi im confused at 11:39 minutes where you got your username from?
It's the default user the server came set up with from my server provider. Many servers have a "root" admin user you can connect as. Sometimes though, you can't directly connect to a server as root for security purposes, but that's not the case on this server. When you set up a server, they should give you information on what default user it is set up with so you can connect as that user.
this was what I needed. thank you!
Very well explained. Thanks. It helped me.
Glad it helped!
Thank you, great content and very helpful.
this was a great explanation
Thanks!
question, I was giving the RSA private key to login from work, could I ask you how to go abouts to connect? i've been googling this all day. Do i need to override my private key to the key i was giving? thank you.
In your case, you're not generating the keys on your computer, you're working with an existing key. To set this up, place the key they gave you in your computer's ~/.ssh directory. You can name this file whatever you want, but let's say for example you call it "my-work-key" (because it's a private key, we won't use an extension). Then, edit your SSH config file (~/.ssh/config) like I showed in the video adding the line referencing this key (IdentityFile ~/.ssh/my-work-key). Now when you attempt to SSH into your work server, it should attempt to authenticate with that key. If that doesn't work, let me know and I can help debug further.
What if I get this error and I don't see any files for the public key or the private key?
If you don't see a public or private key, you'll need to generate them. Instructions here: ruclips.net/video/k7Q-QfiOPLk/видео.html
@@codewithsusan Thanks Susan!
Outstanding video
Appreciate it!
nice explanation!
Thank you for the content, this has been a struggle to set the ssh with digital ocean and your content help a lot and I learnt new stuff about ssh. What about the add ssh key feature from the control panel of digital ocean why it doesn't work?
It's possible you're using the DigitalOcean "add a SSH key" feature that simply allows you to store a key with your DigitalOcean account that can automatically be added to new servers whenever they're created. This is different than adding keys to existing servers.
Nice! Thanks for the help :)
great job
nice explanation. Thanks