Commit Graph

5 Commits

Author SHA1 Message Date
Sameer Naik
1453ebc8ac switch to harpoon installer 2016-02-16 12:02:43 -08:00
Sameer Naik
5dadafae35 fix creation of replication user for 10.x releases
Creating a replication user (in the `GRANT` statement) without a
password errors out on upcoming 10.x releases.

For example,

```sql
GRANT REPLICATION SLAVE ON *.* TO 'replication'@'%' IDENTIFIED BY '';
```

emits the error `ERROR 1133 (28000): Can't find any matching row in the
user table`.

To resolve this we user the `CREATE` statement to the user.

eg.

```sql
CREATE USER 'replication'@'%' IDENTIFIED BY '';
GRANT REPLICATION SLAVE ON *.* TO 'replication'@'%';
```
2016-02-16 11:52:08 -08:00
Sameer Naik
5725653c6f set default value of MARIADB_MASTER_USER to root
Refer #34
2016-01-30 12:23:18 +05:30
Sameer Naik
50a5090e3c tests: Can't setup replication master without replication user 2015-11-04 21:11:59 +05:30
Sameer Naik
9847548f1f moved bitnami-utils-custom.sh and entrypoint.sh to rootfs/ directory 2015-10-08 19:23:45 +05:30