我到过很多论坛,都浏览过类似主题的各种帖子,但似乎不适合我。
我已经在Ubuntu 11.10操作系统上全新安装了XAMPP 1.7.7。除phpMyAdmin外,其他所有程序都在运行。
击中:http:// localhost / phpmyadmin时,出现以下错误:
MySQL说: #2002 - The server is not responding (or the local MySQL server's socket is not correctly configured) Connection for controluser as defined in your configuration failed.
MySQL说:
#2002 - The server is not responding (or the local MySQL server's socket is not correctly configured) Connection for controluser as defined in your configuration failed.
当我使用 sudo / opt / lampp / lampp start启动服务时, 我得到以下信息:
XAMPP:另一个Web服务器守护程序已在运行。 XAMPP:另一个MySQL守护程序已在运行。 XAMPP:另一个FTP守护程序已在运行。 XAMPP for Linux已启动。
任何建议将不胜感激。
事实证明,解决方案是停止所有相关服务并解决“另一个守护程序已在运行”的问题。
我用来解决此问题的命令如下:
sudo /opt/lampp/lampp stop sudo /etc/init.d/apache2 stop sudo /etc/init.d/mysql stop
或者,您也可以键入:
sudo service apache2 stop sudo service mysql stop
之后,我们再次启动Lampp服务:
sudo /opt/lampp/lampp start
现在,打开时一定没有问题:
http://localhost http://localhost/phpmyadmin