Skip to Content

txAdmin Troubleshooting

Common issues and their solutions.

Server Won’t Start

Port Already in Use

Symptom: Error “Address already in use”

Solution:

# Find process using port sudo lsof -i :30120 # Kill process sudo kill -9 <PID>

Missing License Key

Symptom: “License key not found” error

Solution: Set license key in environment variable or server.cfg

Web Interface Not Accessible

Firewall Blocking

Solution: Open port 40120 in firewall

sudo ufw allow 40120/tcp

Wrong IP Address

Solution: Verify server IP and port:

Resources Not Loading

Corrupt Resource

Symptom: Resource fails to start

Solution:

  1. Check resource logs in txAdmin
  2. Verify fxmanifest.lua syntax
  3. Re-download resource if corrupted

Missing Dependencies

Symptom: Resource errors about missing exports

Solution: Ensure all dependencies are started before the resource

Recipe Installation Fails

Database Connection Error

Solution: Verify database credentials and connection

Insufficient Permissions

Solution: Ensure txAdmin has write permissions to server directory

Still Having Issues?