我正在使用 glassfish 3.1(构建 43)。当我通过管理控制台或使用 asadmin deploy 命令部署应用程序时,glassfish 服务器停止并且我收到错误消息“远程服务器未侦听 [localhost:4848] 上的请求。服务器启动了吗?” (在 asadmin 命令行控制台上)和管理控制台上的错误 101(连接重置错误)。
相同的部署适用于 Windows XP 和 Windows 7。是否有任何需要配置的套接字超时设置或特定于 Windows 2008 R2 的设置?
我正在使用 glassfish 3.1(构建 43)。当我通过管理控制台或使用 asadmin deploy 命令部署应用程序时,glassfish 服务器停止并且我收到错误消息“远程服务器未侦听 [localhost:4848] 上的请求。服务器启动了吗?” (在 asadmin 命令行控制台上)和管理控制台上的错误 101(连接重置错误)。
相同的部署适用于 Windows XP 和 Windows 7。是否有任何需要配置的套接字超时设置或特定于 Windows 2008 R2 的设置?
也许您为管理访问配置了不同的端口号,而不是 4848。如果是这种情况,您必须通过以下方式在 asadmin 命令中指定端口:
asadmin deploy --port 7878 --host localhost foo.war
I figured out the root cause of the issue. While deploying the application the glassfish encountered a jvm crash. After having a look at the generated error file I found that the oracle driver installation was incorrectly done on that machine. On installing the oracle driver properly, I was able to deploy my application war file. Thanks for the reply.