简体   繁体   English

Worklight应用程序中心中的默认用户名和密码

[英]Default username and password in Worklight Application Center

Our team has installed the IBM Worklight server 6.2 in our server machine. 我们的团队已在服务器计算机中安装了IBM Worklight服务器6.2。 The installation was successful and no errors occurred. 安装成功,未发生任何错误。

Though, when we tried to go to the Worklight Application center ( localhost:8080/appcenterconsole/j_security_check ). 但是,当我们尝试转到Worklight应用程序中心( localhost:8080 / appcenterconsole / j_security_check )时。 We have tried using the usual "admin" for username and password and tried the username and password we inputted during the installation, but we still could not log in to the console. 我们已经尝试使用通常的“ admin”作为用户名和密码,并尝试了在安装过程中输入的用户名和密码,但是我们仍然无法登录到控制台。

Is there another default username and password? 还有其他默认的用户名和密码吗? Or is there a way we could find/change the username and password? 还是有一种方法可以找到/更改用户名和密码?

The info center indicates that you need explicitly to set up user/password entries for App Center. 信息中心指示您需要明确设置 App Center的用户/密码条目

Check in your server.xml if this has been done, and if so you'll see entries like this: 检查您的server.xml是否已完成,如果这样做,您将看到类似以下的条目:

<security-role name="appcenteradmin">
  <group name="appcenteradmingroup"/>
</security-role>
<security-role name="appcenteruser">
  <group name="appcenterusergroup"/>
</security-role>


<basicRegistry id="appcenter">
  <user name="admin" password="admin"/>
  <user name="guest" password="guest"/>
  <user name="demo" password="demo"/>
  <group name="appcenterusergroup">
        <member name="guest" />
        <member name=" demo" />
  </group>
  <group name="appcenteradmingroup">
        <member name="admin" id=”admin"/>
  </group>
</basicRegistry>

If you don't have them then this explains why admin/admin is not working for you. 如果您没有它们,那么这说明了admin / admin对您不起作用的原因。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM