LBDonovan/image-builder

Can't login with root

Opened this issue · 1 comments

There's no root password but ssh doesn't let you login as root, you have to login as user 'bela' password 'a' then sudo su. Probably an issue with the ssh config

edit /etc/ssh/sshd_config to allow root login over ssh and also to allow empty password:

32c32
< #PermitRootLogin prohibit-password
---
> PermitRootLogin yes
57c57
< #PermitEmptyPasswords yes
---
> PermitEmptyPasswords yes

Note: apply this change AFTER you installed openssh-server