目录

Another web server is already running.

目录

当需要调整xampp apache 端口的时候,而且当这时候80端口又被占用的时候,去 start , restart apache的时候就会出现如下错误:

1
XAMPP:  Another web server is already running.

就算是改了 httpd.conf 也是没毛用的,因为 lampp 程序依然会检查 80 端口是否占用……

编辑文件, lampp根目录 lampp nano /opt/lampp/lampp 嗯,还是nano用的舒服。

1
2
3
4
5
if testport 80
	then
		$GETTEXT -s "fail."
		echo "XAMPP: " $($GETTEXT 'Another web server is already running.')
		return 1

if testport 80

把这个端口改成你想改的其他端口吧!

比如我用nginx 转发, 所有apache 用了 8080。