收起左侧

无法网页访问飞牛了!

12
回复
404
查看
[ 复制链接 ]

3

主题

13

回帖

0

牛值

江湖小虾

2025-9-26 22:52:12 显示全部楼层 阅读模式
悬赏1飞牛币未解决

通过“if [ -f /usr/bin/curl ];then curl -sSO https://download.bt.cn/install/install_panel.sh;else wget -O install_panel.sh https://download.bt.cn/install/install_panel.sh;fi;bash install_panel.sh ed8484bec
”方法安装宝塔以后,后面无法正常网页打开飞牛了,app也不行,登录不了。在安装宝塔登录后,提示安装推荐“一键安装 LNMP”。后面有个nginx提示安装失败,还有个也失败了,后面就打不开网页版飞牛了,不知道是什么bug,但是飞牛的docker的应用还在跑。奇了怪了。有大佬知道怎么修复吗?已经通过脚本把宝塔删了,但是还是不行。通过这个帖子安装的。

image.png
image.png

image.png

收藏
送赞
分享

2

主题

1898

回帖

350

牛值

共建版主

fnOS1.0上线纪念勋章社区共建团荣誉勋章

2025-9-26 23:52:02 显示全部楼层
删除宝塔创建的nginx服务,然后重启trim_ngix服务看看
宝塔已经用删除了。怎么重启trim_ngix?有指令吗?方便发下吗?  详情 回复
2025-9-27 08:52

4

主题

743

回帖

0

牛值

社区共建团

社区共建团荣誉勋章飞牛百度网盘玩家

2025-9-26 23:58:15 显示全部楼层

检查80/443端口占用情况 sudo netstat -tulnp | grep -E '80|443'

检查Nginx服务状态 systemctl status nginx

强制释放80端口 sudo fuser -k 80/tcp

强制释放443端口 sudo fuser -k 443/tcp

服务重启:

sudo systemctl restart nginx

老兄,好像不行,nginx好像挂了。 Failed to restart nginx.service: Unit nginx.service not found. root@zhp:# sudo systemctl restart nginx Failed to restart nginx.service: Unit nginx.service not found.ro  详情 回复
2025-9-27 08:50
1

查看全部评分

3

主题

13

回帖

0

牛值

江湖小虾

