• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

Plesk 9.2.2 / Deleted Administration Client

F

FranzC

Guest
Hi,

I delete the Administrator client from the PSA database by hand.

When I open my plesk (http://server:8443/) I got the following message:

ERROR: PleskFatalException
Administrator client not found

Additionally, an exception has occurred while trying to report this error: PleskFatalException
Administrator client not found

0: UserAdmin.php:78
UserAdmin::getAdminClient()
1: elements.php3:932
getCustomPageTitle(object of type UserNone)
2: elements.php3:884
getPleskTitle()
3: login.php3:23


But I have a backup and I try to restore the backup with the command: /usr/local/psa/bin/pleskrestore --restore backup_info_0910011925.xml -level server -license -verbose but I always receive the following massage:

PHP Fatal error: Class 'PleksUserException' not found in /usr/local/psa/admin/plib/backup/cuPleskRestore.php on line 681

Is there any way to add the Administrator client by hand?
Where can I find the PSA database in the Plesk 9.2.2 backup?
And in which table is the Administrator client?

I hope someone can help me. Thank you.

Bye,
Franz
 
Hello Franz,

Please, login to Parallels Plesk Panel (PP) database and check if the admin account has type 'admin', not 'client':

# mysql -uadmin -p`cat /etc/psa/.psa.shadow` psa

mysql> select id,type,login from clients where id=1;
+----+-------+-------+
| id | type | login |
+----+-------+-------+
| 1 | admin | admin |
+----+-------+-------+
1 row in set (0.00 sec)

Thank you
 
Back
Top