GNU/Linux >> Linux Esercitazione >  >> Debian

Abilita l'accesso root SSH su Debian Linux Server

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.


Debian
  1. Consenti l'accesso root ssh sul server Linux Ubuntu 14.04

  2. Come abilitare il server SSH su Ubuntu 22.04 Jammy Linux

  3. Come ottenere il server Linux invia un avviso e-mail all'accesso root

  4. Disabilita o abilita l'accesso root SSH e l'accesso SSH sicuro in CentOS 7

  5. Abilita l'accesso tramite password per SSH su Amazon Linux AMI

Come abilitare SSH su Debian 11 Bullseye Linux

Come installare e abilitare il server OpenSSH su CentOS 8 Linux

Come abilitare SSH su Debian 10 Buster

Come installare e abilitare il server SSH su Debian 10

Come eseguire l'SSH sul server tramite Linux

Come disabilitare l'accesso SSH per l'utente root in Linux?