Je cherche à modifier la configuration par défaut de la version cloud d'ubuntu où il refuse la connexion root.
Tenter de se connecter à une telle machine donne:
maxim@maxim-desktop:~/workspace/integration/deployengine$ ssh root@ec2-204-236-252-95.compute-1.amazonaws.com
The authenticity of host 'ec2-204-236-252-95.compute-1.amazonaws.com (204.236.252.95)' can't be established.
RSA key fingerprint is 3f:96:f4:b3:b9:4b:4f:21:5f:00:38:2a:bb:41:19:1a.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'ec2-204-236-252-95.compute-1.amazonaws.com' (RSA) to the list of known hosts.
Please login as the ubuntu user rather than root user.
Connection to ec2-204-236-252-95.compute-1.amazonaws.com closed.
Je voudrais savoir dans quel fichier de configuration le blocage racine via ssh est configuré et comment puis-je changer le message imprimé?
/root/.ssh/authorized_keys
dans le formulaireno-port-forwarding,no-agent-forwarding,no-X11-forwarding,command="echo 'Please login as the user \"ubuntu\" rather than the user \"root\".';echo;sleep 10" ssh-rsa xxxxxx
. Ainsi, même siPermitRootLogin yes
la commande ssh ne parvient pas à obtenir un shell fonctionnel.