Changes between Version 31 and Version 32 of Tutorials/m0SDN/OpenStack
- Timestamp:
- Jul 5, 2023, 3:07:54 PM (17 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Tutorials/m0SDN/OpenStack
v31 v32 12 12 ---- 13 13 14 In this tutorial, we will be using one of the sb 9nodes for setting up OpenStack. However, sb(1-10) should also be capable for OpenStack setup.14 In this tutorial, we will be using one of the sb1 nodes for setting up OpenStack. However, sb(1-10) should also be capable for OpenStack setup. 15 15 16 16 Make sure you have Ubuntu 20.04.5 (**baseline20.04.ndz**) or 22.04.2 (**ubuntu2204-beta.ndz**) LTS. To get the Ubuntu Version, follow these steps after ssh'ing into your console. Substitute for the image and node you want. 17 17 18 The below steps illustrate loading Ubuntu 20.04.5 LTS for node1-2 of sb 9. On your sb9console,18 The below steps illustrate loading Ubuntu 20.04.5 LTS for node1-2 of sb1. For the sb1 console, 19 19 20 20 {{{#!shell … … 86 86 stack@node1-2:~$ pip install cryptography==38.0.4 87 87 }}} 88 9. Copy the local.conf into the devstack folder:88 9. Copy the local.conf into the Devstack Folder: 89 89 {{{#!shell 90 90 stack@node1-2:~$ cd devstack/samples/local.conf devstack … … 93 93 stack@node1-2:~$ cd devstack 94 94 }}} 95 10. Identify Node's IP Address; configure and setup local.conf in Devstack folder according to requirement (either the controller or compute node):95 10. Identify Node's IP Address; Configure and Setup local.conf in Devstack Folder According to Requirement (either the controller or compute node): [=#point] 96 96 {{{#!shell 97 97 stack@node1-2:~/devstack$ hostname -I 98 98 }}} 99 Example Image of Getting IP Address:99 Example Image of Getting Node's IP Address: 100 100 101 101 [[Image(hostname-I.jpg)]] … … 106 106 stack@node1-2:~/devstack$ nano local.conf 107 107 }}} 108 Scroll to the ADMIN_PASSWORD, and change the password to what you prefer. Afterwards, scroll to HOST_IP. Remove the comment in front of the HOST_IP and set the IP to that of the current node (10.11.1.2 this case). 109 Example Images of Changing Password and IP Address: 108 Scroll to the ADMIN_PASSWORD, and change the password to what you prefer. Afterwards, scroll to HOST_IP. Remove the comment in front of the HOST_IP and set the IP to that of the what IP address was given by [#point hostname -I] (10.11.1.2 this case). Save changes. 110 109 111 [[Image()]] 110 Example Images of Changed Password and IP Address: 112 111 113 [[Image()]] 112 [[Image(badpassword.jpg)]] 113 114 [[Image(ipaddress.jpg)]] 115 116 === Set up a remote desktop through [https://remotedesktop.google.com/access Google Remote Desktop] === 117 To ensure OpenStack Dashboard displays, you must download Google Remote Desktop and use Google Remote Desktop 118 1. Install XServer Packages for Google Remote Desktop: 119 {{{#!shell 120 stack@node1-2:~/devstack$ sudo apt-get install xfce4 xfce4-goodies -y 121 }}} 122 2. Download Debian File for Google Remote Desktop: 123 {{{#!shell 124 stack@node1-2:~/devstack$ wget https://dl.google.com/linux/direct/chrome-remote-desktop_current_amd64.deb 125 }}} 126 3. Install Google Remote Desktop: 127 {{{#!shell 128 stack@node1-2:~/devstack$ sudo apt install ./chrome-remote-desktop_current_amd64.deb -y 129 }}} 130 4. Start the Google Remote Desktop: 131 Outside of the node, login into 114 132 115 133 10. Fireup the Stack: