MySQL Turn on remote access

Source: Internet
Author: User

1.mysql-server only allow native (localhost, 127.0.0.1) to connect access for security reasons. This is not a problem for the site architecture of Web-server and Mysql-server on the same server. However, as the site traffic increases, the late server architecture may place web-server and mysql-server on separate servers for greater performance, at which point Mysql-server is modified to allow web-server remote connections.

2. Do not log on to the server every time to add the modified table, as long as the graphical interface can be remotely managed.

We can modify the following steps as follows:
1, login mysql-server to connect to local Mysql (only local connection is allowed by default)

2. Modify Mysql-server User Configuration

mysql> use MySQL;--switch to MySQL dbdatabase changedmysql> SELECT user, Password, Host from user;--View existing user, password and allow connection Host +------+----------+-----------+| User | Password | Host |+------+----------+-----------+|          Root | | localhost |+------+----------+-----------+1 row in Set (0.00 sec) Mysql>--only one default root user, password is empty, only localhost connection 12mys is allowed Ql>--Below we add a new root user, password is empty, only allow 192.168.1.100 connection mysql> GRANT all privileges on * * to ' root ' 192.168.1.1 "Identified by" with GRANT OPTION; Mysql>-- @ ' 192.168.1.100 ' can be replaced by the @ '% ' to any IP access , of course, we can also update the root user Host directly with update, but not recommended, SQL is as follows:mysql>-Updat E user SET host= ' 192.168.1.100 ' WHERE user= ' root ' and host= ' localhost ' LIMIT 1;
mysql> flush privileges;
Query OK, 0 rows Affected (0.00 sec)
Change Root password
mysql> use mysql
Database changed

mysql> update user setpassword=PASSWORD(‘123456‘) whereuser=‘root‘;

Query OK, 0 rows Affected (0.00 sec)
Rows matched:1 changed:0 warnings:0

mysql> flush privileges;

Query OK, 0 rows affected (0.00 sec)



MySQL Turn on remote access

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.