Troubleshooting 403 Forbidden Error on Admin Console Login
Q: Why do I receive a 403 Forbidden error with the message "Client(application) disable" immediately after logging into the Admin Console?
A: This error occurs when the system detects that the default adminConsole client application is inactive.
If your error response body contains the specific string "YWRtaW5Db2525zb2xl' Client(application) disable", it confirms that the adminConsole client status has been set to disabled.
You can resolve this issue by verifying the client status in the database and re-enabling it using the SQL commands or Admin Console UI methods below.
1. Diagnosis: Check Client Status
Run the following SQL query to verify the status of the adminConsole client in your database:
SQLSELECT*FROM tsmp_client WHERE client_name ='adminConsole';
Diagnosis Result: If the CLIENT_STATUS column returns 2, the client is disabled. This is the root cause of the 403 Forbidden error.
2. Resolution: Re-enable the Client
You can resolve this issue using one of the following methods.
Method 1: Direct Database Update (Recommended if locked out)
If no administrator account can log in to the Admin Console, use this method to restore access.
Run the following SQL statement to set the client status to enabled (1):