Remote Access to Mysql on Linux

Source: Internet
Author: User


Remote Access to Mysql on Linux solution Description: the server is deployed in the Debian system and can use Mysql normally on the server side. However, when remotely connecting to Mysql, the system prompts errors such as 10061, and so on.
Solution: 1. Modify/etc/init. d/my. in the cnf file, change "bind-address = 127.0.0.1" to "bind-address = 0.0.0.0" to allow all IP addresses to access www.2cto.com 2, modify the user table using mysql-u root-p <ENTER> ENTER the password use mysql <ENTER> select user, host from user; <ENTER> the following result is displayed: using mysql> select user, host from user; + ------------------ + ----------- + | user | host | + ------------------ + ----------- + | Root | 127.0.0.1 | root | debian-sys-maint | localhost | root | localhost | + ------------------ + ----------- + 4 rows in set (0.00 sec) www.2cto.com modify localhost in the last line to % update user set host = "%" where user = "roor" and host = "localhost"; <ENTER> 3, restart mysql service/etc/init. d/mysql restart <ENTER> solution: After configuring the preceding steps, the remote test can connect to the database and. Author Magoo

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.