• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

Table 'session' is marked as crashed

I

irvan

Guest
how to repaired this table? this table on mysql or sql lite?
when i open my sitebuilder server.

Internal Sitebuilder error.
File: /usr/local/sitebuilder/include/Zend/Zend/Db/Adapter/Abstract.php; Line: 156
Message: SQLSTATE[HY000]: General error: 1194 Table 'session' is marked as crashed and should be repaired; Code: HY000
 
As I understand this is 'sitebuilder3.session' table. Try to log into MySQL and check this table with help of:

mysql> check table sitebuilder3.session;

if it outputs any errors try to repair it with:

mysql> repair table sitebuilder3.session;
+----------------------+--------+----------+----------+
| Table | Op | Msg_type | Msg_text |
+----------------------+--------+----------+----------+
| sitebuilder3.session | repair | status | OK |
+----------------------+--------+----------+----------+
1 row in set (0.03 sec)

Hope it helps.
 
Back
Top