|
>>Or, more directly:
>>
>> telnet 127.0.0.0 3306
>>
>
>You meant 127.0.0.1
>
>If MySQL is not listening, is skip-networking in the [mysqld] section of
>my.cnf (or some other file your initscript may load) possibly set?
>
>>From my 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
If you telnet to 127.0.0.1 3306 you should get a hello from the mysql server:
root mail:~# telnet localhost 3306
Trying 127.0.0.1...
Connected to localhost.localdomain.
Escape character is '^]'.
<
4.0.24_Debian-10ubuntu2-log>ð7)d<Ap3H
if not, then something's wrong.
|