Tag: 57be99f9387df20e0b9f922d
All the articles with the tag "57be99f9387df20e0b9f922d".
12 - Setup Placement API
Published: at 02:05 PMThis post is part of the Manual Deployment Openstack HA and Ceph series. Setup Placement Database (Exec on Controller-01) Create mysql database for placement mysql CREATE DATABASE placement; Grant placement user for any host access GRANT ALL PRI...
16 - Setup Nova on Controller
Published: at 12:04 PMThis post is part of the Manual Deployment Openstack HA and Ceph series. Setup Nova Database (Exec on controller-01) Create mysql database for keystone mysql CREATE DATABASE nova_api; CREATE DATABASE nova; CREATE DATABASE nova_cell0; Grant nova u...
17 - Setup Nova on Compute
Published: at 12:02 PMThis post is part of the Manual Deployment Openstack HA and Ceph series. Install and Configure nova-compute (Execute on compute nodes) Install packages apt install -y nova-compute Modify nova-compute configuration vi /etc/nova/nova.conf [DEFAUL...
Tshoot: Too many connection mariadb
Published: at 12:59 PMCause: mysql has a max_connection variable where connections to mysql cannot exceed the value of the variable. Solution: increase the value of the max_connection variable 1. Check max_connections configured mysql MariaDB [(none)]> show variables lik...
Tshoot: Remove warning cryptography openstack client
Published: at 12:54 PMThis post is part of the Manual Deployment Openstack HA and Ceph series. Solution: Downgrade cryptography python package < 3.4 apt install python3-pip pip install cryptography==3.3.2
21 - Operational Test
Published: at 12:28 PMThis post is part of the Manual Deployment Openstack HA and Ceph series. Create External Network # Create external network with type flat openstack network create --share --external \ --provider-physical-network physpro1 \ --provider-network-type...
20 - Setup Horizon Dashboard
Published: at 12:15 PMThis post is part of the Manual Deployment Openstack HA and Ceph series. Exec on All Controller Nodes Create default role for horizon openstack role create member Install horizon packages apt -y install openstack-dashboard Configure openstack-...
19 - Setup Neutron on Compute
Published: at 11:33 AMThis post is part of the Manual Deployment Openstack HA and Ceph series. Install and Configure Neutron (Exec on all compute nodes) 1. Install neutron packages apt install -y openvswitch-common ovn-common ovn-host ovn-central neutron-ovn-metadata-agen...