WebSphere 8.5:缺少ESB。如何与WebSphere一起启动它

WebSphere 8.5:缺少ESB。如何与WebSphere一起启动它,websphere,websphere-8,websphere-esb,Websphere,Websphere 8,Websphere Esb,我安装了BPM: ./imcl install \ com.ibm.bpm.ESB.v85_8.6.0.20170918_1207, \ com.ibm.websphere.ND.v85_8.5.5012.20170627_1018 \ -repositories /u01/tmp/BPM/repository/repos_64bit/repository.config \ -acceptLicense \ -installationDirectory /u01/apps/IBM/B

我安装了BPM:

 ./imcl install \
 com.ibm.bpm.ESB.v85_8.6.0.20170918_1207, \
 com.ibm.websphere.ND.v85_8.5.5012.20170627_1018 \
 -repositories /u01/tmp/BPM/repository/repos_64bit/repository.config \
 -acceptLicense \
 -installationDirectory /u01/apps/IBM/BPM \
 -properties user.wasjava=java8 \
 -showVerboseProgress -log silentinstall.log
然后我创建了部署管理配置文件:

./manageprofiles.sh  \
-create \
-adminPassword XXXXXXX \
-profileName Dmgr06 \
-cellName Cell03 \
-serverType DEPLOYMENT_MANAGER \
-adminUserName wasadmin \
-enableAdminSecurity true \
-nodeName CellManager03 \
-profilePath /u01/apps/IBM/BPM/profiles/Dmgr06 \
-personalCertValidityPeriod 15 \
-signingCertValidityPeriod 15 \
-keyStorePassword XXXXXXXX \
-templatePath /u01/apps/IBM/BPM/profileTemplates/management/ \
-startingPort 10000 \
-isDefault
在此之后,我运行startManager.sh命令。我希望看到WebSphere和ESB启动并运行,但我只看到WebSphere:


如何添加ESB?

您应该使用BPMConfig命令配置环境,而不是直接使用manageprofiles。非常感谢。您能给我一个如何使用BPMConfig for deployment manager概要文件的示例吗?