05-27-2020, 03:42 PM
You can run TACTIC in debug mode on any port:
cd <TACTIC_INSTALL_DIR>/src/bin
python startup_dev.py -p 9000 -s <IP_OR_DOMAIN_NAME>
And then just go to your browser:
http://<IP_OR_DOMAIN_NAME>:8500/tactic/
Note: you need /tactic/ at the end if you are accessing a port not served by Apache. Also, you need to make sure that whatever port you choose is open by the firewall otherwise it will be blocked.
You can run this while TACTIC is normally running. It's a great way to debug problems on a live server without actually touching the core server processes. All your are doing is running another TACTIC process, but in debug mode and explicitly accessing only the debug executable.
cd <TACTIC_INSTALL_DIR>/src/bin
python startup_dev.py -p 9000 -s <IP_OR_DOMAIN_NAME>
And then just go to your browser:
http://<IP_OR_DOMAIN_NAME>:8500/tactic/
Note: you need /tactic/ at the end if you are accessing a port not served by Apache. Also, you need to make sure that whatever port you choose is open by the firewall otherwise it will be blocked.
You can run this while TACTIC is normally running. It's a great way to debug problems on a live server without actually touching the core server processes. All your are doing is running another TACTIC process, but in debug mode and explicitly accessing only the debug executable.