test/README: Create MySQL test user on 'localhost'

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.
This commit is contained in:
Holger Weiss 2014-05-04 01:02:22 +02:00
parent 806c0e56e1
commit b73b139f24
1 changed files with 2 additions and 2 deletions

View File

@ -12,6 +12,6 @@ template1=# CREATE DATABASE ejabberd_test;
template1=# GRANT ALL PRIVILEGES ON DATABASE ejabberd_test TO ejabberd_test;
$ mysql
mysql> CREATE USER ejabberd_test IDENTIFIED BY 'ejabberd_test';
mysql> CREATE USER 'ejabberd_test'@'localhost' IDENTIFIED BY 'ejabberd_test';
mysql> CREATE DATABASE ejabberd_test;
mysql> GRANT ALL ON ejabberd_test.* TO ejabberd_test;
mysql> GRANT ALL ON ejabberd_test.* TO 'ejabberd_test'@'localhost';