doc/ssh_fr.md
ma.azimi@laposte.net dd8bef419f Update ssh_fr.md
2015-09-08 19:37:06 +02:00

14 lines
No EOL
488 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#SSH
Le **SSH** permet de commander à distance son serveur en ligne de commande (CLI).
##### Pour se connecter à son serveur :
```bash
ssh admin@mon-serveur.org
```
Ensuite, il est demandé le mot de passe administrateur, celui créé à [létape de post-installation](postinstall_fr).
##### Se connecter à un port différent du port par défaut 22
Éditer la ligne `Port 22` du fichier `/etc/ssh/sshd_config`, puis connectez-vous :
```bash
ssh -p <port> admin@mon-serveur.org
```