但很多人用 Nginx 的时候都会出现 500 错误,根据我使用的情况来看,有以下几种情况。
1、是否磁盘空间不足?
使用 df -k 查看硬盘空间是否满了。清理硬盘空间就可以解决500错误。nginx如果开启了access log,在不需要的情况下,最好关闭access log。access log会占用大量硬盘空间。
2、nginx配置文件错误?
这里不是指语法错误,nginx如果配置文件有语法错误,启动的时候就会提示。当配置rewrite的时候,有些规则处理不当会出现500错误,请仔细检查自己的rewrite规则。如果配置文件里有些变量设置不当,也会出现500错误,比如引用了一个没有值的变量。
3、如果上面的问题都不存在可能是模拟的并发数太多了,需要调整一下nginx.conf的并发设置数
4、还有就是Linux索引节点(inode)用满导致故障的,df -i
inode译成中文就是索引节点,每个存储设备(例如硬盘)或存储设备的分区被格式化为文件系统后,应该有两部份,一部份是inode,另一部份是Block,Block是用来存储数据用的。而inode呢,就是用来存储这些数据的信息,这些信息包括文件大小、属主、归属的用户组、读写权限等。inode为每个文件进行信息索引,所以就有了inode的数值。操作系统根据指令,能通过inode值最快的找到相对应的文件。 而服务器的Block虽然还有剩余,但inode已经用满,因此在创建新目录或文件时,系统提示磁盘空间不足。
一般分析思路:
(1)查看nginx error log ,查看php error log
nginx 错误日志 error.log 默认位置:/usr/local/nginx/logs
(2)如果是too many open files,修改nginx的worker_rlimit_nofile参数,使用ulimit查看系统打开文件限制,修改/etc/security/limits.conf
(3)如果是脚本的问题,则需要修复脚本错误,并优化代码
(4)各种优化都做好,还是出现too many open files,那就要考虑做负载均衡,把流量分散到不同服务器上去了。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
解决方法是:
1 打开/etc/security/limits.conf文件,加上两句
复制代码代码如下:
* soft nofile 65535
* hard nofile 65535
2 打开/etc/nginx/nginx.conf
在worker_processes的下面增加一行
复制代码代码如下:
worker_rlimit_nofile 65535;
3 重新启动nginx,重新载入设置
复制代码代码如下:
kill -9 `ps -ef | grep php | grep -v grep | awk
'{print $2}'
`
/usr/bin/spawn-fcgi -a 127.0.0.1 -p 9000 -C 100 -u www-data -f /usr/bin/php-cgi
killall -HUP nginx
重启后再看nginx的错误日志,也没有发现500报错的情况了。
4、有可能是数据库问题我的在nginx日志php日志都没有发现什么问题, 最后发现数据库访问不了,修正后问题解决。
如果按上述方法仍然解决不了问题,就可能是配置或是程序有错误了。
1 查看nginx的错误日志,找到可能的原因。
如果提示某些儿PHP扩展没有安装,则去php.ini中打开对应该的扩展或是安装对应该的扩展,重启nginx和php-fpm,再次刷新页面。
2 如果数据库连接有问题,也可能会出现500错误,不过日志中一定会体现的
在日志中提示相应的数据库连接有问题了,就要去查看数据库连接是否正确。根据日志,修改对应该的文件,数据库问题解决后,页面即恢复正常。
NAME | COMPONENT | DURATION | 0 ms | 35 ms | 70 ms | 105 ms | 140 ms | 175 ms | 210 ms | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Bootstrap | Timer | 38.97 ms | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Routing | Timer | 0.09 ms | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Before Filters | Timer | 0.05 ms | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Controller | Timer | 130.28 ms | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
After Filters | Timer | 0.94 ms |
Time | Query String | |
---|---|---|
0.73 ms | SELECT * FROM `dr_1_share_index` WHERE `id` = 831513 | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/BaseBuilder.php:1616 |
1 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/BaseBuilder.php:1616 CodeIgniter\Database\BaseConnection->query() 2 /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Core/Model.php:498 CodeIgniter\Database\BaseBuilder->get() 3 /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Control/Show.php:19 Phpcmf\Model->get() 4 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/CodeIgniter.php:943 Phpcmf\Control\Show->index() 5 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/CodeIgniter.php:503 CodeIgniter\CodeIgniter->runController() 6 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/CodeIgniter.php:361 CodeIgniter\CodeIgniter->handleRequest() 7 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Init.php:106 CodeIgniter\CodeIgniter->run() 8 /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Init.php:500 require() 9 /webdata/wwwroot/www.wxx86.cn/public/index.php:50 require() |
||
0.76 ms | SELECT * FROM `dr_1_article` WHERE `id` = 831513 | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/BaseBuilder.php:1616 |
1 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/BaseBuilder.php:1616 CodeIgniter\Database\BaseConnection->query() 2 /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Core/Model.php:498 CodeIgniter\Database\BaseBuilder->get() 3 /webdata/wwwroot/www.wxx86.cn/dayrui/App/Module/Models/Content.php:891 Phpcmf\Model->get() 4 /webdata/wwwroot/www.wxx86.cn/dayrui/App/Module/Extends/Home/Module.php:477 Phpcmf\Model\Module\Content->get_data() 5 /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Control/Show.php:36 Phpcmf\Home\Module->_Show() 6 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/CodeIgniter.php:943 Phpcmf\Control\Show->index() 7 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/CodeIgniter.php:503 CodeIgniter\CodeIgniter->runController() 8 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/CodeIgniter.php:361 CodeIgniter\CodeIgniter->handleRequest() 9 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Init.php:106 CodeIgniter\CodeIgniter->run() 10 /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Init.php:500 require() 11 /webdata/wwwroot/www.wxx86.cn/public/index.php:50 require() |
||
1.92 ms | SELECT * FROM `dr_1_article_data_0` WHERE `id` = 831513 | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/BaseBuilder.php:1616 |
1 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/BaseBuilder.php:1616 CodeIgniter\Database\BaseConnection->query() 2 /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Core/Model.php:498 CodeIgniter\Database\BaseBuilder->get() 3 /webdata/wwwroot/www.wxx86.cn/dayrui/App/Module/Models/Content.php:904 Phpcmf\Model->get() 4 /webdata/wwwroot/www.wxx86.cn/dayrui/App/Module/Extends/Home/Module.php:477 Phpcmf\Model\Module\Content->get_data() 5 /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Control/Show.php:36 Phpcmf\Home\Module->_Show() 6 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/CodeIgniter.php:943 Phpcmf\Control\Show->index() 7 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/CodeIgniter.php:503 CodeIgniter\CodeIgniter->runController() 8 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/CodeIgniter.php:361 CodeIgniter\CodeIgniter->handleRequest() 9 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Init.php:106 CodeIgniter\CodeIgniter->run() 10 /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Init.php:500 require() 11 /webdata/wwwroot/www.wxx86.cn/public/index.php:50 require() |
||
2.59 ms | SELECT * FROM `dr_1_article` WHERE `catid` = 2 AND `id` < 831513 ORDER BY `id` desc LIMIT 1 | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/BaseBuilder.php:1616 |
1 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/BaseBuilder.php:1616 CodeIgniter\Database\BaseConnection->query() 2 /webdata/wwwroot/www.wxx86.cn/dayrui/App/Module/Extends/Home/Module.php:774 CodeIgniter\Database\BaseBuilder->get() 3 /webdata/wwwroot/www.wxx86.cn/dayrui/App/Module/Extends/Home/Module.php:497 Phpcmf\Home\Module->_Show_Data() 4 /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Control/Show.php:36 Phpcmf\Home\Module->_Show() 5 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/CodeIgniter.php:943 Phpcmf\Control\Show->index() 6 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/CodeIgniter.php:503 CodeIgniter\CodeIgniter->runController() 7 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/CodeIgniter.php:361 CodeIgniter\CodeIgniter->handleRequest() 8 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Init.php:106 CodeIgniter\CodeIgniter->run() 9 /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Init.php:500 require() 10 /webdata/wwwroot/www.wxx86.cn/public/index.php:50 require() |
||
0.44 ms | SELECT * FROM `dr_1_article` WHERE `catid` = 2 AND `id` > 831513 ORDER BY `id` asc LIMIT 1 | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/BaseBuilder.php:1616 |
1 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/BaseBuilder.php:1616 CodeIgniter\Database\BaseConnection->query() 2 /webdata/wwwroot/www.wxx86.cn/dayrui/App/Module/Extends/Home/Module.php:784 CodeIgniter\Database\BaseBuilder->get() 3 /webdata/wwwroot/www.wxx86.cn/dayrui/App/Module/Extends/Home/Module.php:497 Phpcmf\Home\Module->_Show_Data() 4 /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Control/Show.php:36 Phpcmf\Home\Module->_Show() 5 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/CodeIgniter.php:943 Phpcmf\Control\Show->index() 6 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/CodeIgniter.php:503 CodeIgniter\CodeIgniter->runController() 7 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/CodeIgniter.php:361 CodeIgniter\CodeIgniter->handleRequest() 8 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Init.php:106 CodeIgniter\CodeIgniter->run() 9 /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Init.php:500 require() 10 /webdata/wwwroot/www.wxx86.cn/public/index.php:50 require() |
||
2.13 ms | SELECT * FROM `dr_1_article` WHERE `dr_1_article`.`catid` = 2 ORDER BY `dr_1_article`.`hits` DESC LIMIT 10 | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Core/View.php:1332 |
1 /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Core/View.php:1332 CodeIgniter\Database\BaseConnection->query() 2 /webdata/wwwroot/www.wxx86.cn/dayrui/App/Module/Action/Module.php:296 Phpcmf\View->_query() 3 /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Core/View.php:1280 require() 4 /webdata/wwwroot/www.wxx86.cn/cache/template/_DS_webdata_DS_wwwroot_DS_www.wxx86.cn_DS_template_DS_pc_DS_default_DS_home_DS_show.html.cache.php:122 Phpcmf\View->list_tag() 5 /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Core/View.php:284 include() 6 /webdata/wwwroot/www.wxx86.cn/dayrui/App/Module/Extends/Home/Module.php:596 Phpcmf\View->display() 7 /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Control/Show.php:36 Phpcmf\Home\Module->_Show() 8 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/CodeIgniter.php:943 Phpcmf\Control\Show->index() 9 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/CodeIgniter.php:503 CodeIgniter\CodeIgniter->runController() 10 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/CodeIgniter.php:361 CodeIgniter\CodeIgniter->handleRequest() 11 /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Init.php:106 CodeIgniter\CodeIgniter->run() 12 /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Init.php:500 require() 13 /webdata/wwwroot/www.wxx86.cn/public/index.php:50 require() |
模板 | 路径 |
---|---|
show.html | /webdata/wwwroot/www.wxx86.cn/template/pc/default/home/show.html |
header.html | /webdata/wwwroot/www.wxx86.cn/template/pc/default/home/header.html |
footer.html | /webdata/wwwroot/www.wxx86.cn/template/pc/default/home/footer.html |
模板 | 提示 |
---|---|
show.html | 由于模板文件[/webdata/wwwroot/www.wxx86.cn/template/pc/default/home/article/show.html]不存在,因此本页面引用主目录的模板[/webdata/wwwroot/www.wxx86.cn/template/pc/default/home/show.html] |
header.html | 由于模板文件[/webdata/wwwroot/www.wxx86.cn/template/pc/default/home/article/header.html]不存在,因此本页面引用主目录的模板[/webdata/wwwroot/www.wxx86.cn/template/pc/default/home/header.html] |
footer.html | 由于模板文件[/webdata/wwwroot/www.wxx86.cn/template/pc/default/home/article/footer.html]不存在,因此本页面引用主目录的模板[/webdata/wwwroot/www.wxx86.cn/template/pc/default/home/footer.html] |
id | '831513' |
catid | '2' |
title | '500 Internal Server Error的原因及解决方法' |
thumb | NULL |
keywords | '服务器, 内部错误, 500 Internal Server Error' |
description | '500(服务器内部错误) 服务器遇到错误,无法完成请求。 但很多人用 Nginx 的时候都会出现 500 错误,根据我使用的情况来看,有以下几种情况。 1、是否磁盘空间不足? 使用 df -k 查看硬盘空间是否满了。清理硬盘空间就可以解决500错误。nginx如果开启' |
hits | '5' |
uid | '1' |
author | 'admin' |
status | '9' |
url | '/web/831513.html' |
link_id | '0' |
tableid | '0' |
inputip | '' |
inputtime | '2023-08-12 10:07:26' |
updatetime | '2023-08-12 10:28:10' |
displayorder | '0' |
content | '<span style="color: rgb(0, 0, 0); font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace; font-size: 12px; text-wrap: nowrap; background-color: rgb(244, 244, 244);">500(服务器内部错误) 服务器遇到错误,无法完成请求。</span> <p> </p> <p style="margin: 10px auto; padding: 0px; color: rgb(51, 51, 51); font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255);">但很多人用 Nginx 的时候都会出现 500 错误,根据我使用的情况来看,有以下几种情况。 </p> <p style="margin: 10px auto; padding: 0px; color: rgb(51, 51, 51); font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255);">1、是否磁盘空间不足?</p> <p style="margin: 10px auto; padding: 0px; color: rgb(51, 51, 51); font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255);">使用 df -k 查看硬盘空间是否满了。清理硬盘空间就可以解决500错误。nginx如果开启了access log,在不需要的情况下,最好关闭access log。access log会占用大量硬盘空间。</p> <p style="margin: 10px auto; padding: 0px; color: rgb(51, 51, 51); font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255);">2、nginx配置文件错误?</p> <p style="margin: 10px auto; padding: 0px; color: rgb(51, 51, 51); font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255);">这里不是指语法错误,nginx如果配置文件有语法错误,启动的时候就会提示。当配置rewrite的时候,有些规则处理不当会出现500错误,请仔细检查自己的rewrite规则。如果配置文件里有些变量设置不当,也会出现500错误,比如引用了一个没有值的变量。</p> <p style="margin: 10px auto; padding: 0px; color: rgb(51, 51, 51); font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255);">3、如果上面的问题都不存在可能是模拟的并发数太多了,需要调整一下nginx.conf的并发设置数</p> <p style="margin: 10px auto; padding: 0px; color: rgb(51, 51, 51); font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255);">4、还有就是Linux索引节点(inode)用满导致故障的,df -i <br> </p> <p style="margin: 10px auto; padding: 0px; color: rgb(51, 51, 51); font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255);">inode译成中文就是索引节点,每个存储设备(例如硬盘)或存储设备的分区被格式化为文件系统后,应该有两部份,一部份是inode,另一部份是Block,Block是用来存储数据用的。而inode呢,就是用来存储这些数据的信息,这些信息包括文件大小、属主、归属的用户组、读写权限等。inode为每个文件进行信息索引,所以就有了inode的数值。操作系统根据指令,能通过inode值最快的找到相对应的文件。 而服务器的Block虽然还有剩余,但inode已经用满,因此在创建新目录或文件时,系统提示磁盘空间不足。</p> <p style="margin-top: 10px; margin-bottom: 10px; padding: 0px; font-size: 16px; line-height: 1.5; color: rgb(51, 51, 51); font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif; background-color: rgb(255, 255, 255);">一般分析思路:</p> <p style="margin: 10px auto; padding: 0px; color: rgb(51, 51, 51); font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255);">(1)查看nginx error log ,查看php error log </p> <p style="margin: 10px auto; padding: 0px; color: rgb(51, 51, 51); font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255);"> nginx 错误日志 error.log 默认位置:/usr/local/nginx/logs</p> <p style="margin: 10px auto; padding: 0px; color: rgb(51, 51, 51); font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255);">(2)如果是too many open files,修改nginx的worker_rlimit_nofile参数,使用ulimit查看系统打开文件限制,修改/etc/security/limits.conf</p> <p style="margin: 10px auto; padding: 0px; color: rgb(51, 51, 51); font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255);">(3)如果是脚本的问题,则需要修复脚本错误,并优化代码</p> <p style="margin: 10px auto; padding: 0px; color: rgb(51, 51, 51); font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255);">(4)各种优化都做好,还是出现too many open files,那就要考虑做负载均衡,把流量分散到不同服务器上去了。</p> <p class="cnblogs_Highlighter sh-gutter" style="margin: 0px; padding: 0px; color: rgb(51, 51, 51); font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255);"> </p> <p style="margin: 0px; padding: 0px;"> </p> <p id="highlighter_441129" class="syntaxhighlighter php" style="padding: 0px; width: 818px; margin: 1em 0px !important; position: relative !important; overflow: auto !important; font-size: 1em !important;"> </p> <p border="0" cellpadding="0" cellspacing="0" style="max-width: 850px; width: 818px; word-break: break-word; margin-top: 0px !important; margin-bottom: 0px !important; padding: 0px !important; border-radius: 0px !important; background: none !important; border: 0px !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.1em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; font-size: 12px !important; min-height: auto !important;"> </p> <p style="margin: 0px !important; padding: 0px !important; border-radius: 0px !important; background: none !important; border: 0px !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.1em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important;"> </p> <p class="line number1 index0 alt2" style="margin: 0px !important; padding: 0px 0.5em !important; border-radius: 0px !important; background: none rgb(244, 244, 244) !important; border-width: 0px 2px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; text-align: right !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;">1</p> <p class="line number2 index1 alt1" style="margin: 0px !important; padding: 0px 0.5em !important; border-radius: 0px !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-width: 0px 2px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; text-align: right !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;">2</p> <p class="line number3 index2 alt2" style="margin: 0px !important; padding: 0px 0.5em !important; border-radius: 0px !important; background: none rgb(244, 244, 244) !important; border-width: 0px 2px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; text-align: right !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;">3</p> <p class="line number4 index3 alt1" style="margin: 0px !important; padding: 0px 0.5em !important; border-radius: 0px !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-width: 0px 2px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; text-align: right !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;">4</p> <p class="line number5 index4 alt2" style="margin: 0px !important; padding: 0px 0.5em !important; border-radius: 0px !important; background: none rgb(244, 244, 244) !important; border-width: 0px 2px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; text-align: right !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;">5</p> <p class="line number6 index5 alt1" style="margin: 0px !important; padding: 0px 0.5em !important; border-radius: 0px !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-width: 0px 2px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; text-align: right !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;">6</p> <p class="line number7 index6 alt2" style="margin: 0px !important; padding: 0px 0.5em !important; border-radius: 0px !important; background: none rgb(244, 244, 244) !important; border-width: 0px 2px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; text-align: right !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;">7</p> <p class="line number8 index7 alt1" style="margin: 0px !important; padding: 0px 0.5em !important; border-radius: 0px !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-width: 0px 2px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; text-align: right !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;">8</p> <p class="line number9 index8 alt2" style="margin: 0px !important; padding: 0px 0.5em !important; border-radius: 0px !important; background: none rgb(244, 244, 244) !important; border-width: 0px 2px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; text-align: right !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;">9</p> <p class="line number10 index9 alt1" style="margin: 0px !important; padding: 0px 0.5em !important; border-radius: 0px !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-width: 0px 2px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; text-align: right !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;">10</p> <p class="line number11 index10 alt2" style="margin: 0px !important; padding: 0px 0.5em !important; border-radius: 0px !important; background: none rgb(244, 244, 244) !important; border-width: 0px 2px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; text-align: right !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;">11</p> <p class="line number12 index11 alt1" style="margin: 0px !important; padding: 0px 0.5em !important; border-radius: 0px !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-width: 0px 2px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; text-align: right !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;">12</p> <p class="line number13 index12 alt2" style="margin: 0px !important; padding: 0px 0.5em !important; border-radius: 0px !important; background: none rgb(244, 244, 244) !important; border-width: 0px 2px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; text-align: right !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;">13</p> <p class="line number14 index13 alt1" style="margin: 0px !important; padding: 0px 0.5em !important; border-radius: 0px !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-width: 0px 2px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; text-align: right !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;">14</p> <p class="line number15 index14 alt2" style="margin: 0px !important; padding: 0px 0.5em !important; border-radius: 0px !important; background: none rgb(244, 244, 244) !important; border-width: 0px 2px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; text-align: right !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;">15</p> <p class="line number16 index15 alt1" style="margin: 0px !important; padding: 0px 0.5em !important; border-radius: 0px !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-width: 0px 2px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; text-align: right !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;">16</p> <p class="line number17 index16 alt2" style="margin: 0px !important; padding: 0px 0.5em !important; border-radius: 0px !important; background: none rgb(244, 244, 244) !important; border-width: 0px 2px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; text-align: right !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;">17</p> <p class="line number18 index17 alt1" style="margin: 0px !important; padding: 0px 0.5em !important; border-radius: 0px !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-width: 0px 2px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; text-align: right !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;">18</p> <p class="line number19 index18 alt2" style="margin: 0px !important; padding: 0px 0.5em !important; border-radius: 0px !important; background: none rgb(244, 244, 244) !important; border-width: 0px 2px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; text-align: right !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;">19</p> <p class="line number20 index19 alt1" style="margin: 0px !important; padding: 0px 0.5em !important; border-radius: 0px !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-width: 0px 2px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; text-align: right !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;">20</p> <p class="line number21 index20 alt2" style="margin: 0px !important; padding: 0px 0.5em !important; border-radius: 0px !important; background: none rgb(244, 244, 244) !important; border-width: 0px 2px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; text-align: right !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;">21</p> <p class="line number22 index21 alt1" style="margin: 0px !important; padding: 0px 0.5em !important; border-radius: 0px !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-width: 0px 2px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; text-align: right !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;">22</p> <p class="line number23 index22 alt2" style="margin: 0px !important; padding: 0px 0.5em !important; border-radius: 0px !important; background: none rgb(244, 244, 244) !important; border-width: 0px 2px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; text-align: right !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;">23</p> <p class="line number24 index23 alt1" style="margin: 0px !important; padding: 0px 0.5em !important; border-radius: 0px !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border-width: 0px 2px 0px 0px !important; border-top-style: initial !important; border-right-style: solid !important; border-bottom-style: initial !important; border-left-style: initial !important; border-top-color: initial !important; border-right-color: rgb(108, 226, 108) !important; border-bottom-color: initial !important; border-left-color: initial !important; border-image: initial !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; text-align: right !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;">24</p> <p class="container" style="z-index: 1; margin: 0px !important; padding: 0px !important; border-radius: 0px !important; background: none !important; border: 0px !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.1em !important; outline: 0px !important; overflow: visible !important; position: relative !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important;"> </p> <p class="line number1 index0 alt2" style="margin: 0px !important; padding: 0px 1em !important; border-radius: 0px !important; background: none rgb(244, 244, 244) !important; border: 0px !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;"><code class="php plain" style="margin: 0px !important; padding: 0px !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; border-radius: 0px !important; background-image: none !important; background-color: initial !important; border-width: 0px !important; border-style: initial !important; border-color: initial !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; color: rgb(0, 0, 0) !important;">解决方法是:</code></p> <p class="line number2 index1 alt1" style="margin: 0px !important; padding: 0px 1em !important; border-radius: 0px !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border: 0px !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;"> </p> <p class="line number3 index2 alt2" style="margin: 0px !important; padding: 0px 1em !important; border-radius: 0px !important; background: none rgb(244, 244, 244) !important; border: 0px !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;"><code class="php plain" style="margin: 0px !important; padding: 0px !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; border-radius: 0px !important; background-image: none !important; background-color: initial !important; border-width: 0px !important; border-style: initial !important; border-color: initial !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; color: rgb(0, 0, 0) !important;">1 打开/etc/security/limits.conf文件,加上两句</code></p> <p class="line number4 index3 alt1" style="margin: 0px !important; padding: 0px 1em !important; border-radius: 0px !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border: 0px !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;"> </p> <p class="line number5 index4 alt2" style="margin: 0px !important; padding: 0px 1em !important; border-radius: 0px !important; background: none rgb(244, 244, 244) !important; border: 0px !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;"><code class="php plain" style="margin: 0px !important; padding: 0px !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; border-radius: 0px !important; background-image: none !important; background-color: initial !important; border-width: 0px !important; border-style: initial !important; border-color: initial !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; color: rgb(0, 0, 0) !important;">复制代码代码如下:</code></p> <p class="line number6 index5 alt1" style="margin: 0px !important; padding: 0px 1em !important; border-radius: 0px !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border: 0px !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;"><code class="php plain" style="margin: 0px !important; padding: 0px !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; border-radius: 0px !important; background-image: none !important; background-color: initial !important; border-width: 0px !important; border-style: initial !important; border-color: initial !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; color: rgb(0, 0, 0) !important;">* soft nofile 65535</code></p> <p class="line number7 index6 alt2" style="margin: 0px !important; padding: 0px 1em !important; border-radius: 0px !important; background: none rgb(244, 244, 244) !important; border: 0px !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;"><code class="php plain" style="margin: 0px !important; padding: 0px !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; border-radius: 0px !important; background-image: none !important; background-color: initial !important; border-width: 0px !important; border-style: initial !important; border-color: initial !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; color: rgb(0, 0, 0) !important;">* hard nofile 65535</code></p> <p class="line number8 index7 alt1" style="margin: 0px !important; padding: 0px 1em !important; border-radius: 0px !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border: 0px !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;"> </p> <p class="line number9 index8 alt2" style="margin: 0px !important; padding: 0px 1em !important; border-radius: 0px !important; background: none rgb(244, 244, 244) !important; border: 0px !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;"><code class="php plain" style="margin: 0px !important; padding: 0px !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; border-radius: 0px !important; background-image: none !important; background-color: initial !important; border-width: 0px !important; border-style: initial !important; border-color: initial !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; color: rgb(0, 0, 0) !important;">2 打开/etc/nginx/nginx.conf</code></p> <p class="line number10 index9 alt1" style="margin: 0px !important; padding: 0px 1em !important; border-radius: 0px !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border: 0px !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;"><code class="php plain" style="margin: 0px !important; padding: 0px !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; border-radius: 0px !important; background-image: none !important; background-color: initial !important; border-width: 0px !important; border-style: initial !important; border-color: initial !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; color: rgb(0, 0, 0) !important;">在worker_processes的下面增加一行</code></p> <p class="line number11 index10 alt2" style="margin: 0px !important; padding: 0px 1em !important; border-radius: 0px !important; background: none rgb(244, 244, 244) !important; border: 0px !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;"> </p> <p class="line number12 index11 alt1" style="margin: 0px !important; padding: 0px 1em !important; border-radius: 0px !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border: 0px !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;"><code class="php plain" style="margin: 0px !important; padding: 0px !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; border-radius: 0px !important; background-image: none !important; background-color: initial !important; border-width: 0px !important; border-style: initial !important; border-color: initial !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; color: rgb(0, 0, 0) !important;">复制代码代码如下:</code></p> <p class="line number13 index12 alt2" style="margin: 0px !important; padding: 0px 1em !important; border-radius: 0px !important; background: none rgb(244, 244, 244) !important; border: 0px !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;"><code class="php plain" style="margin: 0px !important; padding: 0px !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; border-radius: 0px !important; background-image: none !important; background-color: initial !important; border-width: 0px !important; border-style: initial !important; border-color: initial !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; color: rgb(0, 0, 0) !important;">worker_rlimit_nofile 65535;</code></p> <p class="line number14 index13 alt1" style="margin: 0px !important; padding: 0px 1em !important; border-radius: 0px !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border: 0px !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;"> </p> <p class="line number15 index14 alt2" style="margin: 0px !important; padding: 0px 1em !important; border-radius: 0px !important; background: none rgb(244, 244, 244) !important; border: 0px !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;"><code class="php plain" style="margin: 0px !important; padding: 0px !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; border-radius: 0px !important; background-image: none !important; background-color: initial !important; border-width: 0px !important; border-style: initial !important; border-color: initial !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; color: rgb(0, 0, 0) !important;">3 重新启动nginx,重新载入设置</code></p> <p class="line number16 index15 alt1" style="margin: 0px !important; padding: 0px 1em !important; border-radius: 0px !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border: 0px !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;"> </p> <p class="line number17 index16 alt2" style="margin: 0px !important; padding: 0px 1em !important; border-radius: 0px !important; background: none rgb(244, 244, 244) !important; border: 0px !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;"><code class="php plain" style="margin: 0px !important; padding: 0px !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; border-radius: 0px !important; background-image: none !important; background-color: initial !important; border-width: 0px !important; border-style: initial !important; border-color: initial !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; color: rgb(0, 0, 0) !important;">复制代码代码如下:</code></p> <p class="line number18 index17 alt1" style="margin: 0px !important; padding: 0px 1em !important; border-radius: 0px !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border: 0px !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;"><code class="php plain" style="margin: 0px !important; padding: 0px !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; border-radius: 0px !important; background-image: none !important; background-color: initial !important; border-width: 0px !important; border-style: initial !important; border-color: initial !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; color: rgb(0, 0, 0) !important;">kill -9 `ps -ef | grep php | grep -v grep | awk </code><code class="php string" style="margin: 0px !important; padding: 0px !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; border-radius: 0px !important; background-image: none !important; background-color: initial !important; border-width: 0px !important; border-style: initial !important; border-color: initial !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; color: rgb(0, 0, 255) !important;">\'{print $2}\'</code><code class="php plain" style="margin: 0px !important; padding: 0px !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; border-radius: 0px !important; background-image: none !important; background-color: initial !important; border-width: 0px !important; border-style: initial !important; border-color: initial !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; color: rgb(0, 0, 0) !important;">`</code></p> <p class="line number19 index18 alt2" style="margin: 0px !important; padding: 0px 1em !important; border-radius: 0px !important; background: none rgb(244, 244, 244) !important; border: 0px !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;"><code class="php plain" style="margin: 0px !important; padding: 0px !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; border-radius: 0px !important; background-image: none !important; background-color: initial !important; border-width: 0px !important; border-style: initial !important; border-color: initial !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; color: rgb(0, 0, 0) !important;">/usr/bin/spawn-fcgi -a 127.0.0.1 -p 9000 -C 100 -u www-data -f /usr/bin/php-cgi</code></p> <p class="line number20 index19 alt1" style="margin: 0px !important; padding: 0px 1em !important; border-radius: 0px !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border: 0px !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;"><code class="php plain" style="margin: 0px !important; padding: 0px !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; border-radius: 0px !important; background-image: none !important; background-color: initial !important; border-width: 0px !important; border-style: initial !important; border-color: initial !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; color: rgb(0, 0, 0) !important;">killall -HUP nginx</code></p> <p class="line number21 index20 alt2" style="margin: 0px !important; padding: 0px 1em !important; border-radius: 0px !important; background: none rgb(244, 244, 244) !important; border: 0px !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;"><code class="php plain" style="margin: 0px !important; padding: 0px !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; border-radius: 0px !important; background-image: none !important; background-color: initial !important; border-width: 0px !important; border-style: initial !important; border-color: initial !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; color: rgb(0, 0, 0) !important;">重启后再看nginx的错误日志,也没有发现500报错的情况了。</code></p> <p class="line number22 index21 alt1" style="margin: 0px !important; padding: 0px 1em !important; border-radius: 0px !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border: 0px !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;"> </p> <p class="line number23 index22 alt2" style="margin: 0px !important; padding: 0px 1em !important; border-radius: 0px !important; background: none rgb(244, 244, 244) !important; border: 0px !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;"> </p> <p class="line number24 index23 alt1" style="margin: 0px !important; padding: 0px 1em !important; border-radius: 0px !important; background-image: none !important; background-position: initial !important; background-size: initial !important; background-repeat: initial !important; background-attachment: initial !important; background-origin: initial !important; background-clip: initial !important; border: 0px !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; min-height: auto !important; text-wrap: nowrap !important;"><code class="php plain" style="margin: 0px !important; padding: 0px !important; font-family: Consolas, "Bitstream Vera Sans Mono", "Courier New", Courier, monospace !important; border-radius: 0px !important; background-image: none !important; background-color: initial !important; border-width: 0px !important; border-style: initial !important; border-color: initial !important; inset: auto !important; float: none !important; height: auto !important; line-height: 1.8em !important; outline: 0px !important; overflow: visible !important; position: static !important; vertical-align: baseline !important; width: auto !important; box-sizing: content-box !important; min-height: auto !important; color: rgb(0, 0, 0) !important;">4、有可能是数据库问题我的在nginx日志php日志都没有发现什么问题, 最后发现数据库访问不了,修正后问题解决。</code></p> <p></p> <p></p> <p></p> <p></p> <p></p> <p style="margin: 10px auto; padding: 0px; color: rgb(51, 51, 51); font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255);"> </p> <p align="left" style="margin: 10px auto; padding: 0px; color: rgb(51, 51, 51); font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255);"><span style="margin: 0px; padding: 0px; font-family: 宋体;">如果按上述方法仍然解决不了问题,就可能是配置或是程序有错误了。</span></p> <p align="left" style="margin: 10px auto; padding: 0px; color: rgb(51, 51, 51); font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255);"><span style="margin: 0px; padding: 0px; font-family: 宋体;">1 查看nginx的错误日志,找到可能的原因。</span></p> <p align="left" style="margin: 10px auto; padding: 0px; color: rgb(51, 51, 51); font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255);"><span style="margin: 0px; padding: 0px; font-family: 宋体;"> 如果提示某些儿PHP扩展没有安装,则去php.ini中打开对应该的扩展或是安装对应该的扩展,重启nginx和php-fpm,再次刷新页面。</span></p> <p align="left" style="margin: 10px auto; padding: 0px; color: rgb(51, 51, 51); font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255);"><span style="margin: 0px; padding: 0px; font-family: 宋体;">2 如果数据库连接有问题,也可能会出现500错误,不过日志中一定会体现的</span></p> <p align="left" style="margin: 10px auto; padding: 0px; color: rgb(51, 51, 51); font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 14px; background-color: rgb(255, 255, 255);"><span style="margin: 0px; padding: 0px; font-family: 宋体;"> 在日志中提示相应的数据库连接有问题了,就要去查看数据库连接是否正确。根据日志,修改对应该的文件,数据库问题解决后,页面即恢复正常。</span></p> <p></p>' |
_inputtime | '1691806046' |
_updatetime | '1691807290' |
tag | '服务器, 内部错误, 500 Internal Server Error' |
kws | array ( '服务器' => '/index.php?s=article&c=search&keyword=%E6%9C%8D%E5%8A%A1%E5%99%A8', '内部错误' => '/index.php?s=article&c=search&keyword=%E5%86%85%E9%83%A8%E9%94%99%E8%AF%AF', '500 Internal Server Error' => '/index.php?s=article&c=search&keyword=500+Internal+Server+Error', ) |
tags | array ( '服务器' => '/index.php?s=tag&name=fuwuqi', '内部错误' => '/#没有找到对应的URL(关闭开发者模式将不会显示本词)', '500 Internal Server Error' => '/#没有找到对应的URL(关闭开发者模式将不会显示本词)', ) |
prev_page | array ( 'id' => '831508', 'catid' => '2', 'title' => 'frp内网穿透 visitor 的详细配置说明', 'thumb' => NULL, 'keywords' => 'frp, 内网穿透, 详细配置, visitor', 'description' => 'frp visitor 的详细配置说明。 通用配置 通用配置是指不同类型的 visitor 共同使用的一些配置参数。 基础配置 参数类型说明是否必须默认值可选值备注 rolestring角色是visitorvisitorvisitor 表示访问端 server_userstring要访问的 proxy 所属的用户名否当前用户如果为空,则', 'hits' => '17', 'uid' => '1', 'author' => 'admin', 'status' => '9', 'url' => '/web/831508.html', 'link_id' => '0', 'tableid' => '0', 'inputip' => '', 'inputtime' => '1691672777', 'updatetime' => '1691672777', 'displayorder' => '0', ) |
next_page | array ( 'id' => '831514', 'catid' => '2', 'title' => 'java.lang.NullPointerException错误处理方法及原因分析', 'thumb' => NULL, 'keywords' => 'java, nullpointerexception', 'description' => '学习java时常出现的NullPointerException异常,以及它的解决办法 java.lang.nullpointerexception是什么意思?java.lang.nullpointerexception怎么解决? 接下来就帮你解决它!!! 这个异常大家肯定都经常遇到,异常的解释是"程序 遇上了空指针",简单地说就是调用了未经初始', 'hits' => '3', 'uid' => '1', 'author' => 'admin', 'status' => '9', 'url' => '/web/831514.html', 'link_id' => '0', 'tableid' => '0', 'inputip' => '', 'inputtime' => '1691807205', 'updatetime' => '1691807205', 'displayorder' => '0', ) |
meta_title | '500 Internal Server Error的原因及解决方法_网络技术_晓说杂谈' |
meta_keywords | '服务器, 内部错误, 500 Internal Server Error' |
meta_description | '500(服务器内部错误) 服务器遇到错误,无法完成请求。 但很多人用 Nginx 的时候都会出现 500 错误,根据我使用的情况来看,有以下几种情况。 1、是否磁盘空间不足? 使用 df -k 查看硬盘空间是否满了。清理硬盘空间就可以解决500错误。nginx如果开启' |
cat | array ( 'id' => '2', 'tid' => '1', 'pid' => '0', 'mid' => 'article', 'pids' => '0', 'name' => '网络技术', 'dirname' => 'web', 'pdirname' => '', 'child' => 0, 'disabled' => '0', 'ismain' => 1, 'childids' => 2, 'thumb' => '', 'show' => '1', 'content' => '', 'setting' => array ( 'edit' => 1, 'disabled' => 0, 'template' => array ( 'list' => 'list.html', 'show' => 'show.html', 'category' => 'category.html', 'search' => 'search.html', 'pagesize' => 20, 'mpagesize' => 20, ), 'seo' => array ( 'list_title' => '[第{page}页{join}]{name}{join}{SITE_NAME}', 'show_title' => '[第{page}页{join}]{title}{join}{catname}{join}{SITE_NAME}', ), 'getchild' => 0, 'urlrule' => 1, 'html' => 0, 'chtml' => 0, ), 'displayorder' => '0', 'is_ctable' => '1', 'pcatpost' => 0, 'topid' => '2', 'catids' => array ( 0 => '2', ), 'is_post' => 1, 'url' => 'https://www.wxx86.cn/web', 'total' => '请使用count标签查询', 'field' => array ( ), ) |
top | array ( 'id' => '2', 'tid' => '1', 'pid' => '0', 'mid' => 'article', 'pids' => '0', 'name' => '网络技术', 'dirname' => 'web', 'pdirname' => '', 'child' => 0, 'disabled' => '0', 'ismain' => 1, 'childids' => 2, 'thumb' => '', 'show' => '1', 'content' => '', 'setting' => array ( 'edit' => 1, 'disabled' => 0, 'template' => array ( 'list' => 'list.html', 'show' => 'show.html', 'category' => 'category.html', 'search' => 'search.html', 'pagesize' => 20, 'mpagesize' => 20, ), 'seo' => array ( 'list_title' => '[第{page}页{join}]{name}{join}{SITE_NAME}', 'show_title' => '[第{page}页{join}]{title}{join}{catname}{join}{SITE_NAME}', ), 'getchild' => 0, 'urlrule' => 1, 'html' => 0, 'chtml' => 0, ), 'displayorder' => '0', 'is_ctable' => '1', 'pcatpost' => 0, 'topid' => '2', 'catids' => array ( 0 => '2', ), 'is_post' => 1, 'url' => 'https://www.wxx86.cn/web', 'total' => '请使用count标签查询', 'field' => array ( ), ) |
pageid | 1 |
params | array ( 'catid' => '2', ) |
parent | array ( 'id' => '2', 'tid' => '1', 'pid' => '0', 'mid' => 'article', 'pids' => '0', 'name' => '网络技术', 'dirname' => 'web', 'pdirname' => '', 'child' => 0, 'disabled' => '0', 'ismain' => 1, 'childids' => 2, 'thumb' => '', 'show' => '1', 'content' => '', 'setting' => array ( 'edit' => 1, 'disabled' => 0, 'template' => array ( 'list' => 'list.html', 'show' => 'show.html', 'category' => 'category.html', 'search' => 'search.html', 'pagesize' => 20, 'mpagesize' => 20, ), 'seo' => array ( 'list_title' => '[第{page}页{join}]{name}{join}{SITE_NAME}', 'show_title' => '[第{page}页{join}]{title}{join}{catname}{join}{SITE_NAME}', ), 'getchild' => 0, 'urlrule' => 1, 'html' => 0, 'chtml' => 0, ), 'displayorder' => '0', 'is_ctable' => '1', 'pcatpost' => 0, 'topid' => '2', 'catids' => array ( 0 => '2', ), 'is_post' => 1, 'url' => 'https://www.wxx86.cn/web', 'total' => '请使用count标签查询', 'field' => array ( ), ) |
related | array ( 1 => array ( 'id' => '1', 'tid' => '1', 'pid' => '0', 'mid' => 'article', 'pids' => '0', 'name' => '科技分享', 'dirname' => 'tech', 'pdirname' => '', 'child' => 0, 'disabled' => '0', 'ismain' => 1, 'childids' => 1, 'thumb' => '', 'show' => '1', 'content' => '', 'setting' => array ( 'edit' => 1, 'disabled' => 0, 'template' => array ( 'list' => 'list.html', 'show' => 'show.html', 'category' => 'category.html', 'search' => 'search.html', 'pagesize' => 20, 'mpagesize' => 20, ), 'seo' => array ( 'list_title' => '[第{page}页{join}]{name}{join}{SITE_NAME}', 'show_title' => '[第{page}页{join}]{title}{join}{catname}{join}{SITE_NAME}', ), 'getchild' => 0, 'urlrule' => 1, 'html' => 0, 'chtml' => 0, ), 'displayorder' => '0', 'is_ctable' => '1', 'pcatpost' => 0, 'topid' => '1', 'catids' => array ( 0 => '1', ), 'is_post' => 1, 'url' => 'https://www.wxx86.cn/tech', 'total' => '请使用count标签查询', 'field' => array ( ), ), 2 => array ( 'id' => '2', 'tid' => '1', 'pid' => '0', 'mid' => 'article', 'pids' => '0', 'name' => '网络技术', 'dirname' => 'web', 'pdirname' => '', 'child' => 0, 'disabled' => '0', 'ismain' => 1, 'childids' => 2, 'thumb' => '', 'show' => '1', 'content' => '', 'setting' => array ( 'edit' => 1, 'disabled' => 0, 'template' => array ( 'list' => 'list.html', 'show' => 'show.html', 'category' => 'category.html', 'search' => 'search.html', 'pagesize' => 20, 'mpagesize' => 20, ), 'seo' => array ( 'list_title' => '[第{page}页{join}]{name}{join}{SITE_NAME}', 'show_title' => '[第{page}页{join}]{title}{join}{catname}{join}{SITE_NAME}', ), 'getchild' => 0, 'urlrule' => 1, 'html' => 0, 'chtml' => 0, ), 'displayorder' => '0', 'is_ctable' => '1', 'pcatpost' => 0, 'topid' => '2', 'catids' => array ( 0 => '2', ), 'is_post' => 1, 'url' => 'https://www.wxx86.cn/web', 'total' => '请使用count标签查询', 'field' => array ( ), ), 3 => array ( 'id' => '3', 'tid' => '1', 'pid' => '0', 'mid' => 'article', 'pids' => '0', 'name' => '硬件设备', 'dirname' => 'hardware', 'pdirname' => '', 'child' => 0, 'disabled' => '0', 'ismain' => 1, 'childids' => 3, 'thumb' => '', 'show' => '1', 'content' => '', 'setting' => array ( 'edit' => 1, 'disabled' => 0, 'template' => array ( 'list' => 'list.html', 'show' => 'show.html', 'category' => 'category.html', 'search' => 'search.html', 'pagesize' => 20, 'mpagesize' => 20, ), 'seo' => array ( 'list_title' => '[第{page}页{join}]{name}{join}{SITE_NAME}', 'show_title' => '[第{page}页{join}]{title}{join}{catname}{join}{SITE_NAME}', ), 'getchild' => 0, 'urlrule' => 1, 'html' => 0, 'chtml' => 0, ), 'displayorder' => '0', 'is_ctable' => '0', 'pcatpost' => 0, 'topid' => '3', 'catids' => array ( 0 => '3', ), 'is_post' => 1, 'url' => 'https://www.wxx86.cn/hardware', 'total' => '请使用count标签查询', 'field' => array ( ), ), 4 => array ( 'id' => '4', 'tid' => '1', 'pid' => '0', 'mid' => 'article', 'pids' => '0', 'name' => '程序人生', 'dirname' => 'program', 'pdirname' => '', 'child' => 0, 'disabled' => '0', 'ismain' => 1, 'childids' => 4, 'thumb' => '', 'show' => '1', 'content' => '', 'setting' => array ( 'edit' => 1, 'disabled' => 0, 'template' => array ( 'list' => 'list.html', 'show' => 'show.html', 'category' => 'category.html', 'search' => 'search.html', 'pagesize' => 20, 'mpagesize' => 20, ), 'seo' => array ( 'list_title' => '[第{page}页{join}]{name}{join}{SITE_NAME}', 'show_title' => '[第{page}页{join}]{title}{join}{catname}{join}{SITE_NAME}', ), 'getchild' => 0, 'urlrule' => 1, 'html' => 0, 'chtml' => 0, ), 'displayorder' => '0', 'is_ctable' => '0', 'pcatpost' => 0, 'topid' => '4', 'catids' => array ( 0 => '4', ), 'is_post' => 1, 'url' => 'https://www.wxx86.cn/program', 'total' => '请使用count标签查询', 'field' => array ( ), ), 5 => array ( 'id' => '5', 'tid' => '1', 'pid' => '0', 'mid' => 'article', 'pids' => '0', 'name' => '探索发现', 'dirname' => 'jinrong', 'pdirname' => '', 'child' => 0, 'disabled' => '0', 'ismain' => 1, 'childids' => 5, 'thumb' => '', 'show' => '1', 'content' => '', 'setting' => array ( 'edit' => 1, 'disabled' => 0, 'template' => array ( 'list' => 'list.html', 'show' => 'show.html', 'category' => 'category.html', 'search' => 'search.html', 'pagesize' => 20, 'mpagesize' => 20, ), 'seo' => array ( 'list_title' => '[第{page}页{join}]{name}{join}{SITE_NAME}', 'show_title' => '[第{page}页{join}]{title}{join}{catname}{join}{SITE_NAME}', ), 'getchild' => 0, 'urlrule' => 1, 'html' => 0, 'chtml' => 0, ), 'displayorder' => '0', 'is_ctable' => '0', 'pcatpost' => 0, 'topid' => '5', 'catids' => array ( 0 => '5', ), 'is_post' => 1, 'url' => 'https://www.wxx86.cn/jinrong', 'total' => '请使用count标签查询', 'field' => array ( ), ), 6 => array ( 'id' => '6', 'tid' => '1', 'pid' => '0', 'mid' => 'article', 'pids' => '0', 'name' => '机械加工', 'dirname' => 'jixie', 'pdirname' => '', 'child' => 0, 'disabled' => '0', 'ismain' => 1, 'childids' => 6, 'thumb' => '', 'show' => '1', 'content' => '', 'setting' => array ( 'edit' => 1, 'disabled' => 0, 'template' => array ( 'list' => 'list.html', 'show' => 'show.html', 'category' => 'category.html', 'search' => 'search.html', 'pagesize' => 20, 'mpagesize' => 20, ), 'seo' => array ( 'list_title' => '[第{page}页{join}]{name}{join}{SITE_NAME}', 'show_title' => '[第{page}页{join}]{title}{join}{catname}{join}{SITE_NAME}', ), 'getchild' => 0, 'urlrule' => 1, 'html' => 0, 'chtml' => 0, ), 'displayorder' => '0', 'is_ctable' => '0', 'pcatpost' => 0, 'topid' => '6', 'catids' => array ( 0 => '6', ), 'is_post' => 1, 'url' => 'https://www.wxx86.cn/jixie', 'total' => '请使用count标签查询', 'field' => array ( ), ), 7 => array ( 'id' => '7', 'tid' => '1', 'pid' => '0', 'mid' => 'article', 'pids' => '0', 'name' => '电商', 'dirname' => 'dianshang', 'pdirname' => '', 'child' => 0, 'disabled' => '0', 'ismain' => 1, 'childids' => 7, 'thumb' => '', 'show' => '1', 'content' => '', 'setting' => array ( 'edit' => 1, 'disabled' => 0, 'template' => array ( 'list' => 'list.html', 'show' => 'show.html', 'category' => 'category.html', 'search' => 'search.html', 'pagesize' => 20, 'mpagesize' => 20, ), 'seo' => array ( 'list_title' => '[第{page}页{join}]{name}{join}{SITE_NAME}', 'show_title' => '[第{page}页{join}]{title}{join}{catname}{join}{SITE_NAME}', ), 'getchild' => 0, 'urlrule' => 1, 'html' => 0, 'chtml' => 0, ), 'displayorder' => '0', 'is_ctable' => '0', 'pcatpost' => 0, 'topid' => '7', 'catids' => array ( 0 => '7', ), 'is_post' => 1, 'url' => 'https://www.wxx86.cn/dianshang', 'total' => '请使用count标签查询', 'field' => array ( ), ), 8 => array ( 'id' => '8', 'tid' => '1', 'pid' => '0', 'mid' => 'article', 'pids' => '0', 'name' => '其他', 'dirname' => 'other', 'pdirname' => '', 'child' => 0, 'disabled' => '0', 'ismain' => 1, 'childids' => 8, 'thumb' => '', 'show' => '1', 'content' => '', 'setting' => array ( 'edit' => 1, 'disabled' => 0, 'template' => array ( 'list' => 'list.html', 'show' => 'show.html', 'category' => 'category.html', 'search' => 'search.html', 'pagesize' => 20, 'mpagesize' => 20, ), 'seo' => array ( 'list_title' => '[第{page}页{join}]{name}{join}{SITE_NAME}', 'show_title' => '[第{page}页{join}]{title}{join}{catname}{join}{SITE_NAME}', ), 'getchild' => 0, 'urlrule' => 1, 'html' => 0, 'chtml' => 0, ), 'displayorder' => '0', 'is_ctable' => '0', 'pcatpost' => 0, 'topid' => '8', 'catids' => array ( 0 => '8', ), 'is_post' => 1, 'url' => 'https://www.wxx86.cn/other', 'total' => '请使用count标签查询', 'field' => array ( ), ), 9 => array ( 'id' => '9', 'tid' => '1', 'pid' => '0', 'mid' => 'article', 'pids' => '0', 'name' => '日常知识', 'dirname' => 'zhishi', 'pdirname' => '', 'child' => 0, 'disabled' => '0', 'ismain' => 1, 'childids' => 9, 'thumb' => '', 'show' => '1', 'content' => '', 'setting' => array ( 'edit' => 1, 'disabled' => 0, 'template' => array ( 'list' => 'list.html', 'show' => 'show.html', 'category' => 'category.html', 'search' => 'search.html', 'pagesize' => 20, 'mpagesize' => 20, ), 'seo' => array ( 'list_title' => '[第{page}页{join}]{name}{join}{SITE_NAME}', 'show_title' => '[第{page}页{join}]{title}{join}{catname}{join}{SITE_NAME}', ), 'getchild' => 0, 'urlrule' => 1, 'html' => 0, 'chtml' => 0, ), 'displayorder' => '0', 'is_ctable' => '0', 'pcatpost' => 0, 'topid' => '9', 'catids' => array ( 0 => '9', ), 'is_post' => 1, 'url' => 'https://www.wxx86.cn/zhishi', 'total' => '请使用count标签查询', 'field' => array ( ), ), 10 => array ( 'id' => '10', 'tid' => '1', 'pid' => '0', 'mid' => 'article', 'pids' => '0', 'name' => '每日语录', 'dirname' => 'yulu', 'pdirname' => '', 'child' => 0, 'disabled' => '0', 'ismain' => 1, 'childids' => 10, 'thumb' => '', 'show' => '1', 'content' => '', 'setting' => array ( 'edit' => 1, 'disabled' => 0, 'template' => array ( 'list' => 'list.html', 'show' => 'show.html', 'category' => 'category.html', 'search' => 'search.html', 'pagesize' => 20, 'mpagesize' => 20, ), 'seo' => array ( 'list_title' => '[第{page}页{join}]{name}{join}{SITE_NAME}', 'show_title' => '[第{page}页{join}]{title}{join}{catname}{join}{SITE_NAME}', ), 'getchild' => 0, 'urlrule' => 1, 'html' => 0, 'chtml' => 0, ), 'displayorder' => '0', 'is_ctable' => '0', 'pcatpost' => 0, 'topid' => '10', 'catids' => array ( 0 => '10', ), 'is_post' => 1, 'url' => 'https://www.wxx86.cn/yulu', 'total' => '请使用count标签查询', 'field' => array ( ), ), ) |
urlrule | '/web/831513-[page].html' |
fix_html_now_url | '' |
my_web_url | 'https://www.wxx86.cn/web/831513.html' |
get | array ( 'c' => 'show', 'id' => '831513', 'm' => 'index', ) |
domain_app.php | /webdata/wwwroot/www.wxx86.cn/cache/config/domain_app.php |
domain_client.php | /webdata/wwwroot/www.wxx86.cn/cache/config/domain_client.php |
site.php | /webdata/wwwroot/www.wxx86.cn/cache/config/site.php |
system.php | /webdata/wwwroot/www.wxx86.cn/cache/config/system.php |
_DS_webdata_DS_wwwroot_DS_www.wxx86.cn_DS_template_DS_pc_DS_default_DS_home_DS_footer.html.cache.php | /webdata/wwwroot/www.wxx86.cn/cache/template/_DS_webdata_DS_wwwroot_DS_www.wxx86.cn_DS_template_DS_pc_DS_default_DS_home_DS_footer.html.cache.php |
_DS_webdata_DS_wwwroot_DS_www.wxx86.cn_DS_template_DS_pc_DS_default_DS_home_DS_header.html.cache.php | /webdata/wwwroot/www.wxx86.cn/cache/template/_DS_webdata_DS_wwwroot_DS_www.wxx86.cn_DS_template_DS_pc_DS_default_DS_home_DS_header.html.cache.php |
_DS_webdata_DS_wwwroot_DS_www.wxx86.cn_DS_template_DS_pc_DS_default_DS_home_DS_show.html.cache.php | /webdata/wwwroot/www.wxx86.cn/cache/template/_DS_webdata_DS_wwwroot_DS_www.wxx86.cn_DS_template_DS_pc_DS_default_DS_home_DS_show.html.cache.php |
custom.php | /webdata/wwwroot/www.wxx86.cn/config/custom.php |
database.php | /webdata/wwwroot/www.wxx86.cn/config/database.php |
hooks.php | /webdata/wwwroot/www.wxx86.cn/config/hooks.php |
rewrite.php | /webdata/wwwroot/www.wxx86.cn/config/rewrite.php |
Filters.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Autodraft/Config/Filters.php |
Hooks.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Bdts/Config/Hooks.php |
Filters.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Collapi/Config/Filters.php |
Hooks.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Member/Config/Hooks.php |
Member.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Member/Libraries/Member.php |
Member_auth.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Member/Libraries/Member_auth.php |
Hooks.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Mgc/Config/Hooks.php |
Category.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Module/Action/Category.php |
Module.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Module/Action/Module.php |
Auto.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Module/Config/Auto.php |
Filters.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Module/Config/Filters.php |
Hooks.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Module/Config/Hooks.php |
Module_init.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Module/Config/Module_init.php |
Run.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Module/Config/Run.php |
Module.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Module/Extends/Home/Module.php |
Content.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Module/Models/Content.php |
Filters.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Pay/Config/Filters.php |
Hooks.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Spider/Config/Hooks.php |
Spider.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Spider/Models/Spider.php |
Hooks.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Tag/Config/Hooks.php |
Tag.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Tag/Models/Tag.php |
Auto.php | /webdata/wwwroot/www.wxx86.cn/dayrui/App/Tpl/Config/Auto.php |
App.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Config/App.php |
Autoload.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Config/Autoload.php |
Cache.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Config/Cache.php |
Constants.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Config/Constants.php |
ContentSecurityPolicy.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Config/ContentSecurityPolicy.php |
Cookie.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Config/Cookie.php |
Database.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Config/Database.php |
Events.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Config/Events.php |
Exceptions.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Config/Exceptions.php |
Feature.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Config/Feature.php |
Filters.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Config/Filters.php |
Kint.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Config/Kint.php |
Logger.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Config/Logger.php |
Modules.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Config/Modules.php |
Routes.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Config/Routes.php |
Routing.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Config/Routing.php |
Services.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Config/Services.php |
Toolbar.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Config/Toolbar.php |
UserAgents.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Config/UserAgents.php |
Cache.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Extend/Cache.php |
CodeIgniter.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Extend/CodeIgniter.php |
Controller.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Extend/Controller.php |
Exceptions.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Extend/Exceptions.php |
Hook.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Extend/Hook.php |
Model.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Extend/Model.php |
Request.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Extend/Request.php |
Routes.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Extend/Routes.php |
View.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Extend/View.php |
Init.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/Init.php |
ResponseTrait.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/API/ResponseTrait.php |
Autoloader.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Autoloader/Autoloader.php |
FileLocator.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Autoloader/FileLocator.php |
CacheFactory.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Cache/CacheFactory.php |
CacheInterface.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Cache/CacheInterface.php |
BaseHandler.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Cache/Handlers/BaseHandler.php |
FileHandler.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Cache/Handlers/FileHandler.php |
ResponseCache.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Cache/ResponseCache.php |
CodeIgniter.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/CodeIgniter.php |
Common.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Common.php |
AutoloadConfig.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Config/AutoloadConfig.php |
BaseConfig.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Config/BaseConfig.php |
BaseService.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Config/BaseService.php |
Config.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Config/Config.php |
DotEnv.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Config/DotEnv.php |
Factories.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Config/Factories.php |
Factory.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Config/Factory.php |
Routing.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Config/Routing.php |
Services.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Config/Services.php |
Controller.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Controller.php |
CloneableCookieInterface.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Cookie/CloneableCookieInterface.php |
Cookie.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Cookie/Cookie.php |
CookieInterface.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Cookie/CookieInterface.php |
CookieStore.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Cookie/CookieStore.php |
BaseBuilder.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/BaseBuilder.php |
BaseConnection.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/BaseConnection.php |
BaseResult.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/BaseResult.php |
Config.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/Config.php |
ConnectionInterface.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/ConnectionInterface.php |
Database.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/Database.php |
Builder.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/MySQLi/Builder.php |
Connection.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/MySQLi/Connection.php |
Result.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/MySQLi/Result.php |
Query.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/Query.php |
QueryInterface.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/QueryInterface.php |
ResultInterface.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Database/ResultInterface.php |
Exceptions.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Debug/Exceptions.php |
Timer.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Debug/Timer.php |
Toolbar.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Debug/Toolbar.php |
BaseCollector.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Debug/Toolbar/Collectors/BaseCollector.php |
Database.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Debug/Toolbar/Collectors/Database.php |
Events.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Debug/Toolbar/Collectors/Events.php |
Files.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Debug/Toolbar/Collectors/Files.php |
Logs.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Debug/Toolbar/Collectors/Logs.php |
Routes.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Debug/Toolbar/Collectors/Routes.php |
Timers.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Debug/Toolbar/Collectors/Timers.php |
Views.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Debug/Toolbar/Collectors/Views.php |
Events.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Events/Events.php |
DebugToolbar.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Filters/DebugToolbar.php |
FilterInterface.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Filters/FilterInterface.php |
Filters.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Filters/Filters.php |
ContentSecurityPolicy.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/HTTP/ContentSecurityPolicy.php |
Header.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/HTTP/Header.php |
IncomingRequest.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/HTTP/IncomingRequest.php |
Message.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/HTTP/Message.php |
MessageInterface.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/HTTP/MessageInterface.php |
MessageTrait.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/HTTP/MessageTrait.php |
OutgoingRequest.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/HTTP/OutgoingRequest.php |
OutgoingRequestInterface.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/HTTP/OutgoingRequestInterface.php |
Request.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/HTTP/Request.php |
RequestInterface.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/HTTP/RequestInterface.php |
RequestTrait.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/HTTP/RequestTrait.php |
Response.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/HTTP/Response.php |
ResponseInterface.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/HTTP/ResponseInterface.php |
ResponseTrait.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/HTTP/ResponseTrait.php |
SiteURI.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/HTTP/SiteURI.php |
SiteURIFactory.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/HTTP/SiteURIFactory.php |
URI.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/HTTP/URI.php |
UserAgent.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/HTTP/UserAgent.php |
array_helper.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Helpers/array_helper.php |
kint_helper.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Helpers/kint_helper.php |
url_helper.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Helpers/url_helper.php |
Time.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/I18n/Time.php |
TimeTrait.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/I18n/TimeTrait.php |
Logger.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Log/Logger.php |
Modules.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Modules/Modules.php |
AutoRouter.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Router/AutoRouter.php |
AutoRouterInterface.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Router/AutoRouterInterface.php |
RouteCollection.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Router/RouteCollection.php |
RouteCollectionInterface.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Router/RouteCollectionInterface.php |
Router.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Router/Router.php |
RouterInterface.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Router/RouterInterface.php |
Superglobals.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Superglobals.php |
Escaper.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/ThirdParty/Escaper/Escaper.php |
FacadeInterface.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/ThirdParty/Kint/FacadeInterface.php |
Kint.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/ThirdParty/Kint/Kint.php |
AbstractRenderer.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/ThirdParty/Kint/Renderer/AbstractRenderer.php |
CliRenderer.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/ThirdParty/Kint/Renderer/CliRenderer.php |
RendererInterface.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/ThirdParty/Kint/Renderer/RendererInterface.php |
RichRenderer.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/ThirdParty/Kint/Renderer/RichRenderer.php |
TextRenderer.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/ThirdParty/Kint/Renderer/TextRenderer.php |
Utils.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/ThirdParty/Kint/Utils.php |
init.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/ThirdParty/Kint/init.php |
init_helpers.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/ThirdParty/Kint/init_helpers.php |
LogLevel.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/ThirdParty/PSR/Log/LogLevel.php |
LoggerInterface.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/ThirdParty/PSR/Log/LoggerInterface.php |
ConditionalTrait.php | /webdata/wwwroot/www.wxx86.cn/dayrui/CodeIgniter/System/Traits/ConditionalTrait.php |
Show.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Control/Show.php |
Helper.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Core/Helper.php |
Hooks.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Core/Hooks.php |
Model.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Core/Model.php |
Phpcmf.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Core/Phpcmf.php |
Service.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Core/Service.php |
View.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Core/View.php |
Date.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Field/Date.php |
Editor.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Field/Editor.php |
File.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Field/File.php |
Text.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Field/Text.php |
Textarea.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Field/Textarea.php |
Init.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Init.php |
Cache.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Library/Cache.php |
Field.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Library/Field.php |
Input.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Library/Input.php |
Lang.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Library/Lang.php |
Router.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Library/Router.php |
Security.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Library/Security.php |
Seo.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Library/Seo.php |
Content.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Model/Content.php |
Member.php | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Model/Member.php |
Version.php | /webdata/wwwroot/www.wxx86.cn/dayrui/My/Config/Version.php |
lang.php | /webdata/wwwroot/www.wxx86.cn/public/api/language/zh-cn/lang.php |
index.php | /webdata/wwwroot/www.wxx86.cn/public/index.php |
File: | /webdata/wwwroot/www.wxx86.cn/dayrui/Fcms/Control/Show.php |
App: | / |
Controller: | show |
Method: | index |
URI: | show/index |
URL: | https://www.wxx86.cn/web/831513.html |
Time | Event Name | Times Called |
---|---|---|
19.21 ms | pre_system | 1 |
0.38 ms | dbquery | 6 |
Action | Datetime | Status | Method | URL | Content-Type | Is AJAX? |
---|---|---|---|---|---|---|
2025-06-08 06:31:38.022144 | 200 | GET | https://www.wxx86.cn/index.php/web/831513.html | text/html; charset=UTF-8 | No | |
2025-06-08 06:30:34.644330 | 200 | GET | http://www.wxx86.cn/index.php/web/832497.html | text/html; charset=UTF-8 | No | |
2025-06-08 06:30:02.786442 | 200 | GET | http://www.wxx86.cn/index.php/web/2589.html | text/html; charset=UTF-8 | No | |
2025-06-08 06:29:59.640858 | 200 | GET | https://www.wxx86.cn/index.php/other/3598.html | text/html; charset=UTF-8 | No | |
2025-06-08 06:29:40.820734 | 200 | GET | https://www.wxx86.cn/index.php/program/42318.html | text/html; charset=UTF-8 | No | |
2025-06-08 06:29:23.716048 | 200 | GET | http://www.wxx86.cn/index.php/program/44953.html | text/html; charset=UTF-8 | No | |
2025-06-08 06:29:04.169934 | 200 | GET | http://www.wxx86.cn/index.php/zhishi/3027.html | text/html; charset=UTF-8 | No | |
2025-06-08 06:28:51.830162 | 200 | GET | http://www.wxx86.cn/index.php/tech/803051.html | text/html; charset=UTF-8 | No | |
2025-06-08 06:28:45.787812 | 200 | GET | https://www.wxx86.cn/index.php/tech/518771.html | text/html; charset=UTF-8 | No | |
2025-06-08 06:28:44.417994 | 200 | GET | http://www.wxx86.cn/index.php/tech/777445.html | text/html; charset=UTF-8 | No | |
2025-06-08 06:28:36.147059 | 200 | GET | http://www.wxx86.cn/index.php/tech/404793.html | text/html; charset=UTF-8 | No | |
2025-06-08 06:28:28.269492 | 200 | GET | http://www.wxx86.cn/index.php/program/39653.html | text/html; charset=UTF-8 | No | |
2025-06-08 06:28:23.190421 | 200 | GET | https://www.wxx86.cn/index.php/web/834117.html | text/html; charset=UTF-8 | No | |
2025-06-08 06:28:12.416323 | 200 | GET | http://www.wxx86.cn/index.php/web/832925.html | text/html; charset=UTF-8 | No | |
2025-06-08 06:28:01.541385 | 200 | GET | http://www.wxx86.cn/index.php/program/40634.html | text/html; charset=UTF-8 | No | |
2025-06-08 06:27:47.677466 | 200 | GET | http://www.wxx86.cn/index.php/zhishi/4545.html | text/html; charset=UTF-8 | No | |
2025-06-08 06:27:42.822110 | 200 | GET | http://www.wxx86.cn/index.php/tech/804527.html | text/html; charset=UTF-8 | No | |
2025-06-08 06:27:37.874815 | 200 | GET | http://www.wxx86.cn/index.php/tech/740262.html | text/html; charset=UTF-8 | No | |
2025-06-08 06:27:31.753442 | 200 | GET | http://www.wxx86.cn/index.php/tech/787243.html | text/html; charset=UTF-8 | No | |
2025-06-08 06:27:25.167025 | 200 | GET | https://www.wxx86.cn/index.php/tech/151578.html | text/html; charset=UTF-8 | No |
Session doesn't seem to be active.
c | show |
id | 831513 |
m | index |
Priority | u=0, i |
Accept-Encoding | gzip, deflate, br, zstd |
Sec-Fetch-Dest | document |
Sec-Fetch-User | ?1 |
Sec-Fetch-Mode | navigate |
Sec-Fetch-Site | none |
Accept | text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7 |
User-Agent | Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com) |
Upgrade-Insecure-Requests | 1 |
Sec-Ch-Ua-Platform | "Windows" |
Sec-Ch-Ua-Mobile | ?0 |
Sec-Ch-Ua | "Chromium";v="130", "HeadlessChrome";v="130", "Not?A_Brand";v="99" |
Cache-Control | no-cache |
Pragma | no-cache |
Host | www.wxx86.cn |
Cache-Control | no-store, max-age=0, no-cache |
Content-Type | text/html; charset=UTF-8 |
CodeIgniter Version: | 4.4.7 |
PHP Version: | 8.0.26 |
PHP SAPI: | fpm-fcgi |
Environment: | development |
Base URL: | https://www.wxx86.cn/ |
Timezone: | PRC |
Locale: | zh-cn |
Content Security Policy Enabled: | No |