• We value your experience with Plesk during 2025
    Plesk strives to perform even better in 2026. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2025.
    Please take this short survey:

    https://survey.webpros.com/

error

J

jayj

Guest
guys wondering if you can help me ive got up today and noticed all my sites had gone down
so i tried to log into plesk and this is what i got

ERROR: PleskMainDBException
MySQL query failed: Incorrect information in file: './psa/misc.frm'

0: common_func.php3:168
db_query(string 'select param, val from misc')
1: common_func.php3:587
get_param(string 'mysql41_compatible')
2: common_func.php3:484
db_set_names()
3: common_func.php3:463
db_connect_real(string 'localhost', string 'admin', string '********', string 'psa')
4: common_func.php3:443
db_connect()
5: auth.php3:90


i havnt got a clue what the problem is or what happend
could some one shed some light on either how i can correct this without lossing my db or how it happend cheers
 
Hi,

Looks like the DB got corrupted.
You can try to repair it like this:
mysqlcheck -uadmin -p`<plesk_admin_password>` psa -r
If that does not help, the only thing to do is restore the database from the most recent dump.
 
Hello,

The problem is caused by incorrect permissions to directory /tmp. Thus, MySQL is not able to properly create its temporary files for InnoDB engine on start.

Here are correct permissions:

~# ls -ld /tmp/
drwxrwxrwt 4 root root 36864 Aug 8 08:41 /tmp/
~#

Correct the permissions with the following comment:

~# chmod 1777 /tmp

Please, see the follwoing article for more information:

http://kb.odin.com/en/6595

Thank you
 
Back
Top