准备工作

首先,业务系统中需存在用户认证相关信息表以便集成。

create table im_user
(
    member_id bigint null,
    mobile varchar(255) null,
    email varchar(255) null,
    username varchar(255) null,
    password varchar(255) null,
    create_time timestamp null
)

更改 ofproperty 表

系统默认验证类:
image
Openfire 提供了 MySQL 数据库的验证类,路径为 org.jivesoftware.openfire.auth.JDBCAuthProvider,以及用户相关的操作类 org.jivesoftware.openfire.user.JDBCUserProvider,我们可以通过新建相关属性、更改验证方式和用户相关操作来达到使用已有 MySQL 数据库表的目的。

执行以下 SQL 语句新建系统属性(同样可以在管理页面操作):

insert  into `myopenfire`.ofproperty(name,propValue)values
('admin.authorizedJIDs','admin@localhost'),
('jdbcProvider.driver','com.mysql.jdbc.Driver'),
('jdbcProvider.connectionString','jdbc:mysql://192.168.53.61:3306/myopenfire?user=test&password=test&rewriteBatchedStatements=true&useUnicode=true&characterEncoding=utf8'),
('jdbcAuthProvider.passwordSQL','SELECT password FROM im_user WHERE mobile=?'),
('jdbcAuthProvider.passwordType','plain'),
('jdbcUserProvider.loadUserSQL','SELECT username,email FROM im_user WHERE mobile=?'),
('jdbcUserProvider.userCountSQL','SELECT COUNT(*) FROM im_user'),
('jdbcUserProvider.allUsersSQL','SELECT username FROM im_user'),
('jdbcUserProvider.usernameField','username'),
('jdbcUserProvider.nameField','mobile'),
('jdbcUserProvider.emailField','email');

将系统属性更改为以上两个类即可。

admin.authorizedJIDs 属性即管理员账户名称,@ 后是初始配置的域,必须带上,并且 im_user 表中必须有 admin 相关的验证信息才能登录管理页面。

参考:官方文档

Last modification:December 8, 2018
If you think my article is useful to you, please feel free to appreciate