GlassFish 4无法部署

时间:2018-05-05 18:37:56

标签: java eclipse glassfish

我在Eclipse中使用GlassFish4进行Java动态Web开发。 GlassFish无法再部署我的项目。我已经在stackoverflow和互联网上尝试了几种方法来修复它。

我甚至无法通过localhost:4848访问管理控制台。我看到了glassfish控制台的表面,但它显示“状态:管理控制台应用程序尚未安装。”

这是我的错误:

 [2018-05-05T20:28:14.580+0200] [glassfish 4.1] [INFO] [NCLS-CORE-00093] [javax.enterprise.system.core] [tid: _ThreadID=104 _ThreadName=Thread-23] [timeMillis: 1525544894580] [levelValue: 800] [[
  Problem while attempting to install admin console!
org.jvnet.hk2.config.TransactionFailure: A ApplicationRef with the same key "__admingui" already exists in Server server
    at org.jvnet.hk2.config.ConfigSupport._apply(ConfigSupport.java:209)
    at org.jvnet.hk2.config.ConfigSupport.apply(ConfigSupport.java:139)
    at com.sun.enterprise.v3.admin.adapter.InstallerThread.install(InstallerThread.java:166)
    at com.sun.enterprise.v3.admin.adapter.InstallerThread.run(InstallerThread.java:99)
Caused by: java.lang.IllegalArgumentException: A ApplicationRef with the same key "__admingui" already exists in Server server
    at org.jvnet.hk2.config.WriteableView$ProtectedList.add(WriteableView.java:648)
    at com.sun.enterprise.v3.admin.adapter.InstallerThread$1.run(InstallerThread.java:161)
    at org.jvnet.hk2.config.ConfigSupport._apply(ConfigSupport.java:180)
    ... 3 more
]] 

我感谢各种帮助。

1 个答案:

答案 0 :(得分:1)

我假设您正在使用glassfish应用程序服务器的本地实例。在安装之前,您可以检查是否符合GF 4.1 Release Notes中列出的要求。

您可以采取的另一个操作是使用您的installation-directory / bin 文件夹中的asadmin verify-domain-xml命令验证domain.xml配置文件的完整性

您说您无法访问管理控制台,但您的服务器是否正在运行? (http://localhost:8080/)。

您还可以查看server.log以获取有关正在发生的事情的更多提示,您可以在 installation-directory / domains / domain-name / logs 中找到这些提示,或者尝试做a manual deployment via asadmin,看看会发生什么。