mirror of
https://github.com/ceph/ceph
synced 2024-12-20 18:33:44 +00:00
b09d85d7ab
A set of scripts used to bring up an OpenStack instance on one site, connect a ceph cluster, add pools to store OpenStack glance images, cinder volumes, nova vms, and cinder backups on rbd, and bring up a nova compute node.
14 lines
402 B
Bash
Executable File
14 lines
402 B
Bash
Executable File
#!/bin/bash -fv
|
|
#
|
|
# start the Openstack services
|
|
#
|
|
sudo cp /root/keystonerc_admin ./keystonerc_admin
|
|
sudo chmod 0644 ./keystonerc_admin
|
|
source ./keystonerc_admin
|
|
sudo service httpd stop
|
|
sudo service openstack-keystone restart
|
|
sudo service openstack-glance-api restart
|
|
sudo service openstack-nova-compute restart
|
|
sudo service openstack-cinder-volume restart
|
|
sudo service openstack-cinder-backup restart
|