Direct client access between MySQL LAN colleagues

Source: Internet
Author: User
Tags mysql command line

Scene:

Several people develop a project as a team, with my machine as the server, the MySQL service installed on my machine, other small partners with the client can access my database

Solve:

First of all:

1. Set MySQL to allow other machine connections (Linux environment, this setting is required, different versions of Windows require selective modification can be)
#vi/etc/mysql/my.cnf
Comment out the bind-address=127.0.0.1, the front plus #
   2. Authorize other machine operation database (Quite important)
Go to MySQL command line operation
Mysql-uRoot-P123456(123456 is password)
Mysql>grant all privileges the database name . * to [email protected]"%" identified by "123456"; 123456 is password
The database name is modified based on the actual database name accessed, or you can set all databases with * instead of
So that the other machines can access the specified database.

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.