当前位置:论坛首页 > Linux面板 > 求助

【已解决】 面板无法访问

发表在 Linux面板5 天前 [复制链接] 4 84

为了能快速了解并处理您的问题,请提供以下基础信息:
面板、插件版本:9.6.0
系统版本:Debian 12
问题描述:在已经存在宝塔的主机上安装尝试耗子面板,二者都无法访问、卸载耗子、修复宝塔后,宝塔面板还是无法访问
相关截图(日志、错误):

```shellroot@DY:~# ps aux | grep -i 'BT-Panel'
root     1082437  0.0  1.1 133812 45340 ?        S    09:10   0:00 /www/server/panel/pyenv/bin/python3 /www/server/panel/BT-Panel
root     1082830  0.0  0.0   6336  2264 pts/1    S+   09:12   0:00 grep -i BT-Panel
root@DY:~# netstat -lunpt|grep 15432
tcp        0      0 0.0.0.0:15432           0.0.0.0:*               LISTEN      1082437/python3

root@DY:~# curl -v 127.0.0.1:15432/f24ee271
*   Trying 127.0.0.1:15432...
* Connected to 127.0.0.1 (127.0.0.1) port 15432 (#0)
> GET /f24ee271 HTTP/1.1
> Host: 127.0.0.1:15432
> User-Agent: curl/7.88.1
> Accept: */*
>
* Recv failure: Connection reset by peer
* Closing connection 0
curl: (56) Recv failure: Connection reset by peer
```


使用道具 举报 只看该作者 回复
发表于 5 天前 | 显示全部楼层
root@DY:~# iptables -nL
Chain INPUT (policy ACCEPT)
target     prot opt source               destination
IN_BT      0    --  0.0.0.0/0            0.0.0.0/0

Chain FORWARD (policy ACCEPT)
target     prot opt source               destination
DOCKER-USER  0    --  0.0.0.0/0            0.0.0.0/0
DOCKER-FORWARD  0    --  0.0.0.0/0            0.0.0.0/0

Chain OUTPUT (policy ACCEPT)
target     prot opt source               destination
OUT_BT     0    --  0.0.0.0/0            0.0.0.0/0

Chain DOCKER (2 references)
target     prot opt source               destination
ACCEPT     6    --  0.0.0.0/0            172.17.0.2           tcp dpt:5700
DROP       0    --  0.0.0.0/0            0.0.0.0/0
DROP       0    --  0.0.0.0/0            0.0.0.0/0

Chain DOCKER-BRIDGE (1 references)
target     prot opt source               destination
DOCKER     0    --  0.0.0.0/0            0.0.0.0/0
DOCKER     0    --  0.0.0.0/0            0.0.0.0/0

Chain DOCKER-CT (1 references)
target     prot opt source               destination
ACCEPT     0    --  0.0.0.0/0            0.0.0.0/0            ctstate RELATED,ESTABLISHED
ACCEPT     0    --  0.0.0.0/0            0.0.0.0/0            ctstate RELATED,ESTABLISHED

Chain DOCKER-FORWARD (1 references)
target     prot opt source               destination
DOCKER-CT  0    --  0.0.0.0/0            0.0.0.0/0
DOCKER-ISOLATION-STAGE-1  0    --  0.0.0.0/0            0.0.0.0/0
DOCKER-BRIDGE  0    --  0.0.0.0/0            0.0.0.0/0
ACCEPT     0    --  0.0.0.0/0            0.0.0.0/0
ACCEPT     0    --  0.0.0.0/0            0.0.0.0/0

Chain DOCKER-ISOLATION-STAGE-1 (1 references)
target     prot opt source               destination
DOCKER-ISOLATION-STAGE-2  0    --  0.0.0.0/0            0.0.0.0/0
DOCKER-ISOLATION-STAGE-2  0    --  0.0.0.0/0            0.0.0.0/0

Chain DOCKER-ISOLATION-STAGE-2 (2 references)
target     prot opt source               destination
DROP       0    --  0.0.0.0/0            0.0.0.0/0
DROP       0    --  0.0.0.0/0            0.0.0.0/0

Chain DOCKER-USER (1 references)
target     prot opt source               destination

Chain IN_BT (1 references)
target     prot opt source               destination
IN_BT_user_port  0    --  0.0.0.0/0            0.0.0.0/0
IN_BT_ip   0    --  0.0.0.0/0            0.0.0.0/0
IN_BT_user_ip  0    --  0.0.0.0/0            0.0.0.0/0
IN_BT_log  0    --  0.0.0.0/0            0.0.0.0/0

Chain IN_BT_Country (1 references)
target     prot opt source               destination

Chain IN_BT_ip (1 references)
target     prot opt source               destination
IN_BT_Country  0    --  0.0.0.0/0            0.0.0.0/0

Chain IN_BT_log (1 references)
target     prot opt source               destination

Chain IN_BT_user_ip (1 references)
target     prot opt source               destination
DROP       0    --  0.0.0.0/0            0.0.0.0/0            match-set in_bt_user_drop_ipset src
ACCEPT     0    --  0.0.0.0/0            0.0.0.0/0            match-set in_bt_user_accept_ipset src

Chain IN_BT_user_port (1 references)
target     prot opt source               destination

Chain OUT_BT (1 references)
target     prot opt source               destination
OUT_BT_user_port  0    --  0.0.0.0/0            0.0.0.0/0
OUT_BT_user_ip  0    --  0.0.0.0/0            0.0.0.0/0

Chain OUT_BT_user_ip (1 references)
target     prot opt source               destination
DROP       0    --  0.0.0.0/0            0.0.0.0/0            match-set out_bt_user_drop_ipset dst
ACCEPT     0    --  0.0.0.0/0            0.0.0.0/0            match-set out_bt_user_accept_ipset dst

Chain OUT_BT_user_port (1 references)
target     prot opt source               destination
使用道具 举报 回复 支持 反对
发表于 5 天前 | 显示全部楼层
测试环境:https://14.103.152.109:15432/f24ee271

root@14.103.152.109
密码2025-07-31
使用道具 举报 回复 支持 反对
发表于 5 天前 | 显示全部楼层
测试服务费
  1. https://14.103.152.109:15432/f24ee271

  2. root@14.103.152.109
  3. 2025-07-31
复制代码
使用道具 举报 回复 支持 反对
发表于 5 天前 | 显示全部楼层
已查明问题
使用道具 举报 回复 支持 反对
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

普通问题处理

论坛响应时间:72小时

问题处理方式:排队(仅解答)

工作时间:白班:9:00 - 18:00

紧急运维服务

响应时间:3分钟

问题处理方式:宝塔专家1对1服务

工作时间:工作日:9:00 - 18:30

宝塔专业团队为您解决服务器疑难问题

点击联系技术免费分析

工作时间:09:00至18:30

快速回复 返回顶部 返回列表