...
- The hostgroup must be hosts_all
- The Operating system has to be set to AlmaLinux 9.2
- The media (dispositivo) has to be set to AlamLinux
- The Partion table kickstart to be used must be TBCTBC Kickstart default - swap 128GB - LVM thin
When the node restarts after the update, make sure that SELinux is disabled:
...
Once the node has been reinstalled with AlmaLinux9, configure the data networkTBC
If in the compute node there is a dedicated interface (like cld-np-19 eno3) for data lan (use the correct ip in the commands below)
Code Block |
---|
[root@cld-np-19 ~]# nmcli con add type ethernet ifname eno3 mtu 9000
[root@cld-np-19 ~]# nmcli con mod eno3 ipv4.method manual ipv4.addr "192.168.61.129/24"
[root@cld-np-19 ~]# nmcli con up eno3
[root@cld-np-19 ~]# nmcli con mod eno3 802-3-ethernet.mtu 9000
[root@cld-np-19 ~]# ip link set eno3 mtu 9000 |
If the interfaces used the addresses with the tagged network (VLAN 302 andl VLAN 301 in same interface) use these commands (remember to use the correct IP int the commands below)
Code Block |
---|
[root@cld-nl-24 ~]# nmcli con add type vlan ifname enp2s0f0.302 dev enp2s0f0 id 302
[root@cld-nl-24 ~]# nmcli con mod vlan-enp2s0f0.302 ipv4.method manual ipv4.addr "192.168.61.129/24"
[root@cld-np-24 ~]# nmcli con up vlan-enp2s0f0.302
[root@cld-np-24 ~]# nmcli con mod vlan-enp2s0f0.302 802-3-ethernet.mtu 9000
[root@cld-np-24 ~]# ip link set enp2s0f0 mtu 9000
[root@cld-np-24 ~]# ip link set enp2s0f0.302 mtu 9000 |
The address to be used must be the original one
...