Reputation: 73
I want to know if in google cloud it is possible to log in to my ssh server without publickey, since I need to delete and create users frequently and it becomes annoying to have to generate the keys
Upvotes: 7
Views: 11673
Reputation: 2774
Head over to the file /etc/ssh/sshd_config, and change the following line :
PasswordAuthentication yes
Then restart sshd :
sudo service ssh restart
Upvotes: 16