05-19-2020, 06:09 PM
Can you run the TACTIC server in debug mode?
Go to <TACTIC_INSTALL_DIR>/src/bin
And run:
python3 startup_dev.py -p <PORT>
In this way you can run an instance of TACTIC on any port. It's great for debugging a live server without shutting down the main ones. If you not actually on the server, you may have to specify a domain name or IP
python3 startup_dev.py -p <PORT> -s <DOMAIN_OR_IP>
Go to this port explicitly in the url
http://<DOMAIN_OR_IP>:<PORT>/tactic/<PROJECT>/
You should see output on the console. Any errors will show up here.
Alternatively, you could look in the exception_log table in the sthpw database. A lot of work was done in 4.7 concerning dumping any stack traces to this table.
Go to <TACTIC_INSTALL_DIR>/src/bin
And run:
python3 startup_dev.py -p <PORT>
In this way you can run an instance of TACTIC on any port. It's great for debugging a live server without shutting down the main ones. If you not actually on the server, you may have to specify a domain name or IP
python3 startup_dev.py -p <PORT> -s <DOMAIN_OR_IP>
Go to this port explicitly in the url
http://<DOMAIN_OR_IP>:<PORT>/tactic/<PROJECT>/
You should see output on the console. Any errors will show up here.
Alternatively, you could look in the exception_log table in the sthpw database. A lot of work was done in 4.7 concerning dumping any stack traces to this table.