我正在使用带有 ejabberd 的 exauth 来验证我的用户,但我想使用 mysql 来存储用户信息,例如 GROUPS、名册等。
这是我的配置。
{auth_method, external}.
{extauth_program, "/home/hitesh/ejabberd_auth.php"}.
{host_config, "subdomain.nodyssey.com", [{auth_method, [external, anonymous]}]}.
{odbc_server, {mysql, "localhost","ejabberd", "root", "root"}}.
mysql数据库是空的!用户在群聊中仍然有花名册和聊天记录,所以看起来 mnesia 数据库正在被使用!我如何为此切换到mysql?
我究竟做错了什么?