我正在探索Portal Express 8.5,并且能够登录到cw_profile的管理控制台,但不能登录到wp_profile。在Portal Express 8版本中,我们可以使用https://:10032 / ibm / console / logon.jsp。这不适用于8.5版本。 请帮忙。
答案 0 :(得分:3)
通常在安装期间分配端口,因此它们可能会根据系统上已安装的内容而有所不同。您可以通过检查serverindex.xml来检查服务器本身的配置。该文件位于 wp_profile / config / cells // nodes /
在此文件中,您可以检查 WC_adminhost 和 WC_adminhost_secured 。这两个元素为您提供有关管理控制台使用的端口的信息。
我检查过的文件就像这样
<specialEndpoints xmi:id="NamedEndPoint_1430250971397" endPointName="WC_defaulthost">
<endPoint xmi:id="EndPoint_1430250971397" host="*" port="10039"/>
</specialEndpoints>
...
<specialEndpoints xmi:id="NamedEndPoint_1430250971399" endPointName="WC_adminhost_secure">
<endPoint xmi:id="EndPoint_1430250971399" host="*" port="10032"/>
</specialEndpoints>