安装后无法访问 Zend Server 5 CE
我之前在 Windows 上安装了 WAMP,现在我尝试安装 Zend Server 5 CE 5.3.1 Win x86。
在安装Zend Server的过程中,有一个步骤询问:
- web服务器端口:80
- zend服务器接口端口:10081
我保持默认。安装完成后,我尝试访问 http://localhost, 能够看到 zend 测试页面。但我无法访问 http://localhost:10081/ZendServer,它被声明为 page未找到
。
我的WAMP和Zend Server有冲突吗?我记得在尝试访问 ZS 之前停止了 WAMP 的 apache。有人可以告诉我如何修复它吗?
谢谢。
I have previously installed WAMP on my windows, and now I am trying to install Zend Server 5 CE 5.3.1 Win x86.
During the installation of Zend Server, there is a step asking about:
- web server port : 80
- zend server interface port : 10081
I kept to the default. After the installation, I tried to access http://localhost,and is able to see zend test page. But I am unable to access http://localhost:10081/ZendServer, it was stated as page not found
.
Is it a conflict of my WAMP and the Zend Server? I remembered stopping the apache for WAMP, before trying to access ZS. Could anyone please advise me how to fix it?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我也有同样的问题。看起来另一个应用程序已经在使用端口 10081。
为了找出哪个应用程序正在使用端口 10081,我使用了以下命令(在终端中)。这将为您提供应用程序的 PID(最后一列):
netstat -ano |find /i "builted"
然后,我使用了 Windows 任务管理器 (Ctrl+Alt+Del)。转到“进程”选项卡。然后查看/列菜单并勾选 PID。您应该能够通过 PID 找到该应用程序。
就我个人而言,使用该端口的是我的防病毒软件 McAfee。
I'm having the same problem. It looked like another application was already using the port 10081.
To find out which application was using the port 10081 I used the following command (in a terminal). This will give you the PID (last column) of the application:
netstat -ano |find /i "established"
Then, I used the Windows Task Manager (Ctrl+Alt+Del). Go to the "Processes" tab. Then View/Columns menu and tick PID. You should be able to locate the application with the PID.
Personally, it was my antivirus, McAfee, who was using that port.
最简单的解决方案可能是彻底卸载 WAMP 和 Zend Server,然后安装 Zend Server。另一方面,可能另一个(不相关的)进程已经在使用端口 10081,因此您也可以检查这一点(例如使用 netstat)——检查日志文件也可以帮助找出这一点。
The easiest solution will probably be to cleanly uninstall both WAMP and Zend Server and afterwards just install Zend Server. On the other hand, it could be that another (unrelated) process is already using port 10081, so you might check that as well (using netstat for example) - checking the log files could help in finding this out as well.