How to install MongoDB 5.0 or MongoDB 6.0 on Red hat Linux9

Can any one have any Idea how can we install MongoDB 5.0 or MongoDB 6.0 on Red hat Linux 9, is it in support or is it got removed from support.

When I tried install it in the MongoDB 6.0 it got installed and and when i tried to run it it shows the following error.

Hi @Ch_Sadvik

As of MongoDB 5.0 CPUs that don’t support the AVX set are not supported.

A core-dump with ILL is a signature that your CPU is not supporting this. If you are running in a virtual machine and the underlying host supports AVX then it is likely the hypervisor or vm require further configuration.

You can run this to check if the cpu
grep -qm1 '^flags.*avx' /proc/cpuinfo && echo OK || echo NOT OK