Tag: 57be99f9387df20e0b9f922d
All the articles with the tag "57be99f9387df20e0b9f922d".
18 - Setup Neutron on Controller
Published: at 04:06 AMThis post is part of the Manual Deployment Openstack HA and Ceph series. Setup Neutron Database (Exec on controller-01) 1. Create mysql database for neutron mysql CREATE DATABASE neutron; 2. Grant neutron user for any host access GRANT ALL PRIVILEGE...
15 - Setup Cinder on Compute
Published: at 03:50 AMThis post is part of the Manual Deployment Openstack HA and Ceph series. 1. Install cinder packages apt install -y cinder-volume 2. Modify cinder configuration vi /etc/cinder/cinder.conf [DEFAULT] debug = False use_forwarded_for = true use_stderr =...
14 - Setup Cinder on Controller
Published: at 03:46 AMThis post is part of the Manual Deployment Openstack HA and Ceph series. Setup Cinder Database (Exec on Controller-01) 1. Create mysql database for cinder mysql CREATE DATABASE cinder; 2. Grant cinder user for any host access GRANT ALL PRIVILEGES ON...
13 - Create ceph libvirt secret
Published: at 03:43 AMThis post is part of the Manual Deployment Openstack HA and Ceph series. Execute on Compute Nodes 1. Generate random uuid $ uuid 9de5fa70-0706-11ee-a8cf-d326bea0ef5d 2. Create secret file cat << EOF > /tmp/secret.xml <secret ephemeral='no' private='...
11 - Setup Glance
Published: at 08:28 PMThis post is part of the Manual Deployment Openstack HA and Ceph series. Setup Database (Exec on controller-01) 1. Create mysql database for glance mysql CREATE DATABASE glance; 2. Grant glance user for any host access GRANT ALL PRIVILEGES ON glance...
10 - Setup Keystone
Published: at 08:21 PMThis post is part of the Manual Deployment Openstack HA and Ceph series. Setup Keystone Database (Exec on controller-01) 1. Create keystone database mysql CREATE DATABASE keystone; 2. Grant keystone user for any host access GRANT ALL PRIVILEGES ON k...
09 - Setup Pacemaker Cluster
Published: at 08:16 PMThis post is part of the Manual Deployment Openstack HA and Ceph series. Preparation (Exec on all controller nodes) 1. Install pcs package apt install pacemaker corosync fence-agents pcs resource-agents -y 2. Change user hacluster password echo 'hac...
08 - Setup HAproxy
Published: at 08:12 PMThis post is part of the Manual Deployment Openstack HA and Ceph series. HAProxy is a commonly used load balancer and proxy server that can be deployed in a high-availability (HA) configuration in an OpenStack environment. It helps distribute incomin...