gpt4 book ai didi

linux - JADE 在代理调用时在 64 位 Linux 上执行时挂起

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:32:10 25 4
gpt4 key购买 nike

我遇到了一个棘手的问题,我希望我可以向社区请求一些帮助......

我有一个 Ubuntu 12.04LTS 64 位 linux 服务器,我在上面运行一个 JADE 实例(没有 gui),它创建一个容器并连接到主 RMA我的本地机器就好了。我看到容器弹出,生活很好。问题是当我使用 Agent 重新调用同一实例时 - 它挂起。注意:我已经在 64 位机器上使用与我的工作站 (windows) 上相同的 Java (8) 版本重新编译了 PingAgent 示例。是 32 位还是 64 位,还是 Linux 上的 Jade 有问题?

如有任何帮助,我们将不胜感激......

具体情况如下:

很好的实例(没有代理,没有挂):

运行:

versaggi@drools:/usr/local/jade$ java -classpath lib/jade.jar:classes jade.Boot -container -local-host 50.116.61.17 -host versaggi.game-host.org -port 1099

结果:

Aug 12, 2014 7:35:42 PM jade.core.Runtime beginContainer 
INFO: ----------------------------------
This is JADE 4.3.2 - revision 6708 of 2014/03/28 15:19:44
downloaded in Open Source, under LGPL restrictions,
at http://jade.tilab.com/
----------------------------------------
Aug 12, 2014 7:35:42 PM jade.imtp.leap.LEAPIMTPManager initialize
INFO: Listening for intra-platform commands on address:
- jicp://50.116.61.17:1099

Aug 12, 2014 7:35:43 PM jade.core.BaseService init
INFO: Service jade.core.management.AgentManagement initialized
Aug 12, 2014 7:35:43 PM jade.core.BaseService init
INFO: Service jade.core.messaging.Messaging initialized
Aug 12, 2014 7:35:43 PM jade.core.BaseService init
INFO: Service jade.core.resource.ResourceManagement initialized
Aug 12, 2014 7:35:43 PM jade.core.BaseService init
INFO: Service jade.core.mobility.AgentMobility initialized
Aug 12, 2014 7:35:43 PM jade.core.BaseService init
INFO: Service jade.core.event.Notification initialized
Aug 12, 2014 7:35:43 PM jade.core.AgentContainerImpl joinPlatform
INFO: --------------------------------------
Agent container Container-7@50.116.61.17 is ready.
--------------------------------------------

错误实例(代理包含在调用中,挂起....)

versaggi@drools:/usr/local/jade$ java -classpath lib/jade.jar:classes jade.Boot -container -local-host 50.116.61.17 -host versaggi.game-host.org -port 1099  -**agents** ping1:examples.PingAgent.PingAgent


Aug 12, 2014 7:34:25 PM jade.core.Runtime beginContainer
INFO: ----------------------------------
This is JADE 4.3.2 - revision 6708 of 2014/03/28 15:19:44
downloaded in Open Source, under LGPL restrictions,
at http://jade.tilab.com/
----------------------------------------
Aug 12, 2014 7:34:25 PM jade.imtp.leap.LEAPIMTPManager initialize
INFO: Listening for intra-platform commands on address:
- jicp://50.116.61.17:1099

Aug 12, 2014 7:34:26 PM jade.core.BaseService init
INFO: Service jade.core.management.AgentManagement initialized
Aug 12, 2014 7:34:26 PM jade.core.BaseService init
INFO: Service jade.core.messaging.Messaging initialized
Aug 12, 2014 7:34:26 PM jade.core.BaseService init
INFO: Service jade.core.resource.ResourceManagement initialized
Aug 12, 2014 7:34:26 PM jade.core.BaseService init
INFO: Service jade.core.mobility.AgentMobility initialized
Aug 12, 2014 7:34:26 PM jade.core.BaseService init
INFO: Service jade.core.event.Notification initialized

**< *** HANGS HERE ***>**

**< *** KILLED FROM RAM HERE ***>**

Aug 12, 2014 7:34:36 PM jade.imtp.leap.NodeSkel executeCommand
WARNING: Error serving H-Command jade.core.management.AgentManagement/8: java.lang.NullPointerException
Aug 12, 2014 7:34:36 PM jade.core.messaging.MessageManager shutdown
INFO: MessageManager shutting down ...
Aug 12, 2014 7:34:36 PM jade.core.Runtime$1 run
INFO: JADE is closing down now.

最佳答案

我已经确定了问题的根源,但没有解决方案,很可能是因为这个问题的解决方案可能不存在。

JADE 容器最终会及时完成(在超时期限后),但代理不会被实例化(请参阅下面的粗体错误消息)。

问题是我在防火墙后面的本地 PC 上的私有(private)地址 10.0.0.12 端口 1099 上实例化主容器。远程容器在公共(public) Linux 服务器上实例化,该服务器实际上通过我本地路由器中 1099 规则的端口转发到 10.0.0.12 的 IP。

真正的问题出现是因为主容器控制远程容器,因此代理决定代理通信必须通过 10.0.0.12 端口 1099 并将其传送到公共(public) linux 服务器上的远程容器,后者立即尝试通过 10.0.0.12 端口 1099 实例化代理通信...并因此超时。

在调用 JAVA 时调用选项“-host 24.228.171.118 -port 1099”实际上指向我的路由器,它执行端口转发 - 它不是启动主容器的 PC 的 IP。

看来这个特定的设置本身并不能很好地工作....

你在这里看到问题......

如果有一个配置选项我可以用来改变这个(任何人都知道)我将不胜感激....

.

versaggi@drools:/usr/local/jade$ java -classpath lib/jade.jar:classes jade.Boot -container -local-host 50.116.61.17 -host 24.228.171.118 -port 1099  -agents ping1:examples.PingAgent.PingAgent

.

Aug 13, 2014 1:08:20 PM jade.core.Runtime beginContainer
INFO: ----------------------------------
This is JADE 4.3.2 - revision 6708 of 2014/03/28 15:19:44
downloaded in Open Source, under LGPL restrictions,
at http://jade.tilab.com/
----------------------------------------
Aug 13, 2014 1:08:21 PM jade.imtp.leap.LEAPIMTPManager initialize
INFO: Listening for intra-platform commands on address:
- jicp://50.116.61.17:1099

Aug 13, 2014 1:08:21 PM jade.core.BaseService init
INFO: Service jade.core.management.AgentManagement initialized
Aug 13, 2014 1:08:21 PM jade.core.BaseService init
INFO: Service jade.core.messaging.Messaging initialized
Aug 13, 2014 1:08:21 PM jade.core.BaseService init
INFO: Service jade.core.resource.ResourceManagement initialized
Aug 13, 2014 1:08:21 PM jade.core.BaseService init
INFO: Service jade.core.mobility.AgentMobility initialized
Aug 13, 2014 1:08:21 PM jade.core.BaseService init
INFO: Service jade.core.event.Notification initialized

.

  • 2014 年 8 月 13 日下午 1:12:36 jade.core.AgentContainerImpl启动引导代理

    严重:无法创建代理 ping1:无法访问远程对象 - 原因通过:ICPException 将命令传送到地址jicp://10.0.0.12:1099。 - 原因:创建连接时出错。 -原因:连接超时

.

Aug 13, 2014 1:12:36 PM jade.core.AgentContainerImpl joinPlatform
INFO: --------------------------------------
Agent container Container-3@50.116.61.17 is ready.
--------------------------------------------

.

关于linux - JADE 在代理调用时在 64 位 Linux 上执行时挂起,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25276897/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com