Add prerequisites for Keep server described in
[arvados.git] / docker / warehouse / config_mysqld.sh.in
1 #! /bin/sh
2
3 /etc/init.d/mysql start
4 mysql <<EOF
5 create database warehouse;
6 grant all privileges on warehouse.* to warehouse@'%';
7 set password for warehouse@'%' = password('@@WAREHOUSE_MYSQL_PW@@');
8 EOF
9 /etc/init.d/mysql stop