Troubleshooting

Check the database

sudo -u postgres psql

postgres=# \l - lists all databases

postgres=# \c webclient

Check PHP

Call http://web_client_url/api/v1/db/update/

For more troubleshooting place a file test.php in the root folder

<?php phpinfo(); ?>

and call http://web_client_url/test.php

 

Restarting FastCGI

ubuntu@ip-172-31-15-90:/var/www$ sudo systemctl stop php7.2-fpm.service ubuntu@ip-172-31-15-90:/var/www$ sudo systemctl start php7.2-fpm.service