• The APS Catalog has been deprecated and removed from all Plesk Obsidian versions.
    Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
  • Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.

repair restart mysql

S

spidermycron

Guest
Hello,
i need your help please to know what commands i need to :
1. restart my server mysql data base ?

2. repair my server mysql data base ?

Thank you
 
1. Restarting mysql:

# /etc/init.d/mysqld restart
Stopping MySQL: [ OK ]
Starting MySQL: [ OK ]
2. What do you mean 'repair my server mysql data base'? If you mean mysql server - just reinstall corresponding rpm or deb package. If you mean repairing database that for repairing MyISAM mySQL Tables/Databases:

cd /var/lib/mysql/DBNAME

#Please note that we assume your mySQL data directory is /var/lib/mysql

myisamchk *.MYI


Repairing ISAM mySQL Tables/Databases:

cd /var/lib/mysql/DBNAME

#Please note that we assume your mySQL data directory is /var/lib/mysql

isamchk *.MYI
 
Back
Top