-1

一个奇怪的问题。
我使用eclipse在java中创建了一个应用程序,其中数据是从数据库中检索的,但在第二行它停止响应并且本地主机服务器也停止响应......

Class.forName("com.mysql.jdbc.Driver");
Connection con=DriverManager.getConnection("jdbc:mysql://127.0.0.1:8080/testdb/", "root","");

通过调试我注意到eclipse调用了这个exe

c:\program files\java\jre7\bin\javaw.exe

但它没有响应。
apache 服务器启动但没有响应。
它会生成这个错误文件
Apache error.log

Command line: 'C:\\PROGRA~1\\EASYPH~1.1\\Apache\\bin\\apache.exe -d C:/Program Files/EasyPHP-12.1/apache'
[Wed Oct 03 16:27:03.579034 2012] [mpm_winnt:notice] [pid 6776:tid 464] AH00418: Parent: Created child process 5576
[Wed Oct 03 16:27:04.392034 2012] [mpm_winnt:notice] [pid 5576:tid 472] AH00354: Child: Starting 64 worker threads.
[Wed Oct 03 16:27:08.094034 2012] [mpm_winnt:notice] [pid 7088:tid 476] AH00364: Child: All worker threads have exited.
[Wed Oct 03 16:52:36.275034 2012] [mpm_winnt:warn] [pid 5576:tid 700] (OS 64)The specified network name is no longer available.  : AH00341: winnt_accept: Asynchronous AcceptEx failed
4

1 回答 1

2

我会检查 MySQL 是否正在侦听端口 8080。默认值为 3306。您是否将 MySQL 守护程序设置为侦听端口 8080?

于 2012-10-03T11:54:42.390 回答