By Khaled99
I’ve a snapshot that I have created from a droplet that has ssh key but I also want to be able to access it with a password so I set PasswordAuthentication to yes (inside /etc/ssh/sshd_config) and restarted ssh service (service sshd restart) before saving the snapshot. Now when I create other droplets using this snapshot and specify ssh key and then try to login with password I can not and when I logged in with ssh key to see whats wrong I noticed PasswordAuthentication was set back to ‘no’!! how can I force it to stay on the value I specified which was ‘yes’ ?
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!
Did you ever figure out a solution to this? Kinda frustrating to spawn machines for a class and then have to go in and enable password logins again.
create a bash script like below in /root/ directory for example:
#!/bin/bash
sudo sed -i "/^[^#]*PasswordAuthentication[[:space:]]no/c\PasswordAuthentication yes" /etc/ssh/sshd_config
sudo service sshd restart
Then create a systemd system(if using a systemd system like centos) to run this script on start up.
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.