1. Сайт панели https://forum.aapanel.com/d/9-aapanel-linux-panel-6812-installation-tutorial

  2. Устанавливаем панель по скрипту

Centos :

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

The experimental Centos/Ubuntu/Debian/Fedora installation command supports ipv6. Note that this command is executed with root privileges (Centos8 is supported)

curl -sSO http://www.aapanel.com/script/new_install_en.sh && bash new_install_en.sh

Ubuntu/Deepin :

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

Debian :

wget -O install.sh http://www.aapanel.com/script/install-ubuntu_6.0_en.sh && bash install.sh
  1. Не забываем, что нам дается 10 минут для логина в веб-панель после ее установки.

  2. Команда для проброса порта к себе на ПК

ssh -i ~/.ssh/id_rsa -N -L 8888:localhost:8888 ubuntu@IP_ADDRESS_SERVER
  1. После каждой смены пароля или логина - перезагружаем панель
sudo systemctl daemon-reload
sudo systemctl restart bt
sudo systemctl status bt
  1. И не забудем открыть порты для веб-сервера и сохранить их:
sudo iptables -I INPUT -p tcp -m tcp --dport 80 -j ACCEPT
sudo iptables -I INPUT -p tcp -m tcp --dport 443 -j ACCEPT
sudo iptables-save