mirror of https://github.com/apache/cloudstack.git
adding the missing database creation file when we seperated cloud_simulator database from cloud
This commit is contained in:
parent
f9e9916d80
commit
3a3b31f7a2
|
|
@ -0,0 +1,11 @@
|
|||
DROP DATABASE IF EXISTS `cloud_simulator`;
|
||||
|
||||
CREATE DATABASE `cloud_simulator`;
|
||||
|
||||
GRANT ALL ON cloud_simulator.* to cloud@`localhost` identified by 'cloud';
|
||||
GRANT ALL ON cloud_simulator.* to cloud@`%` identified by 'cloud';
|
||||
|
||||
GRANT process ON *.* TO cloud@`localhost`;
|
||||
GRANT process ON *.* TO cloud@`%`;
|
||||
|
||||
commit;
|
||||
Loading…
Reference in New Issue