Add MariaDB repository as we need v10.5 wget https://downloads.mariadb.com/MariaDB/mariadb_repo_setup chmod +x mariadb_repo_setup ./mariadb_repo_setup –mariadb-server-version=”mariadb-10.5″ apt update apt -y upgrade apt install -y mariadb-server python-pymysql Create /etc/mysql/mariadb.conf.d/99-openstack.cnf with following contents. Note : since I had enough memory in controller node set the value of buffer pool size. [mysqld] bind-address = 10.1.1.60 innodb_buffer_pool_size = 8G default-storage-engine =…
Tag: pre-requisites
Preparing nodes for openstack deployment
Have 4 physical servers behind a UTM device which also acts hosts DNS service and acts as the gateway. This device is connected to a managed switch where all the physical servers are connected. IP of the UTM device or gateway & dns-server is 10.1.1.1 All nodes except contoller node will host compute and cinder…