我使用 XAMPP/Apache 已经有一段时间了,最近决定安装 MySQL。然而,它们似乎是矛盾的。 MySQL 似乎优先考虑,并且它运行正常,但是 XAMPP/Apache 在尝试启动 Apache 时给了我这个错误消息:
03:07:32 AM [Apache] Attempting to start Apache app...
03:07:33 AM [Apache] Status change detected: running
03:07:33 AM [Apache] Status change detected: stopped
03:07:33 AM [Apache] Error: Apache shutdown unexpectedly.
03:07:33 AM [Apache] This may be due to a blocked port, missing dependencies,
03:07:33 AM [Apache] improper privileges, a crash, or a shutdown by another method.
03:07:33 AM [Apache] Press the Logs button to view error logs and check
03:07:33 AM [Apache] the Windows Event Viewer for more clues
03:07:33 AM [Apache] If you need more help, copy and post this
03:07:33 AM [Apache] entire log window on the forums
我尝试按照此处的说明进行操作:http: //www.complete-concrete-concise.com/web-tools/how-to-change-the-apache-port-in-xampp
我已经尝试更改文档:xampp/apache/conf 中的 httpd.conf
将“Listen 80”更改为各种内容,重新启动应用程序后,我出现了相同的错误消息。
非常感谢您在此问题上的任何帮助。我不希望仅仅为了使用 XAMPP 而删除 mySQL,但如果它们无法同时运行,我会这样做。
提前致谢。
编辑:
我认为它与 MySQL 冲突的原因是:
03:26:51 AM [mysql] Problem detected!
03:26:51 AM [mysql] Port 3306 in use by ""C:\Program Files\MySQL\MySQL Server 5.6\bin\mysqld.exe" --defaults-file="C:\ProgramData\MySQL\MySQL Server 5.6\my.ini" MySQL56"!
03:26:51 AM [mysql] MySQL WILL NOT start without the configured ports free!
03:26:51 AM [mysql] You need to uninstall/disable/reconfigure the blocking application
03:26:51 AM [mysql] or reconfigure MySQL and the Control Panel to listen on a different port
我在暂时禁用 mySQL 以使用 XAMPP/Apache 时遇到了一些困难。有什么办法可以改变端口,使它们可以共存?
编辑2:
尝试按照此处的说明进行操作:http: //silentlyrun.blogspot.com.au/2013/02/how-to-change-apache-n-mysql-port-for.html
我在之后遇到这些错误消息:
09:13:22 AM [main] Initializing Modules
09:13:22 AM [Apache] Problem detected!
09:13:22 AM [Apache] Port 80 in use by "Unable to open process" with PID 4084!
09:13:22 AM [Apache] Apache WILL NOT start without the configured ports free!
09:13:22 AM [Apache] You need to uninstall/disable/reconfigure the blocking application
09:13:22 AM [Apache] or reconfigure Apache and the Control Panel to listen on a different port
09:13:22 AM [Apache] Problem detected!
09:13:22 AM [Apache] Port 443 in use by "Unable to open process" with PID 4084!
09:13:22 AM [Apache] Apache WILL NOT start without the configured ports free!
09:13:22 AM [Apache] You need to uninstall/disable/reconfigure the blocking application
09:13:22 AM [Apache] or reconfigure Apache and the Control Panel to listen on a different port
有了这些说明,新端口应该相同吗?我假设是因为他们最初都是 80 岁。
4. Search the string "Listen" in the file.
5. Replace port number 80 to any other unused port number.
6. Search for "ServerName" in the file.
7. Replace port number 80 to any other unused port number in the ServerName.
编辑 3:
由于我不知道的原因,XAMPP/MySQL 在从上面的silentlyrun.blogspot 链接重新安装和端口更改后可以正常工作。但是 XAMPP/Apache 仍然存在问题:
09:32:14 AM [Apache] Error: Apache shutdown unexpectedly.
09:32:14 AM [Apache] This may be due to a blocked port, missing dependencies,
09:32:14 AM [Apache] improper privileges, a crash, or a shutdown by another method.
09:32:14 AM [Apache] Press the Logs button to view error logs and check
09:32:14 AM [Apache] the Windows Event Viewer for more clues
09:32:14 AM [Apache] If you need more help, copy and post this
09:32:14 AM [Apache] entire log window on the forums
原文由 carlvdm 发布,翻译遵循 CC BY-SA 4.0 许可协议
我正在为那些发现这个问题并想要一个更好更快的解决方案的人回答这个问题。
提示: 键入“m”以加快搜索速度。
我的猜测是,当您关闭 xampp 而不停止正在运行的服务器时,xampp 不会自动停止这些服务器并且它们仍然在后台运行。
但是,当您再次打开 xampp 时,它无法识别这些正在进行的进程并认为它们阻塞了端口。