During the development process, I often encounter problems with remote access to MySQL. I need to search every time, which feels too troublesome. I record it here so that I can check it later. First, access the local mysql (log in to the terminal using ssh and enter the following command): After entering the password to log in, enter the following statement: use mysql; grant all privileges on *.* to 'user'@'%' identified by 'password' with grant option; in: user is the user name The default for mysql is root Password is the password you set yourself % represents any host, you can also specify an IP address This allows any remote host to access it. Example: That is, allow 192.168.1.100 to log in as the root user without a password. Okay, that’s all, hope it helps you. You may also be interested in:
|
<<: Solution to the problem that docker nginx cannot be accessed after running
Table of contents 1. Introduction 2. Understand t...
background I want to check the webpack version, b...
I encountered a sql problem at work today, about ...
CSS background: background:#00ffee; //Set the back...
Use js to control the light switch for your refer...
The ps command in Linux is the abbreviation of Pr...
This article shares the specific code for impleme...
Table of contents 1. Constructor and instantiatio...
The order in which the browser loads and renders H...
I installed redis today and some errors occurred ...
After installing MySQL, you will find that the ro...
What is HTTP Compression Sometimes, relatively la...
1. Design source code Copy code The code is as fol...
First: via text/HTML var txt1="<h1>Tex...
Table of contents 1. Lock and Latch 2. Repeatable...