2025-9-27 08:50:31 楼主 显示全部楼层
[quote][size=2][url=forum.php?mod=redirect&goto=findpost&pid=179860&ptid=38697][color=#999999]yyywd 发表于 2025-9-26 23:58[/color][/url][/size] 检查80/443端口占用情况 sudo netstat -tulnp | grep -E '80|443' 检查Nginx服务状态 systemctl status ngi ...[/quote]

老兄,好像不行,nginx好像挂了。

image.png

Failed to restart nginx.service: Unit nginx.service not found.
root@zhp:# sudo systemctl restart nginx
Failed to restart nginx.service: Unit nginx.service not found.root@zhp:
# sudo netstat -tulnp | grep -E '80|443'~

tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 20685/nginx: master
tcp 0 0 0.0.0.0:443 0.0.0.0:* LISTEN 20685/nginx: master
tcp 0 0 0.0.0.0:8001 0.0.0.0:* LISTEN 20685/nginx: master
tcp 0 0 0.0.0.0:8000 0.0.0.0:* LISTEN 20685/nginx: master
tcp6 0 0 :::80 :::* LISTEN 20685/nginx: master
tcp6 0 0 :::443 :::* LISTEN 20685/nginx: master
tcp6 0 0 :::10037 :::* LISTEN 6180/easynvr.com
tcp6 0 0 fe80::c43:9aff:fe:63219 :::* LISTEN 4638/bin/qbittorren
tcp6 0 0 fe80::d86:cfb0:4e:49152 :::* LISTEN 1576/upnp_service
tcp6 0 0 fe80::42:90ff:fea:63219 :::* LISTEN 4638/bin/qbittorren
tcp6 0 0 fe80::e0dc:7dff:f:63219 :::* LISTEN 4638/bin/qbittorren
tcp6 0 0 fe80::d86:cfb0:4e:63219 :::* LISTEN 4638/bin/qbittorren
tcp6 0 0 :::8005 :::* LISTEN 4076/trim-media
tcp6 0 0 :::8001 :::* LISTEN 20685/nginx: master
tcp6 0 0 :::8000 :::* LISTEN 20685/nginx: master
tcp6 0 0 :::8085 :::* LISTEN 4638/bin/qbittorren
udp 0 0 0.0.0.0:49000 0.0.0.0:* 6180/easynvr.com
udp6 0 0 fe80::c43:9aff:fe:63219 :::* 4638/bin/qbittorren
udp6 0 0 fe80::e0dc:7dff:f:63219 :::* 4638/bin/qbittorren
udp6 0 0 fe80::42:90ff:fea:63219 :::* 4638/bin/qbittorren
udp6 0 0 fe80::d86:cfb0:4e:63219 :::* 4638/bin/qbittorren
udp6 0 0 :::48005 :::* 1068/rpc.mountd
udp6 0 0 fe80::d86:cfb0:4e3c:546 :::* 629/NetworkManager
root@zhp:

systemctl status nginx
Unit nginx.service could not be found.
root@zhp:

# sudo fuser -k 80/tcp
80/tcp: 20685 20687
root@zhp:# sudo fuser -k 443/tcp
root@zhp:
# sudo systemctl restart nginx~

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
Nginx 是通过 Docker 容器运行的(PID 20685),而非系统服务,要终结这个PID kill -9 20685 如果终结成功,释放了80/443端口,去网页登录飞牛,看能不能成功 如果还是不行,别折腾了,重装飞牛吧,速度最快  详情 回复
2025-9-27 15:37

3

主题

13

回帖

0

牛值

江湖小虾

2025-9-27 08:52:26 楼主 显示全部楼层
一西啊 发表于 2025-9-26 23:52
删除宝塔创建的nginx服务,然后重启trim_ngix服务看看

宝塔已经用删除了。怎么重启trim_ngix?有指令吗?方便发下吗?
sudo systemctl restart trim_nginx  详情 回复
2025-9-27 10:41

4

主题

35

回帖

0

牛值

江湖小虾

fnOS1.0上线纪念勋章

2025-9-27 10:41:07 显示全部楼层
新新小朋友 发表于 2025-9-27 08:52
宝塔已经用删除了。怎么重启trim_ngix?有指令吗?方便发下吗?

sudo systemctl restart trim_nginx
重启之后,运行这个指令报错了 root@zhp:~# sudo systemctl restart trim_nginx ** for trim_nginx.service failed because the control process exited with error code. See "systemctl status trim_nginx.serv  详情 回复
2025-9-27 11:16

3

主题

13

回帖

0

牛值

江湖小虾

2025-9-27 10:57:49 楼主 显示全部楼层

root@zhp:# sudo systemctl restart trim_nginx
root@zhp:
#
root@zhp:#
root@zhp:
#
root@zhp:# sudo systemctl restart trim_nginx
root@zhp:
#
root@zhp:#
root@zhp:
#

重启了,没反应。打不开。

3

主题

13

回帖

0

牛值

江湖小虾

2025-9-27 11:16:54 楼主 显示全部楼层
Tang_Ao6v7 发表于 2025-9-27 10:41
sudo systemctl restart trim_nginx

重启之后,运行这个指令报错了


root@zhp:~# sudo systemctl restart trim_nginx

** for trim_nginx.service failed because the control process exited with error code.
See "systemctl status trim_nginx.service" and "journalctl -xeu trim_nginx.service" for details.

4

主题

743

回帖

0

牛值

社区共建团

社区共建团荣誉勋章飞牛百度网盘玩家

2025-9-27 15:37:26 显示全部楼层
新新小朋友 发表于 2025-9-27 08:50
老兄,好像不行,nginx好像挂了。

Failed to restart nginx.service: Unit nginx.service not found.

Nginx 是通过 Docker 容器运行的(PID 20685),而非系统服务,要终结这个PID

kill -9 20685

如果终结成功,释放了80/443端口,去网页登录飞牛,看能不能成功

如果还是不行,别折腾了,重装飞牛吧,速度最快
重装了...  详情 回复
2025-9-27 17:56

2

主题

1898

回帖

350

牛值

共建版主

fnOS1.0上线纪念勋章社区共建团荣誉勋章

2025-9-27 16:17:22 显示全部楼层
curl https://static2.fnnas.com/aptfix/fixapt.sh | bash 修复下试试
重装了...  详情 回复
2025-9-27 17:57

3

主题

13

回帖

0

牛值

江湖小虾

2025-9-27 17:56:51 楼主 显示全部楼层
yyywd 发表于 2025-9-27 15:37
Nginx 是通过 Docker 容器运行的(PID 20685),而非系统服务,要终结这个PID

kill -9 20685

重装了...

3

主题

13

回帖

0

牛值

江湖小虾

2025-9-27 17:57:16 楼主 显示全部楼层
一西啊 发表于 2025-9-27 16:17
curl https://static2.fnnas.com/aptfix/fixapt.sh | bash 修复下试试

重装了...

2

主题

1898

回帖

350

牛值

共建版主

fnOS1.0上线纪念勋章社区共建团荣誉勋章

2025-9-27 18:01:11 显示全部楼层
好吧…
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则