Mysql数据库无法使用“ loclhost”连接,但可以使用“ 127.0.0.1” Centos 7(Cloudlinux)连接]]

问题描述 投票:0回答:1

我的操作系统:Centos 7 + CLOUDLINUX 7.7当我尝试从服务器登录Mysql时

[root@server3 ~]# Mysql -u root -h localhost -P 3306  Working ok 
[root@server3 ~]# Mysql -u root -h 127.0.0.1 -P 3306  Working Ok 

但是当我在托管域“ xyz.com”上使用本地主机时,数据库主机=“本地主机”当我将其更改为数据库主机=“ 127.0.0.1”时,它将无法连接

[root@server3 ~]# cat /etc/hosts
127.0.0.1       localhost
::1             localhost localhost6.localdomain6 localhost6
[root@server3 ~]# ping localhost
PING localhost (127.0.0.1) 56(84) bytes of data.
64 bytes from localhost (127.0.0.1): icmp_seq=1 ttl=64 time=0.044 ms
64 bytes from localhost (127.0.0.1): icmp_seq=2 ttl=64 time=0.056 ms
64 bytes from localhost (127.0.0.1): icmp_seq=3 ttl=64 time=0.079 ms
64 bytes from localhost (127.0.0.1): icmp_seq=4 ttl=64 time=0.064 ms
/** MySQL hostname */
define( 'DB_HOST', 'localhost' );

任何解决方案?

我的操作系统:Centos 7 + CLOUDLINUX 7.7当我尝试从服务器登录Mysql时[root @ server3〜]#Mysql -u root -h localhost -P 3306正常[root @ server3〜]#Mysql -u root -h 127.0.0.1 -P 3306工作中...

mysql centos cpanel whm
1个回答
0
投票

MySQL使用IP地址(127.0.0.1)时通过TCP / IP连接,而在使用localhost时使用套接字文件。根据您的情况,我想您在某些特殊位置有mysql.sock,而CageFS里面没有提供。默认情况下使用/ var / lib / mysql /。

© www.soinside.com 2019 - 2024. All rights reserved.