• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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