Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
#!/bin/bash
max_attempts=120
function wait_db(){
db_host=$1
db_port=$2
attempt=0
echo "Wait until $max_attempts seconds for MySQL mano Server ${db_host}:${db_port} "
while ! mysqladmin ping -h"$db_host" -P"$db_port" --silent; do
#wait 120 sec
if [ $attempt -ge $max_attempts ]; then
echo
echo "Can not connect to database ${db_host}:${db_port} during $max_attempts sec"
return 1
fi
attempt=$[$attempt+1]
echo -n "."
sleep 1
done
return 0
}
function is_db_created() {
db_host=$1
db_port=$2
db_user=$3
db_pswd=$4
db_name=$5
RESULT=`mysqlshow -h"$db_host" -P"$db_port" -u"$db_user" -p"$db_pswd" | grep -v Wildcard | grep -o $db_name`
if [ "$RESULT" == "$db_name" ]; then
echo "DB $db_name exists"
return 0
else
echo "DB $db_name does not exist"
return 1
fi
}
KEYSTONE_IP=`ifconfig eth0 | grep -Eo 'inet (addr:)?([0-9]*\.){3}[0-9]*' | grep -Eo '([0-9]*\.){3}[0-9]*'`
wait_db "$DB_HOST" "$DB_PORT" || exit 1
is_db_created "$DB_HOST" "$DB_PORT" "$ROOT_DB_USER" "$ROOT_DB_PASSWORD" "keystone" && DB_EXISTS="Y"
if [ -z $DB_EXISTS ]; then
mysql -h"$DB_HOST" -P"$DB_PORT" -u"$ROOT_DB_USER" -p"$ROOT_DB_PASSWORD" --default_character_set utf8 -e "CREATE DATABASE keystone"
mysql -h"$DB_HOST" -P"$DB_PORT" -u"$ROOT_DB_USER" -p"$ROOT_DB_PASSWORD" --default_character_set utf8 -e "GRANT ALL PRIVILEGES ON keystone.* TO 'keystone'@'localhost' IDENTIFIED BY '$KEYSTONE_DB_PASSWORD'"
mysql -h"$DB_HOST" -P"$DB_PORT" -u"$ROOT_DB_USER" -p"$ROOT_DB_PASSWORD" --default_character_set utf8 -e "GRANT ALL PRIVILEGES ON keystone.* TO 'keystone'@'%' IDENTIFIED BY '$KEYSTONE_DB_PASSWORD'"
fi
# Setting Keystone database connection
sed -i "721s%.*%connection = mysql+pymysql://keystone:$KEYSTONE_DB_PASSWORD@$DB_HOST:$DB_PORT/keystone%" /etc/keystone/keystone.conf
# Setting Keystone tokens
sed -i "2934s%.*%provider = fernet%" /etc/keystone/keystone.conf
# Populate Keystone database
if [ -z $DB_EXISTS ]; then
su -s /bin/sh -c "keystone-manage db_sync" keystone
fi
# Initialize Fernet key repositories
keystone-manage fernet_setup --keystone-user keystone --keystone-group keystone
keystone-manage credential_setup --keystone-user keystone --keystone-group keystone
# Bootstrap Keystone service
if [ -z $DB_EXISTS ]; then
keystone-manage bootstrap --bootstrap-password "$ADMIN_PASSWORD" \
--bootstrap-admin-url http://"$KEYSTONE_IP":5000/v3/ \
--bootstrap-internal-url http://"$KEYSTONE_IP":5000/v3/ \
--bootstrap-public-url http://"$KEYSTONE_IP":5000/v3/ \
--bootstrap-region-id RegionOne
fi
# Restart Apache Service
service apache2 restart
# Create NBI User
if [ -z $DB_EXISTS ]; then
openstack user create --domain default --password "$NBI_PASSWORD" nbi
openstack project create --domain defaul --description "Service Project" service
openstack role add --project service --user nbi admin
fi
while [ $(ps -ef | grep -v grep | grep apache2 | wc -l) -ne 0 ]
do
sleep 60
done
exit 1