Merge pull request #1399 from mariano-dagostino/1372-ssh

Make possible to login via ssh using the laradock user.
This commit is contained in:
Mahmoud Zalt
2018-03-25 19:14:10 +03:00
committed by GitHub
5 changed files with 18 additions and 2 deletions

View File

@ -1094,7 +1094,18 @@ To change the default forwarded port for ssh:
...
```
Then login using:
```bash
ssh -o PasswordAuthentication=no \
-o StrictHostKeyChecking=no \
-o UserKnownHostsFile=/dev/null \
-p 2222 \
-i workspace/insecure_id_rsa \
laradock@localhost
```
To login as root, replace laradock@locahost with root@localhost.
<br>
<a name="Change-the-MySQL-Version"></a>