top of page

Basicly SSH server disable the client to SSH to root account.

this guide show how to enable it.

1. Edit sshd_config
$ sudo nano /etc/ssh/sshd_config

 

2. Change permission
#PermitRootLogin prohibit-password

$Change to below

PermitRootLogin yes

3. Restart service

$ sudo service ssh restart

Done.

Enable SSH into Root Account

bottom of page