Troubleshooting: 'FXServer is Not Responding' Error (How to Fix)
When managing a FiveM server, few things induce panic quite like glancing at your txAdmin panel and reading “FXServer is not responding!”

When managing a FiveM server, few things induce panic quite like glancing at your txAdmin panel and reading “FXServer is not responding!”
This error signifies a critical breakdown in communication: the txAdmin overlay is completely failing to communicate with the underlying FXServer game process. This generally results in the server showing as "Offline" to the public and automatically restarting in an endless loop.
This guide provides systematic, technical troubleshooting steps for FiveM server administrators to isolate and resolve txAdmin and FXServer connectivity failures.
Cause 1: Port Configuration Mismatch

The absolute most common trigger for the "FXServer is not responding" warning is a basic misconfiguration of networking ports in your main server configuration file.
The Issue
txAdmin requires specific TCP and UDP ports to talk to the server instance. If these do not match your host’s assigned ports, or if there is a conflict in the file, txAdmin loses its connection string.
The Fix
Verify your contains matching TCP and UDP endpoints. Open your config and locate the following lines (usually right at the top):
endpoint_add_tcp "0.0.0.0:30120"
endpoint_add_udp "0.0.0.0:30121"
Replace the default port numbers (30120 / 30121) with the specific allocated ports given to you by your VPS or Game Server hosting provider.
Validation Steps:
Frequently Asked Questions
What does the "FXServer is not responding!" error in txAdmin mean?
This error indicates a failure in communication between the txAdmin panel and the FXServer game process. It typically means txAdmin can no longer 'ping' or receive status updates from the server. As a result, the server often appears offline and might be stuck in a restart loop.
My server.cfg has endpoint TCP and UDP ports defined. How do I know if they are causing the "FXServer is not responding" error?
First, find the `endpoint_add_tcp` and `endpoint_add_udp` lines in your `server.cfg` file. Compare the port numbers specified there directly to what's configured in your txAdmin settings under FXServer. Any mismatch, even by one digit, can be the cause. Ensure the ports match your VPS or hosting provider's allocated ports. After correcting any mismatches, restart your server from the console to apply the changes.
Could a faulty or unoptimized script cause the "FXServer is not responding" error?
Yes, a poorly written script with issues like an infinite loop or a broken `fxmanifest.lua` can freeze the main thread of the FXServer. This prevents the server from responding to txAdmin's status checks, triggering the error. Debugging your resources and ensuring they are properly optimized is crucial to avoid this.






