Ibm mobilefirst 安装分析后,我的Worklight 6.2控制台上没有运行时

Ibm mobilefirst 安装分析后,我的Worklight 6.2控制台上没有运行时,ibm-mobilefirst,Ibm Mobilefirst,我刚刚安装了Worklight 6.2服务器,使用配置工具部署了一个简单的项目,它工作正常。然后,我按照知识中心的说明安装analytics。之后,当我在浏览器中打开WL控制台时,我得到“找不到运行时”。分析似乎工作正常 我的war文件位于Liberty apps文件夹中。在我的例子中,C:\IBM\WebSphere\Liberty\usr\servers\simpleServer\apps 我尝试了下面的解决方案,但没有成功。我删除了工作区中的文件并检查了我的jdk,即jdk6_45 这是

我刚刚安装了Worklight 6.2服务器,使用配置工具部署了一个简单的项目,它工作正常。然后,我按照知识中心的说明安装analytics。之后,当我在浏览器中打开WL控制台时,我得到“找不到运行时”。分析似乎工作正常

我的war文件位于Liberty apps文件夹中。在我的例子中,C:\IBM\WebSphere\Liberty\usr\servers\simpleServer\apps

我尝试了下面的解决方案,但没有成功。我删除了工作区中的文件并检查了我的jdk,即jdk6_45

这是我的server.xml

<!-- Enable features -->
<featureManager>
    <feature>jsp-2.2</feature>

    <!-- Begin for analytics -->
    <feature>jsp-2.2</feature>
    <feature>jndi-1.0</feature>
    <!-- End for analytics -->

    <!-- Begin of features added by IBM Worklight installer. -->
    <feature>ssl-1.0</feature>
    <feature>servlet-3.0</feature>
    <feature>jdbc-4.0</feature>
    <feature>appSecurity-1.0</feature>
    <feature>jndi-1.0</feature>
    <!-- End of features added by IBM Worklight installer. -->


    <!-- Begin of features added by IBM Worklight <installWorklightAdmin> ant task for context root '/wladmin'. -->
    <feature>ssl-1.0</feature>
    <feature>servlet-3.0</feature>
    <feature>jdbc-4.0</feature>
    <feature>jndi-1.0</feature>
    <!-- <feature>restConnector-1.0</feature> -->
    <feature>appSecurity-1.0</feature>
    <!-- End of features added by IBM Worklight <installWorklightAdmin> ant task for context root '/wladmin'. -->


    <!-- Begin of features added by IBM Worklight <configureApplicationServer> ant task for context root '/worklight'. -->
    <feature>ssl-1.0</feature>
    <feature>servlet-3.0</feature>
    <feature>jdbc-4.0</feature>
    <feature>jndi-1.0</feature>
    <!-- End of features added by IBM Worklight <configureApplicationServer> ant task for context root '/worklight'. -->

</featureManager>

<httpEndpoint id="defaultHttpEndpoint"
              host="*"
              httpPort="9080"
              httpsPort="9443" >

    <!-- Option soReuseAddr added by IBM Worklight installer. -->
    <!-- Option soReuseAddr added by IBM Worklight <installWorklightAdmin> ant task for context root '/wladmin'. -->
    <!-- Option soReuseAddr added by IBM Worklight <configureApplicationServer> ant task for context root '/worklight'. -->
    <tcpOptions soReuseAddr="true"/>

</httpEndpoint>

<!-- Begin of configuration added by IBM Worklight installer. -->

<!-- Declare the IBM Application Center Console application. -->
<application id="appcenterconsole" name="appcenterconsole" location="appcenterconsole.war" type="war">
    <application-bnd>
        <security-role name="appcenteradmin">
            <group name="appcentergroup"/>
        </security-role>
    </application-bnd>
</application>

