Reinstall MySQL in Linux

Source: Internet
Author: User
Tags php and mysql

MySQL always reports an error, saying that the sock file does not exist. There are several methods on the Internet to change the permissions and change the configuration file. The. sock file still cannot be generated normally. No way. Delete and reinstall.

Delete all:

Delete mysql
Sudo apt-get autoremove -- purge mysql-server-5.0
Sudo apt-get remove mysql-server
Sudo apt-get autoremove mysql-server
Sudo apt-get remove mysql-common // This is very important
Some of the above are actually redundant.

Clean residual data

Dpkg-l | grep ^ rc | awk '{print $2}' | sudo xargs dpkg-P but the created database file still exists, and can still be used after re-installation.
Install mysql

Sudo apt-get install mysql-serversudo apt-get install mysql-clientsudo apt-get install php5-mysql // The installation php5-mysql is to connect php and mysql once installation is complete, the MySQL server should be started automatically. Run the following command at the terminal prompt to check whether the MySQL server is running: sudo netstat-tap | grep mysql when you run this command, you can see lines similar to the following:

Tcp 0 0 localhost. localdomain: mysql *: * LISTEN-
If the server cannot run properly, run the following command to start it:

Sudo/etc/init. d/mysql restart
Go to mysql

$ Mysql-uroot-p administrator password

Configure the MySQL administrator password:

Sudo mysqladmin-u root password newpassword

Okay, it's done.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.