Can't connect to MySQL server error 111 [closed]
Asked Answered
H

4

171

I installed mysql server on linux box IP = 192.168.1.100 but when i try to connect to this IP it alway error(111). but use localhost and 127.0.0.1 is OK.

beer@beer-laptop# ifconfig | grep "inet addr"
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet addr:192.168.1.100  Bcast:192.168.1.255  Mask:255.255.255.0

beer@beer-laptop# mysql -ubeer -pbeer -h192.168.1.100
ERROR 2003 (HY000): Can't connect to MySQL server on '192.168.1.100' (111)

beer@beer-laptop# mysql -ubeer -pbeer -hlocalhost
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 160
Server version: 5.1.31-1ubuntu2 (Ubuntu)

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql> 

beer@beer-laptop# mysql -ubeer -pbeer -h127.0.0.1
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 161
Server version: 5.1.31-1ubuntu2 (Ubuntu)

Type 'help;' or '\h' for help. Type '\c' to clear the buffer.

mysql> 

Connect from another machine it also error 111.

another@another-laptop# mysql -ubeer -pbeer -h192.168.1.100
ERROR 2003 (HY000): Can't connect to MySQL server on '192.168.1.100' (111)

How difference between use localhost/127.0.0.1 and 192.168.1.100 in this case. I don't know how to connect to this database from another machine.

Help please. Thank.

Hatching answered 14/9, 2009 at 10:47 Comment(0)
T
281

It probably means that your MySQL server is only listening the localhost interface.

If you have lines like this :

bind-address = 127.0.0.1

In your my.cnf configuration file, you should comment them (add a # at the beginning of the lines), and restart MySQL.

sudo service mysql restart

Of course, to do this, you must be the administrator of the server.

Theorem answered 14/9, 2009 at 10:53 Comment(8)
obviously, he doesn't have the skip-networking line ;-)Winograd
how to know mysql my.cnf location: #2482734Courtly
but what happens when you CAN connect to it from the mysql workbench? i have the same problem.Mulder
I followed what is given in the answer but still could not get it to work. I then figured out that the "bind-address" parameter is in the "/etc/mysql/mysql.conf.d/mysqld.cnf" file. Commented it out over there and it worked!Laney
newer versions of ubuntu >= 16.04 may have this line in /etc/mysql/mysql.conf.d/myqld.cnfFloridafloridia
shouldn't he instead replace the localhost address by 0.0.0.0?Ced
this is in /etc/mysql/mysql.conf.d/mysqld.cnf on my Ubuntu 18.1 machineButterfly
it could be a wrong port numberHynes
W
42

111 means connection refused, which in turn means that your mysqld only listens to the localhost interface.

To alter it you may want to look at the bind-address value in the mysqld section of your my.cnf file.

Winograd answered 14/9, 2009 at 10:50 Comment(6)
It's also worth checking if the port number is valid. Mismatching :3306 and :3307 can result in 111 error, too.Dangelo
@NXT, I don't even know if mysql can listen on different ports on different interfaces, but it's very unlikely scenario (given the symptoms in the original post) even if it can. Then there can be firewall rules, etc. There are many ways to achieve that, but the likelihood differs…Winograd
Doesn't always mean that. My my.cnf files do not have any bind-address or skip-networking lines, and yet I get the same error. No firewall installed either. Ran out of ideas.Goldofpleasure
Well, 111 does always mean connection refused :) And the localhost-only is in this particular case due to other evidence. If you provide more details about your case I may be able to help? Also, depending on your system nowadays you're likely to have configuration scattered across multiple files.Winograd
what if i dont have bind-address value in the mysqld ?Willtrude
Then it gets the default (no idea what it is, you can check the docs). You can add one if there isn't. Again you can check the docs to understand what you're doing prior to doing it.Winograd
S
10

If all the previous answers didn't give any solution, you should check your user privileges.

If you could login as root to mysql then you should add this:

CREATE USER 'root'@'192.168.1.100' IDENTIFIED BY  '***';
GRANT ALL PRIVILEGES ON * . * TO  'root'@'192.168.1.100' IDENTIFIED BY  '***' WITH GRANT OPTION MAX_QUERIES_PER_HOUR 0 MAX_CONNECTIONS_PER_HOUR 0 MAX_UPDATES_PER_HOUR 0 MAX_USER_CONNECTIONS 0 ;

Then try to connect again using mysql -ubeer -pbeer -h192.168.1.100. It should work.

Selfconsequence answered 12/9, 2011 at 21:55 Comment(3)
i don't think that user privileges related error would give error 111.Ahvenanmaa
It actually worked, and I was getting 111 error too.Tsai
looks like this is a better solution than opening up mysql to the entire network(s) by commenting out the 127.0.0.1 line. it should be the best solution.Imitable
L
8

If you're running cPanel/WHM, make sure that IP is whitelisted in the firewall. You will als need to add that IP to the remote SQL IP list in the cPanel account you're trying to connect to.

Letourneau answered 30/4, 2012 at 18:34 Comment(2)
A good "tell" to see if it's a firewall causing the error is that it will take quite a while for the error to be returned. If MySQL is causing problems the response should be pretty much instant.Pulido
Can you explain how this is done?Superiority

© 2022 - 2024 — McMap. All rights reserved.