Notes |
|
|
Did we just upgrade the System MySQL (MariaDB) database engine by any chance?
There are some 'hits' to this proc table corruption when an upgrade goes from 5.0 to 5.5.
The recommended action is to run 'mysql_upgrade' after upgrading. |
|
|
(0002441)
|
timb80
|
2015-12-16 07:22
|
|
|
|
(0002461)
|
timb80
|
2015-12-16 08:31
(edited on: 2015-12-16 08:32) |
|
Running the following fixed mine but then command automatically fixes broken tables so may be a bit over the top
[root@raphael ~]# cat /var/clearos/system_database/root
password = dxxxxxxxxxxxxxxxxxxxxxxxxxx
[root@raphael ~]# /usr/clearos/sandbox/usr/bin/mysql_upgrade -uroot -p
Enter password:
Phase 1/3: Fixing table and database names
Phase 2/3: Checking and upgrading tables
Processing databases
information_schema
mysql
mysql.columns_priv OK
mysql.db OK
mysql.event OK
mysql.func OK
mysql.help_category OK
mysql.help_keyword OK
mysql.help_relation OK
mysql.help_topic OK
mysql.host OK
mysql.ndb_binlog_index OK
mysql.plugin OK
mysql.proc
warning : Table is marked as crashed
status : OK
mysql.procs_priv OK
mysql.proxies_priv OK
mysql.servers OK
mysql.tables_priv OK
mysql.time_zone OK
mysql.time_zone_leap_second OK
mysql.time_zone_name OK
mysql.time_zone_transition OK
mysql.time_zone_transition_type OK
mysql.user OK
owncloud
owncloud.oc_activity OK
owncloud.oc_activity_mq OK
owncloud.oc_appconfig OK
owncloud.oc_file_map OK
owncloud.oc_filecache OK
owncloud.oc_files_trash OK
owncloud.oc_group_admin OK
owncloud.oc_group_user OK
owncloud.oc_groups OK
owncloud.oc_jobs OK
owncloud.oc_ldap_group_mapping OK
owncloud.oc_ldap_group_members OK
owncloud.oc_ldap_user_mapping OK
owncloud.oc_locks OK
owncloud.oc_mimetypes OK
owncloud.oc_preferences OK
owncloud.oc_privatedata OK
owncloud.oc_properties OK
owncloud.oc_share OK
owncloud.oc_share_external OK
owncloud.oc_storages OK
owncloud.oc_users OK
owncloud.oc_vcategory OK
owncloud.oc_vcategory_to_object OK
performance_schema
zarafa
zarafa.abchanges OK
zarafa.acl OK
zarafa.changes OK
zarafa.clientupdatestatus OK
zarafa.deferredupdate OK
zarafa.hierarchy OK
zarafa.indexedproperties OK
zarafa.lob OK
zarafa.mvproperties OK
zarafa.names OK
zarafa.object OK
zarafa.objectmvproperty OK
zarafa.objectproperty OK
zarafa.objectrelation OK
zarafa.outgoingqueue OK
zarafa.properties OK
zarafa.receivefolder OK
zarafa.searchresults OK
zarafa.settings OK
zarafa.singleinstances OK
zarafa.stores OK
zarafa.syncedmessages OK
zarafa.syncs OK
zarafa.tproperties OK
zarafa.users OK
zarafa.versions OK
Phase 3/3: Running 'mysql_fix_privilege_tables'...
OK
#systemctl restart system-mariadb
#/usr/sbin/zarafa-condrestart
|
|