当前位置: 技术问答>java相关
为什么我启动J2EE server 时有错?
来源: 互联网 发布时间:2015-10-16
本文导语: 为什么我运行j2ee.bat -verbose时会出现以下的信息: …… J2EE server reported the following error: Could not initialize j2ee server. Possible cause could be another instance of the server already running. 我该怎么办??是不是已经运...
为什么我运行j2ee.bat -verbose时会出现以下的信息:
……
J2EE server reported the following error: Could not initialize j2ee server. Possible cause could be another instance of the server already running.
我该怎么办??是不是已经运行了,可localhost:8000/什么都没有啊。
……
J2EE server reported the following error: Could not initialize j2ee server. Possible cause could be another instance of the server already running.
我该怎么办??是不是已经运行了,可localhost:8000/什么都没有啊。
|
是不是有其它的JAVA进程在运行!?
再说PETSTORE要自己安装的!
再说PETSTORE要自己安装的!
|
确定端口没有被其他程序占用
|
谢谢各位大虾,该问题已得到解决.原因和解决方法如下:
J2EE起动的默认端口为:1050
如果起动J2EE时出现"Could not initialize j2ee server. Possible cause could be another instance of the server already running."错误提示.
请按owenyang朋友所说在dos中用 netstat -a 看看端口使用情况,这时你会发现1050已被占用.再按waterdragonfly和lionet777朋友所指打开文件%J2EE_HOME%configorb.properties,把port=1050改为一个没有在使用的端口,保存后重启J2EE即可也!
谢谢给于帮助的各位朋友!
J2EE起动的默认端口为:1050
如果起动J2EE时出现"Could not initialize j2ee server. Possible cause could be another instance of the server already running."错误提示.
请按owenyang朋友所说在dos中用 netstat -a 看看端口使用情况,这时你会发现1050已被占用.再按waterdragonfly和lionet777朋友所指打开文件%J2EE_HOME%configorb.properties,把port=1050改为一个没有在使用的端口,保存后重启J2EE即可也!
谢谢给于帮助的各位朋友!
|
在dos中用 netstat -a 看看端口使用情况
|
重启机器