<!-- Declare the IBM Application Center Services application. -->
<application id="applicationcenter" name="applicationcenter" location="applicationcenter.war" type="war">
    <application-bnd>
        <security-role name="appcenteradmin">
            <group name="appcentergroup"/>
        </security-role>
    </application-bnd>
    <classloader delegation="parentLast">
        <commonLibrary>
            <fileset dir="${wlp.install.dir}/lib" includes="com.ibm.ws.crypto.passwordutil_1.0.1.jar"/>
        </commonLibrary>
    </classloader>
</application>

<!-- Declare the user registry for the IBM Application Center. -->
<basicRegistry id="applicationcenter-registry" realm="ApplicationCenter">
    <!--    Worklight user.
    [Added by IBM Worklight <installWorklightAdmin> Ant task for context root '/wladmin'] 
    -->
    <user name="WorklightRESTUser" password="WGFtAaW8fTma"/>

    <!-- The users defined here are members of group "appcentergroup",
         thus have role "appcenteradmin", and can therefore perform
         administrative tasks through the IBM Application Center Console. -->
    <user name="appcenteradmin" password="admin"/>

    <user name="demo" password="demo"/>
    <group name="appcentergroup">
        <member name="appcenteradmin"/>
        <member name="demo"/>
    </group>
</basicRegistry>

<!-- Declare the JNDI properties for the IBM Application Center. -->

<!-- Define the AppCenter services endpoint in order for the AppCenter console to be able to invoke the REST service.
        You need to enable this property if the server is behind a reverse proxy
        or if the context root of the Application Center Services application is different from '/applicationcenter'. -->
<!-- <jndiEntry jndiName="ibm.appcenter.services.endpoint" value='"http://proxyhost:proxyport/applicationcenter"'/> -->
<!-- The directory with binaries of the 'aapt' program, from the Android SDK's platform-tools package. -->
<jndiEntry jndiName="android.aapt.dir" value='"C:/IBM/Worklight/ApplicationCenter/tools/android-sdk"'/>
<!-- The protocol of the application resources URI. This property is optional. It is only needed if the protocol of the external and internal URI are different. -->
<!-- <jndiEntry jndiName="ibm.appcenter.proxy.protocol" value='"http"'/> -->
<!-- The hostname of the application resources URI. -->
<!-- <jndiEntry jndiName="ibm.appcenter.proxy.host" value='"proxyhost"'/> -->
<!-- The port of the application resources URI. This property is optional. -->
<!-- <jndiEntry jndiName="ibm.appcenter.proxy.port" value="proxyport"/> -->

<!-- Declare the jar files for DB2 access through JDBC. -->
<library id="DB2Lib">
    <fileset dir="${shared.resource.dir}/db2" includes="*.jar"/>
</library>

<!-- Declare the IBM Application Center database. -->
<dataSource jndiName="jdbc/AppCenterDS" transactional="false">
    <jdbcDriver libraryRef="DB2Lib"/>
    <properties.db2.jcc databaseName="APPCNTR" serverName="localhost" portNumber="50000" user="db2admin" password="db2admin"/>
</dataSource>

<!-- End of configuration added by IBM Worklight installer. -->


jsp-2.2
jsp-2.2
jndi-1.0
ssl-1.0
servlet-3.0
jdbc-4.0
appSecurity-1.0
jndi-1.0
ssl-1.0
servlet-3.0
jdbc-4.0
jndi-1.0
appSecurity-1.0
ssl-1.0
servlet-3.0
jdbc-4.0
jndi-1.0
上下文根“/wladmin”的Ant任务 此配置是创建SSL配置所需的最低配置。 通过此配置,Liberty服务器将创建密钥库和证书, 如果它还不存在,则在SSL初始化期间。 创建的证书是自签名证书,有效期为365天。 请勿使用Liberty server为生产使用而创建的证书。 有关更多信息,请参阅http://pic.dhe.ibm.com/infocenter/wasinfo/v8r5/topic/com.ibm.websphere.wlp.core.doc/ae/twlp_sec_ssl.html -->


WorklightRESTUser

