When I restart mysql server in Debian, I always have the below messages. How to make the messages disappear or fix the problem/corrupted tables?
debian:~# /etc/init.d/mysql restart
Stopping MySQL database server: mysqld.
Starting MySQL database server: mysqld.
Checking for corrupt, not cleanly closed and upgrade needing tables..
The linux /var/log/syslog
shows
Jul 18 12:27:57 localhost mysqld: 140718 12:27:57 [Note] /usr/sbin/mysqld: Normal shutdown
Jul 18 12:27:57 localhost mysqld:
Jul 18 12:27:57 localhost mysqld: 140718 12:27:57 [Note] Event Scheduler: Purging the queue. 0 events
Jul 18 12:27:57 localhost mysqld: 140718 12:27:57 InnoDB: Starting shutdown...
Jul 18 12:27:58 localhost mysqld: 140718 12:27:58 InnoDB: Shutdown completed; log sequence number 0 44233
Jul 18 12:27:58 localhost mysqld: 140718 12:27:58 [Note] /usr/sbin/mysqld: Shutdown complete
Jul 18 12:27:58 localhost mysqld:
Jul 18 12:27:58 localhost mysqld_safe: mysqld from pid file /var/run/mysqld/mysqld.pid ended
Jul 18 12:28:00 localhost mysqld_safe: Starting mysqld daemon with databases from /mnt/user/mysql
Jul 18 12:28:00 localhost mysqld: 140718 12:28:00 [Note] Plugin 'FEDERATED' is disabled.
Jul 18 12:28:00 localhost mysqld: 140718 12:28:00 InnoDB: Started; log sequence number 0 44233
Jul 18 12:28:00 localhost mysqld: 140718 12:28:00 [Note] Event Scheduler: Loaded 0 events
Jul 18 12:28:00 localhost mysqld: 140718 12:28:00 [Note] /usr/sbin/mysqld: ready for connections.
Jul 18 12:28:00 localhost mysqld: Version: '5.1.49-3~bpo50+1' socket: '/var/run/mysqld/mysqld.sock' port: 3306 (Debian)
Jul 18 12:28:01 localhost /etc/mysql/debian-start[11601]: Upgrading MySQL tables if necessary.
Jul 18 12:28:01 localhost /etc/mysql/debian-start[11605]: /usr/bin/mysql_upgrade: the '--basedir' option is always ignored
Jul 18 12:28:01 localhost /etc/mysql/debian-start[11605]: Looking for 'mysql' as: /usr/bin/mysql
Jul 18 12:28:01 localhost /etc/mysql/debian-start[11605]: Looking for 'mysqlcheck' as: /usr/bin/mysqlcheck
Jul 18 12:28:01 localhost /etc/mysql/debian-start[11605]: This installation of MySQL is already upgraded to 5.1.49, use --force if you still need to run mysql_upgrade
Jul 18 12:28:01 localhost /etc/mysql/debian-start[11611]: Checking for insecure root accounts.
Jul 18 12:28:01 localhost /etc/mysql/debian-start[11615]: Triggering myisam-recover for all MyISAM tables
do not follow the 1st answer it's a very bad issue.
If you read the line correctly you will see there is NO problem cause not corrupt table or anything else can be found
"Checking for corrupt, not cleanly closed and upgrade needing tables" so everything is ok.
Couple options which works for me. 1) find the all MySql processes running on your debian:
And if is any running, kill it:
2) other option is to start mysql with local host and typical port number for it
https://stackoverflow.com/a/11658142/2523431
3)The most savage one; uninstall mysql and reinstall (the solution found on some other post, however at the moment can't recall link to give credit): With the command:
you can delete anything related to packages named mysql. Those commands is only valid on debian / debian based linux distributions (for eg. ubuntu). You can list all mysql packages installed with:
For more cleanup for package cache you can:
Remember to:
Otherwise the "locate" command will display old data. To install mysql again, use the following command:
This will install mysql client, libmysql and its headers files. To install the server, run this one:
There are other options advised by other guys, like overwriting config file, but in my case (I'm running mysql on Kali Linux which is Debian based) didn't help.
Btw don't forget to shut system with command:
it should prevent you for further inconvenience in the future.