diff options
Diffstat (limited to 'test/README')
-rw-r--r-- | test/README | 32 |
1 files changed, 4 insertions, 28 deletions
diff --git a/test/README b/test/README index 99e5eec12..de1a96aa2 100644 --- a/test/README +++ b/test/README @@ -1,11 +1,9 @@ -You need MySQL, PostgreSQL and Riak up and running. +You need MySQL, PostgreSQL and Redis up and running. MySQL should be accepting TCP connections on localhost:3306. PostgreSQL should be accepting TCP connections on localhost:5432. -Riak should be accepting TCP connections on localhost:8087. +Redis should be accepting TCP connections on localhost:6379. MySQL and PostgreSQL should grant full access to user 'ejabberd_test' with password 'ejabberd_test' on database 'ejabberd_test'. -Riak should be configured with leveldb as a database backend and -pz -should be pointed to the directory with ejabberd BEAM files. Here is a quick setup example: @@ -16,6 +14,7 @@ $ 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; +$ psql ejabberd_test -f sql/pg.sql ------------------- MySQL @@ -24,27 +23,4 @@ $ 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'; - -------------------- - Riak -------------------- -$ cat /etc/riak/vm.args -... -## Map/Reduce path --pz /path/to/ejabberd/ebin -... - -For version < 2.x: - -$ cat /etc/riak/app.config: -... - {riak_kv, [ - {storage_backend, riak_kv_eleveldb_backend}, -... - -For version >= 2.x: - -$ cat /etc/riak/riak.conf: -... -storage_backend = leveldb -... +$ mysql ejabberd_test < sql/mysql.sql |