⚙️ CyberPanel Installation Guide
CyberPanel is an open-source, modern, and powerful web hosting control panel.It delivers high performance thanks to its integration with OpenLiteSpeed technology.
Follow the steps below to easily install CyberPanel on your server.
⭐ Step 1: Connect to Your Server via SSH
You can easily install CyberPanel through the terminal.To begin, connect to your server via SSH using a client like PuTTY
⭐ Step 2: Update Your Server Packages
Before installing CyberPanel, it’s important to update your server packages.Copy and paste the appropriate command for your OS into your terminal as a single line:
For AlmaLinux:
Bash:
dnf update -y && dnf upgrade -y && dnf autoremove -y && dnf -y install wget && dnf -y install nano && dnf -y install curl && dnf -y install epel-release && dnf -y install screen
For Ubuntu:
Bash:
apt update -y && apt upgrade -y && apt autoremove -y && apt -y install wget && apt -y install nano && apt -y install curl
⚠️ After running the commands above, make sure to confirm with “yes” for all prompts that appear during installation.
⭐ Step 3: Start a Screen Session
We recommend running the installation inside a screen session to avoid interruptions.To start Screen, simply run the command below:
Code:
screen
⚠️ Screen was already installed with the commands in Step 2, so you don’t need to install it again.
Just start the session using thescreencommand.
⭐ Step 4: Install CyberPanel via Terminal
Now you’re ready to install CyberPanel.Run the command below to start the installation.
Depending on your internet connection, the installation may take around 10–30 minutes.
Bash:
sh <(curl https://cyberpanel.net/install.sh || wget -O - https://cyberpanel.net/install.sh)