#!/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
时间: 2024-11-18 21:05:35