用的宝塔面板, 按以前都是安装宝塔, 配置 lnmp 环境, 上传代码 就可以跑起来了.
但是奇怪的是adminer.php
, phpinfo()
这类可以运行起来, 但项目是 thinkphp 的就无限等待 要么就首页空白 200ok 无响应内容
折腾两天了 系统都重装了两次 求助大佬 帮忙看看怎么解决这个问题
[10-Aug-2020 13:44:20] ERROR: failed to post process the configuration
[10-Aug-2020 13:44:20] ERROR: FPM initialization failed
[10-Aug-2020 13:44:37] NOTICE: fpm is running, pid 27325
[10-Aug-2020 13:44:37] NOTICE: ready to handle connections
[10-Aug-2020 13:52:59] NOTICE: Finishing ...
[10-Aug-2020 13:52:59] NOTICE: exiting, bye-bye!
[10-Aug-2020 13:53:00] ALERT: [pool www] pm.min_spare_servers(4) and pm.max_spare_servers(19) cannot be greater than pm.max_children(8)
[10-Aug-2020 13:53:00] ERROR: failed to post process the configuration
[10-Aug-2020 13:53:00] ERROR: FPM initialization failed
[10-Aug-2020 13:53:57] NOTICE: fpm is running, pid 27398
[10-Aug-2020 13:53:57] NOTICE: ready to handle connections
[10-Aug-2020 14:01:00] NOTICE: Finishing ...
[10-Aug-2020 14:01:00] NOTICE: exiting, bye-bye!
[10-Aug-2020 14:01:01] NOTICE: fpm is running, pid 2774
[10-Aug-2020 14:01:01] NOTICE: ready to handle connections
1
garlics 2020-08-10 14:25:35 +08:00
把 thinkphp 调试打开,看下报什么错。估计是少了某个拓展或者数据库配置错了
|
2
ddefewfewf 2020-08-10 14:26:59 +08:00
|
3
zpfhbyx 2020-08-10 14:27:13 +08:00
|
5
edk24 OP @ddefewfewf 这一排下来, 全被我点红了....
|
11
edk24 OP 全是信息日志
``` [2020-08-10T14:43:02+08:00] 1.204.205.184 GET shop.08588888877.com/ [运行时间:0.004625s] [吞吐率:216.21req/s] [内存消耗:364.93kb] [文件加载:76] [ info ] [ LANG ] /www/wwwroot/shop.08588888877.com/thinkphp/lang/zh-cn.php [ info ] [ ROUTE ] array ( ) [ info ] [ HEADER ] array ( 'cookie' => 'adminer_version=0; thinkphp_show_page_trace=1|5', 'accept-language' => 'zh-CN,zh;q=0.9,en;q=0.8', 'accept-encoding' => 'gzip, deflate', 'accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9', 'user-agent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36', 'upgrade-insecure-requests' => '1', 'dnt' => '1', 'cache-control' => 'max-age=0', 'connection' => 'keep-alive', 'host' => 'shop.08588888877.com', 'content-length' => '', 'content-type' => '', ) [ info ] [ PARAM ] array ( ) ``` @garlics 只能显示个 trace 而且必须是首页才显示, 其他任何页面直接无限加载 |
12
troycode 2020-08-10 14:46:53 +08:00
tp 的配置文件有没有问题,既然能打开单个文件,还是要找 tp 的问题吧
|
13
edk24 OP |
14
Felldeadbird 2020-08-10 14:57:41 +08:00
先用排除法,单独创建一个空白的 PHP 文件。 执行简单的 DB 连接。看看是否可以正常。先确保整体 PHP MYSQL 环境是正常。
在去 TP 框架下,进行断层分析。 我感觉是配置文件 连接一个不可能连接的库,导致一直转圈圈。 |
15
edk24 OP @Felldeadbird 这个应该不可能的吧... 我试试
|
17
garlics 2020-08-10 15:01:30 +08:00 1
我访问了下你这个 shop.08588888877.com ,php 是正常的,空白是因为静态文件 js css 加载不出来(没想到你这么小白)。应该是部分 nginx 的进程挂了,你把 nginx 的 worker_processes 改成 1 试试
|