Troubleshooting
Error with TLS certificate
Error |
Where can I see it ? |
Probable cause |
---|---|---|
|
Web-browser developer tools
When websocket server is configured to handle TLS from API side.
|
Make sure SSL certificates are readable by nginx process user. ( |
|
Web-browser developer tools
When websocket server is configured to handle TLS from API side.
|
|
|
Web-browser developer tools
When websocket server is configured to handle TLS from API side.
|
|
|
Web-browser developer tools
When websocket server is configured to handle TLS from API side.
|
Make sure that
|
|
api/storage/logs/laravel.log |
It means that PHP is unable to reach the websocket server. Make sure it’s running or, if it’s running correctly, make sure that |
Where are the log ?
If RootDB was installed without Docker
You’ll find log files here :
/path/to/rootdb/www/api/storage/logs
├── laravel.log
├── reverb_websocket.log
└── worker.log
If RootDB was installed with Docker, but www directory is mounted
You’ll find log files here :
/path/to/rootdb/mounted_www/api/storage/logs
├── laravel.log
├── reverb_websocket.log
└── worker.log
If RootDB was installed with Docker, and www directory is not mounted
# Each log files :
docker exec -u rootdb -it rootdb bash -c 'less -R var/www/api/storage/logs/laravel.log'
docker exec -u rootdb -it rootdb bash -c 'less -R var/www/api/storage/logs/reverb_websocket.log'
docker exec -u rootdb -it rootdb bash -c 'less -R var/www/api/storage/logs/worker.log'
# All log files :
docker exec -u rootdb -it rootdb bash -c 'less -R var/www/api/storage/logs/*.log'