Advertisements

How to Install aaPanel on Linux Server

  • Post last modified:October 21, 2023
  • Post category:Linux / Web
  • Post comments:2 Comments
  • Reading time:7 mins read

aaPanel is a free and open-source web hosting control panel that allows you to manage your web server, domains, databases, and other services with a user-friendly interface. In this post, I will guide how to install aaPanel on your Linux server.

Table of Contents:

Step 1: Connect to your Linux Server

First, you need to connect to your Linux server via SSH.

Step 2: Update the system

Advertisements

Before installing any software on your Linux server, it is important to update the system:

sudo apt update && sudo apt upgrade -y

Step 3: Install aaPanel

aaPanel is developed based on CentOS, recommend using CentOS to install it. However, aaPanel also provides installation scripts for Ubuntu, Deepin, and Debian.

CentOS installation script:

yum install -y wget && wget -O install.sh http://www.aapanel.com/script/install_6.0_en.sh && bash install.sh aapanel

Ubuntu/Deepin installation script:

wget -O install.sh http://www.aapanel.com/script/install-ubuntu_6.0_en.sh && sudo bash install.sh aapanel

Debian installation script:

wget -O install.sh http://www.aapanel.com/script/install-ubuntu_6.0_en.sh && bash install.sh aapanel

Please note that the installation script should be run on a clean operating system with no other environment with Apache/Nginx/php/MySQL installed.

aaPanel install

these commands will download the installation script and execute it with root privileges. During the installation process, Make sure to remember username and password details as you will need them to log in to the aaPanel dashboard later.

aaPanel install complete

Step 4: Access the aaPanel dashboard

Once the installation is complete, you can access the aaPanel dashboard by visiting the following URL in your web browser:

https://your_server_ip:7800

Replace “your_server_ip” with the IP address of your Linux server. You will be prompted to enter the username and password that you get during the installation process.

login page of aaPanel
aapanel login page
selecting packages in aaPanel
select which One-Click services (LAMP/LNMP) you want to install
installing packages aaPanel
aaPanel dashboard
aapanel dashboard
creating web using aaPanel
creating wp site with aapanel
wordpress install using aaPanel

Advertisements

If you have any questions or need further assistance with aaPanel, you can always visit their community forum at https://forum.aapanel.com/. Here, you can ask any questions related to aaPanel and get help from the community or aaPanel support team.

Conclusion

aaPanel is a powerful and user-friendly web hosting control panel. By following the steps outlined in this post, you can easily install aaPanel on your Linux server and start using it to manage your web hosting services.

This Post Has 2 Comments

  1. Bullfrog

    how can install redis ?

    1. Udara Kalana

      you can easily install Redis using the aaPanel dashboard go to APP STORE
      redis install aapanel dashboard

Leave a Reply