本文介绍了MySQL的禁止,LAMPP,Xampp时在Linux上12.04的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我已经新安装我的Ubuntu 12.04(13薄荷玛雅)操作系统上的XAMPP-Linux的1.8.1。
当运行LAMPP,我得到:
I have freshly installed xampp-linux-1.8.1 on my Ubuntu 12.04 (Mint 13 maya) Operating system.When run lampp, I get :
/opt/lampp/lampp start
Starting XAMPP for Linux 1.8.1...
XAMPP: XAMPP-Apache is already running.
XAMPP: Another MySQL daemon is already running.
XAMPP: XAMPP-ProFTPD is already running.
XAMPP for Linux started.
在:本地主机/ XAMPP /
MySQL数据库被停用!
In the : localhost/xampp/MySQL DataBase is Deactivated !!!
ps -aux | grep 'mysql'
Warning: bad ps syntax, perhaps a bogus '-'? See http://procps.sf.net/faq.html mysql 3159 0.0 0.9 316264 31880 ? Ssl 16:48 0:00 /usr/sbin/mysqld
root 4745 0.0 0.0 4648 840 pts/5 S+ 17:02 0:00 grep --color=auto mysql
当我试图阻止/ usr / sbin目录/ mysqld的,但不能用这个命令停止了!
When I tried to stop /usr/sbin/mysqld but it can't be stopped with this command !!!
/usr/sbin/mysqld stop
请我需要帮助,谢谢。
推荐答案
我已经解决这样问题:
sudo chmod -R 777 /opt/lampp
sudo chown -hR nobody /opt/lampp
sudo chmod -R 755 /opt/lampp
然后停止其他mysqld的与运行:
then stop other mysqld running with:
sudo service mysql stop
这篇关于MySQL的禁止,LAMPP,Xampp时在Linux上12.04的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!