-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInstall OpenStack-PackStack on AlmaLinux 9.txt
More file actions
425 lines (259 loc) · 9.29 KB
/
Install OpenStack-PackStack on AlmaLinux 9.txt
File metadata and controls
425 lines (259 loc) · 9.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
+++++++++++++++++++++++++++++++++++++++++++++++++++++
+ Install OpenStack on AlmaLinux 9 using Packstack +
+++++++++++++++++++++++++++++++++++++++++++++++++++++
#Checking System Informations
hostnamectl
cat /etc/redhat-release
grep -E ' svm | vmx' /proc/cpuinfo
lsmod | grep kvm
lscpu
free -h
lsblk
#Configure Common Setup
hostnamectl set-hostname cloud
ip a
yum install nano -y
dnf install wget -y
#Need to Configure Static IP
#Check Network Card Info file
ls /etc/sysconfig/network-scripts/
#Note: If OS are Almalinux 9 may be couldn't find NIC file in network-scripts folder.
#This problem for solutions:
#Enable CRB Repository
dnf config-manager --set-enabled crb
#Install Epel and Epel Next on Almalinux 9
dnf install epel-release -y
#Working On AlmaLinux 9
dnf install centos-release-openstack-yoga -y
yum clean all
# Install network-scripts package
yum install network-scripts -y
# Enable/Start Network Service
systemctl status network
systemctl start network
systemctl enable network
systemctl restart network
#Check Network Card Info file
ls /etc/sysconfig/network-scripts/
nano /etc/sysconfig/network-scripts/ifcfg-enp2s0
HWADRR=1c:1b:0d:2b:12:93
NM_CONTROLLED=no
BOOTPROTO=static
ONBOOT=yes
IPADDR=192.168.0.50
PREFIX=24
GATEWAY=192.168.0.1
DNS1=8.8.8.8
DNS2=8.8.4.4
DEVICE=enp2s0
nmcli connection up enp2s0
ip a s enp2s0
systemctl restart NetworkManager
ping google.com
cp /etc/sysconfig/network-scripts/ifcfg-enp2s0 /etc/sysconfig/network-scripts/ifcfg-enp2s0.bak
cat /etc/sysconfig/network-scripts/ifcfg-enp2s0
#Edit Hosts file:
echo "192.168.0.50 cloud.paulco.xyz cloud" >> /etc/hosts
#Check SELinux
getenforce
#Disable SELinux
#setenforce 0
sed -i 's/^SELINUX=.*/SELINUX=disabled/g' /etc/selinux/config
# Disable Firewalld
systemctl disable firewalld
systemctl stop firewalld
# Disable/Stop NetworkManager
systemctl status NetworkManager
systemctl disable NetworkManager
systemctl stop NetworkManager
#systemctl restart NetworkManager
ifup enp0s3
#ifdown enp0s3
#systemctl mask NetworkManager.service
#systemctl stop NetworkManager.service
#systemctl disable NetworkManager.service
#systemctl list-unit-files | grep NetworkManager
++++++++++++++++++++++++++++++++++++
yum autoremove epel-release
yum autoremove openstack-packstack
yum clean all
yum repolist
yum update -y && yum upgrade -y
reboot
++++++++++++++++++++++++++++++++++++++++++++++++++
+ Install & Configure OpenStack-PackStack +
++++++++++++++++++++++++++++++++++++++++++++++++++
#For AlmaLinux 9
dnf config-manager --set-enabled crb
#Working On AlmaLinux 9
dnf install centos-release-openstack-yoga
#Install Openstack-Packstack Package
#dnf install -y openstack-packstack
yum install -y openstack-packstack
yum repolist
yum update -y
packstack --version
packstack --help
++++++++++++++++ Generate Answers +++++++++++++
+++++++++++++++++++++++++++++++++++++++++++++++
+ Pre-Installation with Generate Answers file +
+++++++++++++++++++++++++++++++++++++++++++++++
packstack --os-neutron-ml2-tenant-network-types=vxlan \
--ntp-servers=0.asia.pool.ntp.org,1.asia.pool.ntp.org,2.asia.pool.ntp.org,3.asia.pool.ntp.org \
--os-neutron-ovs-bridge-interfaces=br-ex:enp2s0 \
--os-neutron-ml2-mechanism-drivers=openvswitch \
--os-neutron-ml2-type-drivers=vxlan,flat \
--os-neutron-l2-agent=openvswitch \
--keystone-admin-passwd=openstack \
--provision-demo=n \
--os-heat-install=y \
--gen-answer-file /root/answers.txt
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++
##Custom Installation After Generate Answers file##
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++
packstack --gen-answer-file /root/answers.txt
#Take Copy the answes file
cp answers.txt copy.answers.txt
++++++++++++++++++++++++++++++++++++++++++++++++
##Important: Edit the file whats we install
++++++++++++++++++++++++++++++++++++++++++++++++
nano answers.txt
>>Change to y/n
CONFIG_NTP_SERVERS=0.asia.pool.ntp.org,1.asia.pool.ntp.org,2.asia.pool.ntp.org,3.asia.pool.ntp.org
CONFIG_CONTROLLER_HOST=192.168.10.10
CONFIG_COMPUTE_HOSTS=192.168.10.10
CONFIG_NETWORK_HOSTS=192.168.10.10
CONFIG_STORAGE_HOST=192.168.10.10
CONFIG_KEYSTONE_ADMIN_PW=openstack
++++++++++++++++++++++++++++++++++++++++++++++++
+++++++++++++++++ Networking +++++++++++++++++++
#search and change Bridge
CONFIG_NEUTRON_OVS_BRIDGE_IFACES=br-ex:enp0s3
CONFIG_NEUTRON_ML2_MECHANISM_DRIVERS=openvswitch
CONFIG_NEUTRON_L2_AGENT=openvswitch
# Disable Nagios
CONFIG_NAGIOS_INSTALL=n
##Disable the demo provisioning
CONFIG_PROVISION_DEMO=n
++++++++++++++++++++++++++++++++++
##Installation OpenStack##
++++++++++++++++++++++++++++++++++
#Run bellow command without #
packstack --answer-file #/root/answers.txt | tee openstack-Installation-log.txt
++++++++++++++++++++++++++++++++++
## View Installation Log ##
# The installation log file is available at:
tail -f /var/tmp/packstack/latest/openstack-setup.log
# The generated manifests are available at:
tail -f /var/tmp/packstack/20230119-111007-GkD8Cn/manifests
++++++++++++++++++++++++++++++++++
++++++++++++++++++++++++++++++++++
#Install OpenStack WithOut Demo
++++++++++++++++++++++++++++++++++
#packstack --allinone --provision-demo=n
++++++++++++++++++++++++++++++++++
#Install OpenStack With Demo
++++++++++++++++++++++++++++++++++
#packstack --allinone
**** Installation Completed Successfully ******
++++++++++++++++++++++++++++++++++
#After Installation Complete +
++++++++++++++++++++++++++++++++++
#Access OpenStack from CLI / Horizon Dashboard
------------------------------------------------
source ~/keystonerc_admin
openstack service list
#To access Horizon Dashboard use the URL:
#http://ServerIPAddress/dashboard.
http://192.168.0.50/dashboard
#Login Credentials in Here:
cat ~/keystonerc_admin
###################################
# After Installation Complete #
###################################
#After Installation Completed Configuration OVS Bridge Networking
#Create an external OVS bridge on your interface
## Move your static route for configured interface to br-ex.
#cp /etc/sysconfig/network-scripts/ifcfg-eno1 /etc/sysconfig/network-scripts/main-eno1
cp /etc/sysconfig/network-scripts/ifcfg-enp0s9 /etc/sysconfig/network-scripts/ifcfg-br-ex
nano /etc/sysconfig/network-scripts/ifcfg-enp0s9
DEVICE=enp0s9
NAME=enp0s9
DEVICETYPE=ovs
TYPE=OVSPort
OVS_BRIDGE=br-ex
ONBOOT=yes
BOOTPROTO=none
nano /etc/sysconfig/network-scripts/ifcfg-br-ex
HWADRR=08:00:27:c6:34:51
NM_CONTROLLED=no
ONBOOT=yes
IPADDR=10.0.2.40
PREFIX=24
GATEWAY=10.0.2.2
DEVICE=br-ex
NAME=br-ex
DEVICETYPE=ovs
OVSBOOTPROTO=static
TYPE=OVSBridge
OVS_EXTRA="set bridge br-ex fail_mode=standalone"
systemctl restart network.service
ovs-vsctl show
#ovs-vsctl add-br br-ex
## Add the network physical interface to the br-ex bridge in Open vSwitch.
#ovs-vsctl add-port br-ex eno1; systemctl restart network.service
#######################
# Manage OpenVSwitch #
#######################
yum install openvswitch libibverbs -y
or
systemctl enable --now openvswitch
systemctl status openvswitch
systemctl restart openvswitch
ovs-vsctl -V
systemctl restart openstack* neutron* libvirtd
systemctl status openstack* neutron* libvirtd
systemctl restart neutron*
##########################
#Configuration OpenStack #
##########################
################################################
# Configure Networking in OpenStack by Cli #
################################################
##Create OpenStack private Network.
openstack network create private
##Create subnet for private Network.
openstack subnet create --network private --allocation-pool start=10.1.1.50,end=10.1.1.200 --dns-nameserver 8.8.8.8 --subnet-range 10.1.1.0/24 private_subnet
##Create a public network.
openstack network create --provider-network-type flat --provider-physical-network extnet --external public
##Create subnet for public Network.
openstack subnet create --network public --allocation-pool start=192.168.0.100,end=192.168.0.200 --no-dhcp --dns-nameserver 8.8.8.8 --subnet-range 192.168.0.0/24 public_subnet
##Add a new router and configure router interfaces.
openstack router create --no-ha core-router
##Add Interface in Router
openstack router set --external-gateway public core-router
openstack router add subnet core-router private_subnet
ip netns show
............................
##Now Download Cirros image
............................
wget http://download.cirros-cloud.net/0.5.1/cirros-0.5.1-x86_64-disk.img
..................................
Upload Image on OpenStack Cloud
..................................
openstack image create --disk-format qcow2 --container-format bare --public --file cirros-0.5.1-x86_64-disk.img cirros
openstack image list
#Ubuntu Cloud Images Link
https://cloud-images.ubuntu.com/
wget http://cloud-images.ubuntu.com/jammy/current/jammy-server-cloudimg-amd64.img
openstack image create --disk-format qcow2 --container-format bare --public --file jammy-server-cloudimg-amd64.img ubuntu-jammy
#wget https://cloud-images.ubuntu.com/bionic/current/bionic-server-cloudimg-arm64.img
#openstack image delete cirros
++++++++++++++++++++++++++++++++
Remove or Uninstall OpenStack +
++++++++++++++++++++++++++++++++
#If you need to uninstall openstack
-------------------------------------
#yum -y remove openstack-*
++++++++++++++++++++++++++++++++ Finish ++++++++++++++++++++++++++++++++