BTPanel

As we need to construst a website belonging to us, BTPanel is a convenient tool for beginner.

Commad of different system

Centos

1
yum install -y wget && wget -O install.sh https://download.bt.cn/install/install_6.0.sh && sh install.sh 12f2c1d72

Ubuntu/Deepin

1
wget -O install.sh https://download.bt.cn/install/install-ubuntu_6.0.sh && sudo bash install.sh 12f2c1d72

Debian

1
wget -O install.sh https://download.bt.cn/install/install-ubuntu_6.0.sh && bash install.sh 12f2c1d72

Fedora

1
wget -O install.sh https://download.bt.cn/install/install_6.0.sh && bash install.sh 12f2c1d72

Command of Upgrade Panel

1
curl https://download.bt.cn/install/update_panel.sh|bash

After

After we run these codes, we just need to wait and the informations like address, username and passward will appear on the terminal.

But after we input the address on the browsers, we would find that the website can’t work!(Even we change the security list on Oracle Cloud!) The reason of this problem is the port of the cloud server didn’t open and we need to run the code below, then this problem will be solved.

1
2
3
4
sudo iptables -P INPUT ACCEPT
sudo iptables -P FORWARD ACCEPT
sudo iptables -P OUTPUT ACCEPT
sudo iptables -F

The we enter the address again, and we could see the correct result and the BTPanel will work on the browser!