Worklight仍然需要Liberty中的restConnector-1.0功能,因此您不应该对此进行注释。当restConnector功能存在时,6.2中提供的分析无法运行。您有两个选择:

选项1-下载最新的iFix。最新的iFix附带了一个分析版本,可以通过restConnector功能运行。您必须将“parentLast”类加载器声明添加到server.xml中的analytics条目中。例如:


选项2-在单独的liberty服务器上安装分析功能(推荐用于生产服务器)

上述文档将在下一个补丁包中更新


作为旁注,您确定“无运行时”错误与分析有关,而不仅仅是巧合吗?当您删除分析并颠倒安装步骤时,是否仍会出现错误?

谢谢您的回答。只要我取消对server.xml中restConnector-1.0功能的注释,worklight console就会工作。然而,现在我得到的上下文根没有找到分析。我计划尝试选项1,并将发布更新。我使用Installation Manager(更新)应用了6.2.0.0-WL-Server-IF201407191643。Worklight console很好,但当我尝试在浏览器上打开分析时,未找到上下文根。然后我在server.xml中添加了“parentLast”类加载器,Worklight Console和Analytics都被破坏(此网页不可用)。如果我删除'parentLast'类加载器,Worklight Console就可以了,但是分析再次显示未找到上下文根刚刚注意到在修复后,返回Worklight Console OK,“<administrator-role> <!-- Worklight JMX User. [Added by IBM Worklight <installWorklightAdmin> Ant task for context root '/wladmin'] --> <user>WorklightRESTUser</user> </administrator-role> <!-- Worklight JNDI property for JMX connection. [Added by IBM Worklight <installWorklightAdmin> Ant task for context root '/wladmin'] --> <jndiEntry jndiName="ibm.worklight.admin.jmx.host" value="localhost"/> <!-- Worklight JNDI property for JMX connection. [Added by IBM Worklight <installWorklightAdmin> Ant task for context root '/wladmin'] --> <jndiEntry jndiName="ibm.worklight.admin.jmx.port" value="9443"/> <!-- Worklight JNDI property for JMX connection. [Added by IBM Worklight <installWorklightAdmin> Ant task for context root '/wladmin'] --> <jndiEntry jndiName="ibm.worklight.admin.jmx.user" value="WorklightRESTUser"/> <!-- Worklight JNDI property for JMX connection. [Added by IBM Worklight <installWorklightAdmin> Ant task for context root '/wladmin'] --> <jndiEntry jndiName="ibm.worklight.admin.jmx.pwd" value="WGFtAaW8fTma"/> <!-- Worklight JNDI property for JMX connection. [Added by IBM Worklight <installWorklightAdmin> Ant task for context root '/wladmin'] --> <jndiEntry jndiName="ibm.worklight.topology.platform" value="Liberty"/> <!-- Worklight JNDI property for JMX connection. [Added by IBM Worklight <installWorklightAdmin> Ant task for context root '/wladmin'] --> <jndiEntry jndiName="ibm.worklight.topology.clustermode" value="Standalone"/> <!-- Begin of configuration added by IBM Worklight <installWorklightAdmin> ant task for context root '/wladmin'. --> <!-- Declare the Worklight Administration Service application. --> <application id="wladmin" name="wladmin" location="worklightadmin.war" type="war"> <application-bnd> <security-role name="worklightadmin"> <user name="demo"/> </security-role> <security-role name="worklightdeployer"> </security-role> <security-role name="worklightmonitor"> </security-role> <security-role name="worklightoperator"> </security-role> </application-bnd> <classloader delegation="parentLast"> <commonLibrary> <fileset dir="${wlp.install.dir}/lib" includes="com.ibm.ws.crypto.passwordutil_1.0.1.jar"/> </commonLibrary> </classloader> </application> <!-- Declare web container custom properties for the Worklight Administration Service application. --> <webContainer invokeFlushAfterService="false" deferServletLoad="false"/> <!-- Declare the JNDI properties for the Worklight Administration Service. --> <jndiEntry jndiName="wladmin/ibm.worklight.admin.environmentid" value='"Hello_Worklight_Server"'/> <!-- Declare the jar files for DB2 access through JDBC. --> <library id="wladmin/DB2Lib"> <fileset dir="${shared.resource.dir}/wladmin/db2" includes="db2jcc4.jar,db2jcc_license_cu.jar"/> </library> <!-- Declare the IBM Worklight Administration database. --> <dataSource jndiName="wladmin/jdbc/WorklightAdminDS" transactional="false"> <jdbcDriver libraryRef="wladmin/DB2Lib"/> <properties.db2.jcc databaseName="WRKLGHT" serverName="localhost" portNumber="50000" user="db2admin" password="db2admin" currentSchema="WLADMIN"/> </dataSource> <!-- Declare the Worklight Administration Console application. --> <application id="worklightconsole" name="worklightconsole" location="worklightconsole.war" type="war"> <application-bnd> <security-role name="worklightadmin"> <user name="demo"/> </security-role> <security-role name="worklightdeployer"> </security-role> <security-role name="worklightmonitor"> </security-role> <security-role name="worklightoperator"> </security-role> </application-bnd> </application> <!-- Declare web container custom properties for the Worklight Administration Console application. --> <webContainer invokeFlushAfterService="false" deferServletLoad="false"/> <!-- Declare the JNDI properties for the Worklight Administration Console. --> <jndiEntry jndiName="worklightconsole/ibm.worklight.admin.endpoint" value='"*://*:*/wladmin"'/> <!-- End of configuration added by IBM Worklight <installWorklightAdmin> ant task for context root '/wladmin'. --> <!-- Begin of configuration added by IBM Worklight <configureApplicationServer> ant task for context root '/worklight'. --> <!-- Declare the IBM Worklight project runtime application. --> <application id="worklight" name="worklight" location="HelloWorklight.war" type="war"> <classloader delegation="parentLast"> <privateLibrary> <fileset dir="${shared.resource.dir}/worklight/lib" includes="worklight-jee-library.jar"/> </privateLibrary> </classloader> </application> <!-- Declare the JNDI properties for the IBM Worklight project runtime. --> <jndiEntry jndiName="worklight/publicWorkLightProtocol" value='"http"'/> <jndiEntry jndiName="worklight/publicWorkLightPort" value='"9080"'/> <jndiEntry jndiName="worklight/ibm.worklight.admin.environmentid" value='"Hello_Worklight_Server"'/> <!-- Declare the jar files for DB2 access through JDBC. --> <library id="worklight/DB2Lib"> <fileset dir="${shared.resource.dir}/worklight/db2" includes="db2jcc4.jar,db2jcc_license_cu.jar"/> </library> <!-- Declare the IBM Worklight Server database. --> <dataSource jndiName="worklight/jdbc/WorklightDS" transactional="false"> <jdbcDriver libraryRef="worklight/DB2Lib"/> <properties.db2.jcc databaseName="WRKLGHT" serverName="localhost" portNumber="50000" user="db2admin" password="db2admin" currentSchema="WRKLGHT"/> </dataSource> <!-- Declare the IBM Worklight Server reports database. --> <dataSource jndiName="worklight/jdbc/WorklightReportsDS" transactional="false"> <jdbcDriver libraryRef="worklight/DB2Lib"/> <properties.db2.jcc databaseName="WRKLGHT" serverName="localhost" portNumber="50000" user="db2admin" password="db2admin" currentSchema="WLREPORT"/> </dataSource> <!-- For analytics --> <application context-root="/analytics" id="analytics" location="analytics.war" name="analytics" type="war"> </application> <!-- End of configuration added by IBM Worklight <configureApplicationServer> ant task for context root '/worklight'. -->
< application context-root="/analytics" id="analytics"location="analytics.war" name="analytics" type="war">
       < classloader delegation="parentLast"/>
     </ application>