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:

SQL
SELECT * 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):

SQL
UPDATE tsmp_client
SET client_status = '1'
WHERE client_name = 'adminConsole';

After the update completes, try logging in to the Admin Console again.

  • Method 2: Re-enable via Admin Console UI

    If another administrator account is still able to log in:

    • Log in to the Admin Console using the working administrator account.

    • Navigate to Client Management.

    • Locate the adminConsole client.

    • Change the client status to Enable and save the changes.

Keywords: 403 Forbidden, Admin Console, Login Error, YWRtaW5Db2525zb2xl, Client(application) disable, tsmp_client

Last updated

Was this helpful?