• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

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