Introduction: Sometimes, in order to develop a project, we need to deploy a MySql database server on a server, and then use a local computer to remotely access and manage the MySql database. So how do we implement remote login to MySql? 1. Use the command line to remotely log in to the MySql database First, you need to create a user on the remote database (it is not recommended to use the root user) and grant the user the permission to log in remotely. You can refer to my other tutorial "MySql Complete Guide - Adding New Users, Creating Databases for Users, and Assigning Permissions to Users". The blog address is click to open the link. It should be noted here that if the MySql server is deployed on Ubuntu, you need to modify the parameters in its configuration file my.cnf and use # in front to comment out "bind-adress=127.0.0.1", which means that the database server only allows local access. Note: The location of the configuration file is generally /etc/my.cnf or /etc/MySQL/my.cnf # Instead of skip-networking the default is now to listen only on # localhost which is more compatible and is not less secure. #bind-address = 127.0.0.1 #Comment this line to log in remotely 2. Use the Workbench tool to log in remotely (1) Click the plus sign to add a new connection (2) Complete the operation according to the red font prompts (3) Click "Store in Vault" in the above picture, enter the password, and then click "OK" (4) Click "Test Connection" in step 2 to test the connection, and then click "OK" to complete the new connection. (If the test fails, don't worry, see the following common reasons for connection failure) (5) You can see that the "AliyunService" in the figure below is a newly created connection. Click it to connect. If the connection fails, there are many reasons. Make corrections one by one. Common reasons for connection failure: (1) Whether the username and password are correct; (2) Does the user have remote connection permissions? If not, grant authorization is required. Please read my other tutorial and click to open the link. (3) Is the port correct? Has it been changed to another port instead of the default 3306? (4) If the server you are using is Alibaba Cloud ECS, have you configured the security group rules? Have you configured the security group rules? Have you configured the security group rules? Have you opened the connection port (the default is 3306)? If not, please read the following tutorial A. Find the security group B. Click "Configure Rules" C. Add security group rules D. Fill in the information E. Restart the Alibaba Cloud server (generally, if you modify the ECS configuration in the Alibaba Cloud console, you need to restart it for the configuration information to take effect) Well, that’s all for this blog. If you find this tutorial useful, I hope you will support it. This concludes this article on how to implement remote login to the MySql database process analysis with MySql. For more related content on remote login to the MySql database with MySql, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Docker container monitoring and log management implementation process analysis
>>: How to set npm to load packages from multiple package sources at the same time
Preface Normally, if we want to delete certain li...
First of all, we need to understand that GB2312, ...
Knowing that everyone's time is precious, I w...
Table of contents Block-level functions Directly ...
mysql-5.7.9 finally provides shutdown syntax: Pre...
Page directory structure Note that you need to mo...
Refer to the tutorial on setting up FTP server in...
flex layout Definition: The element of Flex layou...
Ubuntu 16.04 installs the PHP7.0 environment by d...
Take MySQL 5.7.19 installation as an example, fir...
Xiaobai learned about Vue, then learned about web...
<meta http-equiv="X-UA-Compatible" c...
In desperation, I suddenly thought, how is the Sin...
Today, when I was using Nginx, a 500 error occurr...
1. docker ps -a view the running image process [r...