mirror of
https://github.com/processone/ejabberd.git
synced 2024-10-31 15:21:38 +01:00
b73b139f24
Suggest specifying 'localhost' as host name part of the MySQL test account name. Otherwise, the anonymous user that is usually created by default for 'localhost' would take precedence for local connections due to the more specific host name. |
||
---|---|---|
.. | ||
ejabberd_SUITE_data | ||
ejabberd_SUITE.erl | ||
ldap_srv.erl | ||
README | ||
suite.erl | ||
suite.hrl |
You need MySQL and PostgreSQL up and running. MySQL should be accepting TCP connections on localhost:3306. PostgreSQL should be accepting TCP connections on localhost:5432. Both of them should grant full access to user 'ejabberd_test' with password 'ejabberd_test' on database 'ejabberd_test'. Here is a quick setup example: $ psql template1 template1=# CREATE USER ejabberd_test WITH PASSWORD 'ejabberd_test'; template1=# CREATE DATABASE ejabberd_test; template1=# GRANT ALL PRIVILEGES ON DATABASE ejabberd_test TO ejabberd_test; $ mysql mysql> CREATE USER 'ejabberd_test'@'localhost' IDENTIFIED BY 'ejabberd_test'; mysql> CREATE DATABASE ejabberd_test; mysql> GRANT ALL ON ejabberd_test.* TO 'ejabberd_test'@'localhost';