OpenStack之数据库创建脚本

#!/bin/bash

for db in keystone glance nova neutron cinder swift heat 
do
        mysql -e "create database $db;" 
        mysql -e "grant all privileges on ${db}.* to '${db}'@'localhost' identified by '`echo ${db} | tr '[a-z]' '[A-Z]'`_DBPASS';" 
        mysql -e "grant all privileges on ${db}.* to '${db}'@'10.1.%.%' identified by '`echo ${db} | tr '[a-z]' '[A-Z]'`_DBPASS';" 
done


本文出自 “Happy实验室” 博客,谢绝转载!

你可能感兴趣的:(mysql,shell,数据库脚本)