DEV Community

Pradeep Kumar
Pradeep Kumar

Posted on • Edited on

2

Install WHM on AlmaLinux OS

Step 1) OS Installation

Use "AlmaLinux-8.6-x86_64-minimal.iso" (minimal) OS version.

During the installation of AlmaLinux, make sure to setup following:

https://drive.google.com/file/d/15--Ro7lq0h9j4jYv4Imez3ClDutV-_CM/view

1) Installation Destination
During setup it will ask to "Reclaim space", make sure to confirm it. You delete all old disk if not needed.

2) Newwork Setup
2.1) Configure the Static IP of your server and turn on the Ethernet
2.2) Change the host name and click apply

3) Setup Root Password

And Click "Begin Installation"

After installation reboot the server.

Step 2) Update and Setup SSH

Login to your server using root username and password.

Run following command to update the OS:

sudo dnf update
Enter fullscreen mode Exit fullscreen mode

Setup SSH

sudo dnf install openssh-server openssh-clients
Enter fullscreen mode Exit fullscreen mode

Now, you should be able to connect with your server via SSH.

Step 2) Install CPanel

Run following commands:

iptables-save > ~/firewall.rules
systemctl stop firewalld.service
systemctl disable firewalld.service

sudo dnf -y install perl
sudo dnf -y install curl
Enter fullscreen mode Exit fullscreen mode

Install CPanel from following command:

cd /home && curl -o latest -L https://securedownloads.cpanel.net/latest && sh latest
Enter fullscreen mode Exit fullscreen mode

Once this installation is complete. You should be able to visit following url:

https://PUBLIC-IP:2087
Enter fullscreen mode Exit fullscreen mode

And can login using root username & password.

Qodo Takeover

Introducing Qodo Gen 1.0: Transform Your Workflow with Agentic AI

While many AI coding tools operate as simple command-response systems, Qodo Gen 1.0 represents the next generation: autonomous, multi-step problem-solving agents that work alongside you.

Read full post

Top comments (0)

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay