Having probelm after upgrade (Plesk)

General Discussion of atomic repo and development projects.

Ask for help here with anything else not covered by other forums.
metallikop

Having probelm after upgrade (Plesk)

Unread post by metallikop »

After the most recent plesk upgrade this is what I get when trying to start plesk:

Mysql error: Can't find file: 'key_history.MYI' (errno: 2)
Key register failed
/usr/local/psa/admin/bin/httpsdctl: line 227: 23979 Terminated $HTTPD
/usr/local/psa/admin/bin/httpsdctl start: httpd could not be started
Starting Plesk: [FAILED]

Running psa-7.5.2-rhel3.build75050130.17. Any help would be appreciated. Oh, I'm still running mysql from rhel.
MySQL-client-4.0.20-sp.3ES.1
MySQL-Max-4.0.20-sp.3ES.1
php-mysql-4.3.9-11.rhel3.art
MySQL-shared-compat-4.0.20-sp.3ES.1
MySQL-server-4.0.20-sp.3ES.1

Thanks for any help.
metallikop

Unread post by metallikop »

If anyone comes across this error, it appears that the table got corrupted, I followed the repair docs on mysql's site (http://dev.mysql.com/doc/mysql/en/repair.html) which fixed my problem. Here's what did it:

Code: Select all

shell> mysql db_name
mysql> SET AUTOCOMMIT=1;
mysql> TRUNCATE TABLE tbl_name;
mysql> quit
Post Reply