Dopo una nuova installazione del sistema, il login di root su Debian Linux è disabilitato per impostazione predefinita. Quando tenti di accedere come utente root al tuo server Debian Jessie Linux, l'accesso verrà negato es.:
$ ssh [email protected] [email protected]'s password: Permission denied, please try again. [email protected]'s password: Permission denied, please try again. [email protected]'s password: Permission denied (publickey,password).
Per abilitare l'accesso SSH per un utente root su un sistema Debian Linux è necessario prima configurare il server SSH. Apri /etc/ssh/sshd_config
e cambia la seguente riga:
FROM: PermitRootLogin without-password TO: PermitRootLogin yes
Dopo aver apportato la modifica sopra, riavvia il tuo server SSH:
# /etc/init.d/ssh restart [ ok ] Restarting ssh (via systemctl): ssh.service.
D'ora in poi sarai in grado di accedere in ssh come root:
$ ssh [email protected] [email protected]'s password: The programs included with the Debian GNU/Linux system are free software; the exact distribution terms for each program are described in the individual files in /usr/share/doc/*/copyright. Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent permitted by applicable law.
La seguente guida ti fornirà le informazioni su come abilitare l'accesso root SSH su Ubuntu 16.04 Xenial Xerus Linux Server/Desktop.