Http请求CEP

时间:2015-10-05 16:49:15

标签: fiware complex-event-processing

我通过官方文档https://forge.fiware.org/plugins/mediawiki/wiki/fiware/index.php/CEP_GE_-_IBM_Proactive_Technology_Online_Installation_and_Administration_Guide

安装了CEP(Proton)

之后,我观看了推荐视频以了解有关CEP的更多信息。 https://edu.fiware.org/pluginfile.php/653/mod_resource/content/1/CEP-Tutorial.mp4

但是我无法检查引擎实例状态,因为响应中出现此错误:Could not read instance state, message: Error activating jmx proxy:

1 个答案:

答案 0 :(得分:2)

似乎没有正确配置JMX。 如installation guide中所述,在Apache Tomcat用户配置文件中,您需要添加manager-jmx角色,并将其添加到管理器用户名:

<tomcat-users>
  ...
  <role rolename="manager-jmx" />
  <user username="manager" password="manager" roles="manager-gui,manager-status,manager-script,manager-jmx" /> 
  ...
</tomcat-users>

您需要在Apache Tomcat上启用JMX访问,方法是将其添加到CATALINA_OPTS,如installation guide中所述。

您还需要在ProtonAdmin.properties文件中指定JMX服务端口,如同installation guide中所述。