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’

posted on 2011-08-15 10:37  苏桓(osbert)  阅读(882)  评论(0编辑  收藏  举报

导航