openfire登陆问题

学习openfire时安装不困难,我是在Ubuntu上安装的,但登陆http://localhost:9090管理后台时要注意

1:在conf/openfire.xml里要加上admin用户,否则系统无法登陆

<jive>
  <admin>
    <authorizedUsernames>amidn</authorizedUsernames>
  </admin>
   <adminConsole> 
    <!-- Disable either port by setting the value to -1 -->  
    <port>9090</port>  
    <securePort>9091</securePort> 
  </adminConsole>

2:更改数据库中admin用户的密码

update ofUser set plainPassword=’123456′, encryptedPassword = null where username =’admin’

你可能感兴趣的:(openfire)