The difference between MySQL database host 127.0.0.1 and localhost

The difference between MySQL database host 127.0.0.1 and localhost

Many of my friends may encounter a problem and don’t know what the difference is between 127.0.0.1 and localhost. However, sometimes they find that they cannot connect using localhost, but they can connect by changing to 127.0.0.1. So what is the difference between them? Let me introduce them to you.

  1. When you use mysql -h 127.0.0.1, you use TCP/IP to connect. MySQL server thinks that the connection comes from 127.0.0.1 or "localhost.localdomain".
  2. When you use mysql -h localhost, it does not use TCP/IP connection, but uses Unix socket; at this time, mysql server thinks that the client is from "localhost"
  3. "localhost" in MySQL permission management has a specific meaning:

Note: Although the two connection methods are different, when localhost is the default 127.0.0.1, the permission records used by both connection methods are the following 1.row records (because the record comes first and is matched first)

*************************** 1. row *************************** 
Host: localhost 
User: root 
...... 
*************************** 2. row *************************** 
Host: 127.0.0.1 
User: root

prove:

shell>mysql -h 127.0.0.1 
mysql> status; 
Currentuser: root@localhost 
SSL: Not used 
Current pager: stdout 
Using outfile: '' 
Using delimiter: ; 
Server version: 5.1.33-log Source distribution 
Protocol version: 10 
Connection: 127.0.0.1 via TCP/IP 
shell> mysql -h locahostmysql> status; 
Currentuser: root@localhost 
SSL: Not used 
Current pager: stdout 
Using outfile: '' 
Using delimiter: ; 
Server version: 5.1.33-log Source distribution 
Protocol version: 10 
Connection: Localhost via UNIX socket

Find the problem

Yesterday, when I was helping my colleague compile and install the Linux environment, I encountered a problem:

The web server is apache and the database is MySQL.

So I wrote a PHP page to test the connection to the database:

$mysql = mysql_connect('localhost','root','');

Open http://localhost/test.php to test

Tip: Can't connect to local MySQL server through socket...

Check that the environment is normal

I thought the database was not started, so I checked the process and found MySQL was in the process, so I restarted MySQL.

Use mysql -u root -p to enter the MySQL operation interface

Directly use /usr/local/php5/bin/php /web/test.php to execute and connect to the database

I restarted apache, but it didn't work.

Question: Why the web page execution failed, but the command execution succeeded

This is very frustrating. It succeeds when I execute it directly using the PHP command, but fails when I execute it through the web page. Is it caused by apache? I searched a lot of information online but couldn't find a solution. The problem still exists after recompiling and installing Apache.

Changing localhost to 127.0.0.1 succeeded

After changing localhost to 127.0.0.1, the connection was successful. I began to think in a dilemma: why did localhost fail but 127.0.0.1 succeed?

Ping localhost address is 127.0.0.1

Open hosts and join

127.0.0.1 qttc

Using qttc as the host connection is normal, but it does not recognize localhost.

Different localhost connection methods lead to

In order to understand the difference between filling in localhost and other hosts when PHP connects to the database, I read a lot of information and finally learned:

When the host is filled in as localhost, MySQL will use unix domain socket connection

When the host is filled in as 127.0.0.1, MySQL will use TCP to connect

This is a feature of the Linux socket network. Windows platforms will not have this problem.

Workaround

Add in the [mysql] section of my.cnf

protocol=tcp

Summarize

The above is the difference between MySQL database host 127.0.0.1 and localhost introduced by the editor. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

You may also be interested in:
  • Perfect solution to the problem that MySQL cannot connect to the database through localhost
  • Solution to the problem that MySQL can connect using localhost but cannot connect using IP
  • The difference between mysql_connect localhost and 127.0.0.1 (network layer explanation)
  • How to solve the problem of unsuccessful connection to Mysql using localhost in PHP
  • php mysql localhost, 127.0.0.1 and ip difference
  • Does the % in the newly created MySQL user include localhost?

<<:  Detailed explanation of Nginx timed log cutting

>>:  Summarize the problems encountered in using Vue Element UI

Recommend

Encapsulate a simplest ErrorBoundary component to handle react exceptions

Preface Starting from React 16, the concept of Er...

Solution to the img tag problem below IE10

Find the problem I wrote a simple demo before, bu...

Xftp download and installation tutorial (graphic tutorial)

If you want to transfer files between Windows and...

How to install docker on centos

Here we only introduce the relatively simple inst...

Vue + OpenLayers Quick Start Tutorial

Openlayers is a modular, high-performance and fea...

idea combines docker to realize image packaging and one-click deployment

1. Install Docker on the server yum install docke...

Detailed explanation of monitoring NVIDIA GPU usage under Linux

When using TensorFlow for deep learning, insuffic...

Installation, configuration and use of process daemon supervisor in Linux

Supervisor is a very good daemon management tool....

How to migrate mysql storage location to a new disk

1. Prepare a new disk and format it with the same...

The latest 36 high-quality free English fonts shared

01. Infinity Font Download 02. Banda Font Download...

my.cnf parameter configuration to optimize InnoDB engine performance

I have read countless my.cnf configurations on th...

12 Javascript table controls (DataGrid) are sorted out

When the DataSource property of a DataGrid control...

Vue implements zip file download

This article example shares the specific code of ...

Vue realizes the function of uploading photos on PC

This article example shares the specific code of ...