Connecting to mysql from 127.0.0.1 instead of from localhost

I have similar problem as here. The problem is that solution proposed there does not work for me:

Just for now I have users:

+----------+------------------------------------+
| user     | host                               |
+----------+------------------------------------+
| root     | 127.0.0.1                          |
| root     | localhost                          |

both without passwords (just for now. I know it is bad!).

I'm connecting to mysql using this command:

mysql -u root -h 127.0.0.1 --protocol=tcp

After I logged in, I get:

mysql -u root -h 127.0.0.1 --protocol=tcp
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 5
Server version: 5.1.61-log Source distribution

Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> \s
--------------
mysql  Ver 14.14 Distrib 5.1.61, for redhat-linux-gnu (x86_64) using readline 5.1

Connection id:      5
Current database:   
Current user:       root@localhost
SSL:            Not in use
Current pager:      stdout
Using outfile:      ''
Using delimiter:    ;
Server version:     5.1.61-log Source distribution
Protocol version:   10
Connection:     127.0.0.1 via TCP/IP
Server characterset:    latin1
Db     characterset:    latin1
Client characterset:    latin1
Conn.  characterset:    latin1
TCP port:       3306
Uptime:         2 days 9 hours 2 min 13 sec

Threads: 1  Questions: 102  Slow queries: 0  Opens: 19  Flush tables: 1  Open tables: 12  Queries per second avg: 0.0
--------------

mysql> SELECT USER(),CURRENT_USER();
+----------------+----------------+
| USER()         | CURRENT_USER() |
+----------------+----------------+
| root@localhost | root@localhost |
+----------------+----------------+
1 row in set (0.00 sec)

mysql> 

QUESTION:

How to login as 'root'@127.0.0.1?


Solution 1:

Good evening, it's @RolandoMySQLDBA, the author of that post you mentioned.

Look at the last three lines

Server version:     5.1.61-log Source distribution
Protocol version:   10
Connection:     127.0.0.1 via TCP/IP

The last line says 127.0.0.1 via TCP/IP so you are 100% using the TCP/IP protocol.

Did you run SELECT USER(),CURRENT_USER(); ?

If you did, it should say

[email protected] | [email protected]

It would seem weird for the output to be

[email protected] | root@localhost

Please notice the following: Since both root users have identical grants and identical passwords (none in this case), mysqld decided to pick root@localhost. At this point, you are probably wondering, "Why would mysqld make such a choice ?"

In the DBA StackExchange, I have this 2-year-old post (MySQL error: Access denied for user 'a'@'localhost' (using password: YES)). In that past, I describe exactly how mysqld peforms user authentication. Note the paragraphs from pages 486,487 of MySQL 5.0 Certification Study Guide

There are two stages of client access control:

In the first stage, a client attempts to connect and the server either accepts or rejects the connection. For the attempt to succeed, some entry in the user table must match the host from which the clent connects, the username, and the password.

In the second stage (which occurs only if a client has already connected sucessfully), the server checks every query it receives from the client to see whether the client has sufficient privileges to execute it.

The server matches a client against entries in the grant tables based on the host from which the client connects and the user the client provides. However, it's possible for more than one record to match:

As I mentioned from the Certification Book, it's possible for more than one record to match. Therefore, mysqld made the choice.

If you delete root@localhost from mysql.user, that's one way to get SELECT USER(),CURRENT_USER(); to match. Another way is to give [email protected] a password.

SUMMARY

Having 2 root users with identical means of being used for user authentication is the root cause as to why you cannot see [email protected]. Notwithstanding, you are using TCP/IP.

SIDE NOTE

Please make sure 127.0.0.1 is defined in the OS. Run this:

cat /etc/hosts | grep -c "127\.0\.0\.1"

If you get 0, then the OS does not know about it. You would need to add 127.0.0.1 to /etc/hosts and restart the network and then mysql.

UPDATE 2014-04-26 20:00 EDT

What I am about to say may sound silly, but the Documentation uses TCP instead of tcp

On Unix, MySQL programs treat the host name localhost specially, in a way that is likely different from what you expect compared to other network-based programs. For connections to localhost, MySQL programs attempt to connect to the local server by using a Unix socket file. This occurs even if a --port or -P option is given to specify a port number. To ensure that the client makes a TCP/IP connection to the local server, use --host or -h to specify a host name value of 127.0.0.1, or the IP address or name of the local server. You can also specify the connection protocol explicitly, even for localhost, by using the --protocol=TCP option. For example:

shell> mysql --host=127.0.0.1
shell> mysql --protocol=TCP

The --protocol option enables you to establish a particular type of connection even when the other options would normally default to some other protocol.

Try using protocol=TCP like this

mysql -u root -h 127.0.0.1 --protocol=TCP -ANe"SELECT USER(),CURRENT_USER()"
mysql -u root -h localhost --protocol=TCP -ANe"SELECT USER(),CURRENT_USER()"

to see if it makes a difference.

UPDATE 2014-05-09 16:19

You need to look over the /etc/hosts carefully

If you see this in /etc/hosts

127.0.0.1   localhost localhost.localdomain localhost4 localhost4.localdomain4
::1         localhost localhost.localdomain localhost6 localhost6.localdomain6

then logging in as [email protected] should work properly

If you see this in /etc/hosts

127.0.0.1       localhost

then [email protected] stands no chance of working