This commit is contained in:
Vlad Filippov 2019-03-18 14:00:40 -04:00 коммит произвёл GitHub
Родитель 492b3cb387
Коммит 260ced00c8
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 8 добавлений и 0 удалений

Просмотреть файл

@ -90,6 +90,14 @@ sudo docker exec -it auth-server sh -c 'ps aux' # finds the PID
sudo docker exec -it auth-server sh -c 'cat /proc/8/environ | xargs -0 -n 1' # outputs args sudo docker exec -it auth-server sh -c 'cat /proc/8/environ | xargs -0 -n 1' # outputs args
``` ```
Using `strace` to debug issues:
```
sudo strace -f -s 256 -tt -p 19023
```
where `19023` is the pid of the node process running under docker. `strace` captures and records all system calls.
### MySQL SSH Access ### MySQL SSH Access