-
Recent Posts
- Openstack installation : Create Provider / Self service Networks
- Openstack installation : Block storage – Cinder (on Compute Node)
- Openstack installation : Block Storage – Cinder (On Controller Node)
- Openstack installation : Dashboard – Horizon
- Openstack installation : Networking service – Neutron (On Compute Node)
- Openstack installation : Networking service – Neutron (On Controller Node)
- Openstack installation : Compute Service – Nova (On Compute Node)
- Openstack installation : Compute Service – Nova (On Controller Node)
- Openstack installation : Image Services – Glance.
- Openstack installation : Keystone (Authentication Services)
- Openstack installation : Minimal services and Controller – Pre-requisites
- Openstack installation : Installing OS, configure pre-requisites and install openstack client
- Openstack Installation : My Requirements
- Debian – Qualcom 6174 Wifi not working
- Spring 5 REST / GraphDB : Installing ArangoDB
Archives
-
Recent Posts
- Openstack installation : Create Provider / Self service Networks
- Openstack installation : Block storage – Cinder (on Compute Node)
- Openstack installation : Block Storage – Cinder (On Controller Node)
- Openstack installation : Dashboard – Horizon
- Openstack installation : Networking service – Neutron (On Compute Node)
Monthly Archives: February 2019
Openstack installation : Create Provider / Self service Networks
Content from “openstack.org”, listed here with minor/no changes – just noting down what I did – online notes.
Posted in Installation / How To, Notes
Tagged 18.04, bionic, install, openstack, provider and self service networks, Rocky, ubuntu
Comments Off on Openstack installation : Create Provider / Self service Networks
Openstack installation : Block storage – Cinder (on Compute Node)
Content from “openstack.org”, listed here with minor/no changes – just noting down what I did – online notes. Wanted to get rid of all partition info in /dev/sdb so that I can use it for block storage. #dd if=/dev/zero of=/dev/sdb … Continue reading
Posted in Installation / How To, Notes
Tagged 18.04, bionic, cinder, compute-node, install, openstack, Rocky, ubuntu
Comments Off on Openstack installation : Block storage – Cinder (on Compute Node)
Openstack installation : Block Storage – Cinder (On Controller Node)
Content from “openstack.org”, listed here with minor/no changes – just noting down what I did – online notes. Create database, service credentials, and API endpoints. CREATE DATABASE cinder;GRANT ALL PRIVILEGES ON cinder.* TO ‘cinder’@’localhost’ IDENTIFIED BY ‘{password}’;GRANT ALL PRIVILEGES ON … Continue reading
Posted in Installation / How To, Notes
Tagged 18.04, bionic, cinder, controller-node, install, openstack, Rocky, ubuntu
Comments Off on Openstack installation : Block Storage – Cinder (On Controller Node)
Openstack installation : Dashboard – Horizon
Content from “openstack.org”, listed here with minor/no changes – just noting down what I did – online notes. Install the packages apt install –assume-yes openstack-dashboard Edit the /etc/openstack-dashboard/local_settings.py file and complete the following actions: Configure the dashboard to use OpenStack … Continue reading
Openstack installation : Networking service – Neutron (On Compute Node)
Content from “openstack.org”, listed here with minor/no changes – just noting down what I did – online notes. The compute node handles connectivity and security groups for instances. Install the components apt install –assume-yes neutron-linuxbridge-agent The Networking common component configuration … Continue reading
Posted in Installation / How To, Notes
Tagged 18.04, bionic, compute-node, install, networking service, neutorn, openstack, Rocky, ubuntu
Comments Off on Openstack installation : Networking service – Neutron (On Compute Node)
Openstack installation : Networking service – Neutron (On Controller Node)
Content from “openstack.org”, listed here with minor/no changes – just noting down what I did – online notes. Create database, service credentials, and API endpoints. CREATE DATABASE neutron;GRANT ALL PRIVILEGES ON neutron.* TO ‘neutron’@’localhost’ IDENTIFIED BY ‘{password}’;GRANT ALL PRIVILEGES ON … Continue reading
Posted in Installation / How To, Notes
Tagged 18.04, bionic, controller-node, install, networking service, neutorn, openstack, Rocky, ubuntu
Comments Off on Openstack installation : Networking service – Neutron (On Controller Node)
Openstack installation : Compute Service – Nova (On Compute Node)
Content from “openstack.org”, listed here with minor/no changes – just noting down what I did – online notes. Install the package apt install –assume-yes nova-compute Edit the /etc/nova/nova.conf file and complete the following actions: In the [DEFAULT] section Due to … Continue reading
Openstack installation : Compute Service – Nova (On Controller Node)
Content from “openstack.org”, listed here with minor/no changes – just noting down what I did – online notes. Create databases, service credentials, and API endpoints. Create the nova_api, nova, nova_cell0, and placement databases: CREATE DATABASE nova_api;CREATE DATABASE nova;CREATE DATABASE nova_cell0;CREATE … Continue reading