我试图访问phpmyadmin,但发生了这种情况
MySQL said: Documentation
Cannot connect: invalid settings.
mysqli_real_connect(): (HY000/2002): No such file or directory
Connection for controluser as defined in your configuration failed.
mysqli_real_connect(): (HY000/2002): No such file or directory
phpMyAdmin tried to connect to the MySQL server, and the server rejected the connection. You should
check the host, username and password in your configuration and make sure that they correspond to
the information given by the administrator of the MySQL server.
apache和mysql正在运行,我的网站出现如下错误
Warning: session_start(): open(/opt/lampp/temp//sess_ku01nv1mbiroo8btvpbqjv47f7, O_RDWR) failed: Permission denied (13) in /opt/lampp/htdocs/sisfo/index.php on line 2
有人知道怎么解决这个问题吗?
发布于 2020-05-02 11:45:22
mysqli_real_connect(): (HY000/2002): No such file or directory
phpmyadmin似乎试图连接到mysql套接字(这个套接字并不存在?)。您可以尝试将config.inc.php
中的主机从localhost
更改为127.0.0.1
。
Warning: session_start(): open(...) failed: Permission denied (13)
您可能对临时文件夹具有错误的权限/所有权。在您的shell中尝试以下命令:
chmod 777 /opt/lampp/temp
chown -R 33:33 /opt/lampp/temp
https://stackoverflow.com/questions/61554144
复制相似问题