Running in Console Mode
If the TCAdmin Monitor or Web service isn't starting properly, you can run it in console mode to see exactly what's going wrong. Instead of running silently in the background as a service, console mode prints all log messages directly to your terminal so you can spot errors.
When to use this
Console mode is your first troubleshooting step when:
- The TCAdmin panel doesn't load in your browser
- Game servers aren't starting or being managed
- A service shows as "Stopped" and won't start
- You recently changed a configuration and something broke
Step 1: Stop the Service
Before running in console mode, stop the background service first (you can't run both at the same time):
- Windows
- Linux
Open PowerShell as Administrator:
# Stop the Monitor service
Stop-Service TCA3Monitor
# Stop the Web service
Stop-Service TCA3Web
Alternative: You can also stop services using the Windows GUI:
- Press
Win + R, typeservices.msc, and press Enter - Find TCAdmin 3.0 Monitor or TCAdmin 3.0 Control Panel
- Right-click and select Stop
# Stop the Monitor service
sudo systemctl stop tca3monitor
# Stop the Web service
sudo systemctl stop tca3web