cloudstack/awsapi-setup/db/mysql/cloudbridge_db.sql
2012-05-25 14:40:35 -07:00

13 lines
343 B
SQL

SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='ANSI';
DROP DATABASE IF EXISTS cloudbridge;
CREATE DATABASE cloudbridge;
GRANT ALL ON cloudbridge.* to cloud@`localhost` identified by 'cloud';
GRANT ALL ON cloudbridge.* to cloud@`%` identified by 'cloud';
GRANT process ON *.* TO `cloud`@`localhost`;
GRANT process ON *.* TO `cloud`@`%`;
COMMIT;