For the installation, you need an empty server with Ubuntu 22.04 or Debian 11 with root access.
Install CloudPanel
- Login via SSH to the Server
- Before running the installer, we need to update the system and install the required packages.
apt update && apt -y upgrade && apt -y install curl wget sudo
- Run the installer with your preferred Database Engine for Ubuntu.
- Ubuntu 22.04 LTS with MySQL 8.0
curl -sS https://installer.cloudpanel.io/ce/v2/install.sh -o install.sh; \ echo "e0838864b7376b0390b4855d8d5c1425d83edffb38d2c980cf5b1c1a71d105bc install.sh" | \ sha256sum -c && sudo bash install.sh
- Ubuntu 22.04 with MariaDB 10.9
curl -sS https://installer.cloudpanel.io/ce/v2/install.sh -o install.sh; \ echo "e0838864b7376b0390b4855d8d5c1425d83edffb38d2c980cf5b1c1a71d105bc install.sh" | \ sha256sum -c && sudo DB_ENGINE=MARIADB_10.9 bash install.sh
- Ubuntu 22.04 with MariaDB 10.8
curl -sS https://installer.cloudpanel.io/ce/v2/install.sh -o install.sh; \ echo "e0838864b7376b0390b4855d8d5c1425d83edffb38d2c980cf5b1c1a71d105bc install.sh" | \ sha256sum -c && sudo DB_ENGINE=MARIADB_10.8 bash install.sh
- Ubuntu 22.04 with MariaDB 10.6
curl -sS https://installer.cloudpanel.io/ce/v2/install.sh -o install.sh; \ echo "e0838864b7376b0390b4855d8d5c1425d83edffb38d2c980cf5b1c1a71d105bc install.sh" | \ sha256sum -c && sudo DB_ENGINE=MARIADB_10.6 bash install.sh
- Ubuntu 22.04 LTS with MySQL 8.0
- Run the installer with your preferred Database Engine for Debian.
- Debian 11 LTS with MySQL 8.0
curl -sS https://installer.cloudpanel.io/ce/v2/install.sh -o install.sh; \ echo "e0838864b7376b0390b4855d8d5c1425d83edffb38d2c980cf5b1c1a71d105bc install.sh" | \ sha256sum -c && sudo bash install.sh
- Debian 11 LTS with MySQL 5.7
curl -sS https://installer.cloudpanel.io/ce/v2/install.sh -o install.sh; \ echo "e0838864b7376b0390b4855d8d5c1425d83edffb38d2c980cf5b1c1a71d105bc install.sh" | \ sha256sum -c && sudo DB_ENGINE=MYSQL_5.7 bash install.sh
- Debian 11 LTS with MariaDB 10.9
curl -sS https://installer.cloudpanel.io/ce/v2/install.sh -o install.sh; \ echo "e0838864b7376b0390b4855d8d5c1425d83edffb38d2c980cf5b1c1a71d105bc install.sh" | \ sha256sum -c && sudo DB_ENGINE=MARIADB_10.9 bash install.sh
- Debian 11 LTS with MariaDB 10.8
curl -sS https://installer.cloudpanel.io/ce/v2/install.sh -o install.sh; \ echo "e0838864b7376b0390b4855d8d5c1425d83edffb38d2c980cf5b1c1a71d105bc install.sh" | \ sha256sum -c && sudo DB_ENGINE=MARIADB_10.8 bash install.sh
- Debian 11 LTS with MariaDB 10.7
curl -sS https://installer.cloudpanel.io/ce/v2/install.sh -o install.sh; \ echo "e0838864b7376b0390b4855d8d5c1425d83edffb38d2c980cf5b1c1a71d105bc install.sh" | \ sha256sum -c && sudo DB_ENGINE=MARIADB_10.7 bash install.sh
- Debian 11 LTS with MySQL 8.0
Access CloudPanel
Security
For security reasons, access CloudPanel as fast as possible to create the admin user. There is a small time window where bots can create the user. If possible, open port 8443 only for your IP via firewall.
For security reasons, access CloudPanel as fast as possible to create the admin user. There is a small time window where bots can create the user. If possible, open port 8443 only for your IP via firewall.
You can now access CloudPanel with your IP address via Browser: https://IpAddress:8443