Connecting to a server via SSH as root user is disabled by default. To enable this, edit the sshd configuration file:
nano /etc/ssh/sshd_config
Find the following line:
#PermitRootLogin prohibit-password
Change it to this.
PermitRootLogin yes
Now restart the ssh service:
systemctl restart sshd