CentOS Web Panel (CWP) is a powerful and free control panel that simplifies server management. In this guide, you’ll find the steps to install CWP on AlmaLinux 9.
First, make sure your server is up to date.
sudo dnf update -y
sudo reboot
After the server reboots, install the necessary packages:
sudo dnf install -y wget curl
For CWP to function correctly, you need to set a proper hostname. You can do this using the following command:
sudo hostnamectl set-hostname panel.yourdomain.com
Verify that the hostname is set correctly:
hostnamectl
To download and start the installation of the latest version of CWP, use these commands:
cd /usr/local/src
sudo wget http://centos-webpanel.com/cwp-el9-latest
sudo sh cwp-el9-latest
These commands will download and begin the installation of CWP. The installation process may take a few minutes.
Once the installation is complete, the terminal will display the URL and login details needed to access the CWP admin panel. Typically, you can access your panel at:
http://your-server-ip:2030
To allow access to the CWP panel, you may need to configure the server’s firewall. Run the following commands to open the necessary ports:
sudo firewall-cmd --permanent --zone=public --add-port=2030/tcp
sudo firewall-cmd --reload
Open your browser and go to http://your-server-ip:2030
. Log in using the admin username and password provided during the installation. In the panel, you’ll find the tools you need to manage and configure your server.
You have examined the knowledge base in detail, but if you cannot find the information you need,
Create a Support Ticket