Install and configure mysql on CentOS7

Source: Internet
Author: User

Install and configure mysql on CentOS7
Installation 1. The default software source for CentOS7 does not contain mysql. You must first add the mysql repo source.

wget http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm
2. Use rpm to install the software package just downloaded
rpm -ivh mysql-community-release-el7-5.noarch.rpm
3. Install yum
yum install mysql-server
4. Start mysql
systemctl start mysql
Configuration 1. Modify the root password
mysqladmin -u root password "newpassword"
2. Local Login
   mysql -u root -p

If an error occurs

ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2)

Please refer to [solution] ERROR 2002 (HY000): Can't connect to local MySQL server

3. Add a remote user
GRANT ALL PRIVILEGES ON *.* for 'username'@'%' IDENTIFIED BY 'password' WITH GRANT OPTION;FLUSH PRIVILEGES;
4. Open Port 3306
/sbin/iptables -I INPUT -p tcp --dport 3306 -j ACCEPT

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.