sudo apt-get update -y && sudo apt-get upgrade -y
wget -O install.sh http://download.bt.cn/install/install-ubuntu_6.0.sh && sudo bash install.sh
安装之后,显示链接不到服务器:
首先检查面板是否运行
/etc/init.d/bt status
如下是显示面板没有运行
Bt-Panel not running
Bt-Task not running
启动面板
/etc/init.d/bt start
重启面板
/etc/init.d/bt restart
系统防火墙端口未打开:注意,服务器提供商的防火墙(安全组)可能也需要打开。面板默认端口为:7800
Check the port used by the panel, if it is not 7800, please replace it with the one you set
cat /www/server/panel/data/port.pl
ufw allow 7800/tcp
firewall-cmd --permanent --zone=public --add-port=7800/tcp >/dev/null 2>&1
iptables -I INPUT -p tcp -m state --state NEW -m tcp --dport 7800 -j ACCEPT
如下内容仅供参考
sudo ufw disable
on Ubuntu or sudo systemctl stop firewalld
on CentOS 7
Warning:
If you cannot access the panel,
release the following port (8888|888|80|443|20|21) in the security group
注意:初始密码仅在首次登录面板前能正确获取,其它时间请通过 bt 5 命令修改密码
Then try accessing the dashboard.
If it still doesn’t work, than run sudo iptables -F to flush the iptables.
宝塔 Network is unreachable.
宝塔面板无法安装
最近很多新手反应宝塔无法安装,经过研究宝塔无法安装环境面板下载更新,主要是因为屏蔽了宝塔安装更新下载的节点,只需要选择对应的节点就可以解决。
宝塔面板无法安装更新下载 解决方法第一步
国外机器安装宝塔, 找不到节点,需要修复:
👇🏻的代码试过管用:
echo -e "options timeout:1 attempts:1 rotate\nnameserver 8.8.8.8\nnameserver 8.8.8.8" >/etc/resolv.conf;
国内机器无法安装宝塔更换DNS
echo -e "options timeout:1 attempts:1 rotate\nnameserver 114.114.114.114\nnameserver 8.8.8.8" >/etc/resolv.conf;
宝塔提示:
www/server/panel/install/public.sh: No such file or directory
Connecting to download.bt.cn (download.bt.cn)|2001:19f0:7001:54fc:5400:2ff:fe9b:97f9|:80… failed: Network is unreachable.
宝塔Network is unreachable.
宝塔Connecting to download.bt.cn (download.bt.cn)|103.224.251.67|:80… failed: No route to host
宝塔面板无法安装更新下载 解决方法 第二步
在宝塔ftp 或环境组件无法安装的情况下可以先在linux上执行如下命令
需要指定host 重组下载节点
国内的在服务器上执行这条命令:
echo ‘125.88.182.172 download.bt.cn’ >>/etc/hosts
香港的执行这条命令:
echo ‘103.224.251.67 download.bt.cn’ >>/etc/hosts
美国或者国外的执行这条命令:
echo ‘128.1.164.196 download.bt.cn’ >>/etc/hosts
宝塔面板无法安装更新下载 解决方法 第三步
宝塔面板无法安装 【广东】
yum install -y wget && wget -O install.sh http://125.88.182.172:5880/install/install_6.0.sh && sh install.sh
宝塔面板无法安装【香港】
yum install -y wget && wget -O install.sh http://103.224.251.67:5880/install/install_6.0.sh && sh install.sh
宝塔面板无法安装【美国】
yum install -y wget && wget -O install.sh http://128.1.164.196:5880/install/install_6.0.sh && sh install.sh