如何使用 openfire.xml 配置 Openfire 以使用自定义数据库?
我尝试了 Openfire 文档中的本指南,但没有我的更改似乎已被应用。即使我将用户名设置为管理员,我也无法以自定义数据库中的任何用户身份登录。我是否需要手动将所有更改应用于存储在数据库(Openfire 的 ofProperty
表)中的系统属性?
我还想知道是否有办法阻止或自定义 Openfire 将添加哪些表到我的数据库中。
I tried out this guide from the Openfire documentation but none of my changes seem to have been applied. I can't login as any of the user from my custom database even if I set user names as admin. Do I need to manually apply all the changes to the system properties stored in the database (Openfire's ofProperty
table)?
I'd also like to know if there's a way to prevent or customize which tables Openfire will add to my database.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是我设置外部数据库(在我的例子中是 MySQL)的方法:
假设您有一个正在运行的 Openfire 实例,您应该停止服务器并编辑 openfire.xml
只需添加false < /code> 因此,下次打开 Web 界面时,您将被引导至设置页面,您可以在其中选择并设置数据库服务器。
从 Openfire 安装目录中,从 /resources/database 复制 SQL 查询(为您的特定数据库选择一个,在我的例子中我使用
openfire_mysql.sql
)当然您需要设置权限。
从那里,我只需按照向导操作,在设置数据库时将信息放入输入字段中,例如我在 phpMyAdmin 权限中设置的 IP 地址、用户名和密码。一切都应该在几分钟内启动并运行。
如果您在从 Web 界面设置数据库时遇到错误,请尝试检查您的数据库服务器 MySQL 端口是否打开(3306)。如果没有,请执行一些 sudo iptables 操作。
希望这有帮助。
Here's what I did to setup external database (in my case MySQL):
Assuming that you have a running Openfire instance, you should stop the server and edit the openfire.xml
Just add
<setup>false</setup>
so next time you open the web interface you will be directed to the setup page which will allow you to select and setup your database server.From Openfire install directory copy the SQL query from /resources/database (choose the one for your specific database, in my case I used
openfire_mysql.sql
)Of course you need to setup privileges.
From there I just followed the wizard and put the information in the input fields when setting up the database, like IP address, username and password that I have setup in the privileges in phpMyAdmin. Everything should be up and running within minutes.
In case you get error when setting up the database from the web interface, try to check if your database server MySQL port is open, its 3306. Do some
sudo iptables
if its not.Hope this helps.