Download the ISO image and burn the same onto a USB stick. Insert the USB stick in the server and power on (My server is Dell R430) Press F11 and enter Boot Manager Select Oneshot UEFI Boot option Select boot from the USB stick Select Install Server Select English Language (or whatever your choice is)…
Tag: install
Installing NFS Server
The objective is to configure the NFS server on one of the servers in the LAB. Creating the NFS client-server setup is a simple task that can be performed in a few steps – installation, export, mounting, and access. On the server install the required package apt install -y nfs-kernel-server Create a directory that gets…
Openstack – Train : Create networks, router, flavor and launch an instance
<<< Cinder As admin user 1. Create Flavors as required . admin-openrcopenstack flavor create m1.nano –ram 512 –vcpus 1 –disk 10openstack flavor create m1.micro –ram 1024 –vcpus 1 –disk 10openstack flavor create m1.mini –ram 1024 –vcpus 2 –disk 10openstack flavor create m1.small –ram 2048 –vcpus 2 –disk 20openstack flavor create m1.medium –ram 4096 –vcpus 2…
Openstack – Train : Cinder – Block storage service
<<< Horizon Configure networks, router, flavour and launch instance >>> Create database for cinder services CREATE DATABASE cinder;GRANT ALL PRIVILEGES ON cinder.* TO ‘cinder’@’localhost’ IDENTIFIED BY ‘password’;GRANT ALL PRIVILEGES ON…
Openstack – Train : Horizon – Dashboard
<<< Neutron …
Openstack – Train : Neutron – Networking service
<<< Nova …
Openstack – Train : Nova – Compute services
<<< Placement …
Openstack – Train : Placement services
<<< Glance …
Openstack – Train : Glance – Image Service
<<< Keystone …
Openstack – Train : Keystone – Identity service
<<< Pre-Requisites Glance >>>…