Commit b6574385 authored by Łukasz Nowak's avatar Łukasz Nowak

- as mysql listens on 0.0.0.0, this command needs to connect ro

   127.0.0.1


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@39229 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent b533fe2c
...@@ -145,7 +145,7 @@ $ bin/supervisord # 6 ...@@ -145,7 +145,7 @@ $ bin/supervisord # 6
Also, we need databases in the mysql server that correspond to both the ERP5 Also, we need databases in the mysql server that correspond to both the ERP5
instance we're going to create, and the testrunner we will want to run: instance we're going to create, and the testrunner we will want to run:
$ var/bin/mysql -u root $ var/bin/mysql -h 127.0.0.1 -u root
mysql> create database development_site; mysql> create database development_site;
mysql> grant all privileges on development_site.* to 'development_user'@'localhost' identified by 'development_password'; mysql> grant all privileges on development_site.* to 'development_user'@'localhost' identified by 'development_password';
mysql> grant all privileges on development_site.* to 'development_user'@'127.0.0.1' identified by 'development_password'; mysql> grant all privileges on development_site.* to 'development_user'@'127.0.0.1' identified by 'development_password';
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment