Plesk / MySQL-Datenbanken arbeiten nicht

tobi4

Member
Moin,

seit heute morgen sind die Datenbanken der Webseiten nicht erreichbar sowie Plesk.

Plesk gibt dabei folgende Meldung:
ERROR: PleskMainDBException
MySQL query failed: Incorrect information in file: './psa/misc.frm'

0: common_func.php3:155
db_query(string 'select param, val from misc')
1: common_func.php3:585
get_param(string 'mysql41_compatible')
2: common_func.php3:482
db_set_names()
3: common_func.php3:461
db_connect_real(string 'localhost', string 'admin', string '************', string 'psa')
4: common_func.php3:441
db_connect()
5: auth.php3:121

Es läuft ein vServer mit CentOs. Habe keine Ahnung, wie ich vorgehen muss, um das Problem zu beheben.

Wüsste auch gerne, wodurch es ausgelöst wurde. Kann mir wer helfen?

Bisher habe ich durchs Power Panel von Plesk den mysql-Dienst versucht neuzustarten, was zwar mit einer Fehlermeldung abgebrochen wurde, aber immerhin sind die Datenbanken der Webseiten wieder online. Plesk gibt aber weiterhin gleiche Meldung aus.

Beim restarten von Plesk über ssh kam folgendes raus:
ERROR 1033 (HY000) at line 1: Incorrect information in file: './psa/misc.frm'

Danke & Gruß
 
Aus dem Parallels Forum:

The mentioned errors means that plesk database was corrupted. You can check it using the following command:

mysqlcheck -uadmin -p`cat /etc/psa/.psa.shadow ` psa
actually all tables should have "OK" status. In other case:

- try to repair it
mysqlcheck --auto-repair -uadmin -p`cat /etc/psa/.psa.shadow ` psa

- if the part of the tables were corrupted, try to restore them from the latest database backup

- check mysql log file (/var/log/mysql.log)
here you should find more information what caused the issue

like innodb was corrupted and it is required to repair it or you just set incorrect permissions on /tmp folder (should be 777)

Vielleicht hilfts. Ansonsten mal googlen, findet viel :)

Gruß
Marcel
 
Back
Top