另外一个服务已经启动....
我估计刚才是删除了lampp文件夹,并没有停止服务,问怎样才能删掉第一次安装时的服务,如mysql,apache,
[root@localhost lampp]# /opt/lampp/lampp start
Starting XAMPP for Linux 1.7...
XAMPP: Another web server daemon is already running.
XAMPP: Another MySQL daemon is already running.
XAMPP: Another FTP daemon is already running.
XAMPP for Linux started.
用下面方法解决:
查看这些服务到底有没有运行
lsof -i:80
lsof -i:3306
lsof -i:21
lsof -i:80
lsof -i:3306
lsof -i:21
找到哪个在运行后用下面命令:
pkill httpd
pkill mysql
pkill ftp
pkill mysql
pkill ftp

本文介绍了解决XAMPP服务无法正常停止的问题。通过使用lsof命令检查80、3306和21端口的状态来确认服务是否仍在运行。针对运行中的服务,提供了具体的终止命令,包括pkill httpd、pkill mysql和pkill ftp。
1072

被折叠的 条评论
为什么被折叠?



