查到nginx.conf配置文件,解决413问题,413 Request Entity Too Large
完成wp-config.php 文件更新,顺利解决了插件安装时跳出FTP弹窗的问题,但是接下来出现了413问题也让我头疼了一阵。问题主要特征是是在执行wordpress导入插件,导入xml备份文件时,提示413 Request Entity Too Large。查了下相关材料,说是nginx.conf文件有系统容量限制,数据库导入默认是MAX值是1M,这个1M限制了导入xml文件的大小。
我按照CSDN上高手的指导文件查阅相关命令,但是开始就让我陷入了困境。命令行信息如下:
[root@iZ6a3b4oz2y3pbZ ~]# ps aux|grep nginx
root 1594 0.0 0.0 44840 1984 ? Ss Mar11 0:00 nginx: master process /usr/sbin/nginx -c /etc/nginx/nginx.conf
nobody 9238 0.0 0.1 45268 2444 ? S Mar21 0:01 nginx: worker process
root 15013 0.0 0.0 103320 884 pts/0 S+ 21:34 0:00 grep nginx
[root@iZ6a3b4oz2y3pbZ ~]# ps -ef | grep nginx
root 1594 1 0 Mar11 ? 00:00:00 nginx: master process /usr/sbin/nginx -c /etc/nginx/nginx.conf
nobody 9238 1594 0 Mar21 ? 00:00:01 nginx: worker process
root 15187 14877 0 21:44 pts/0 00:00:00 grep nginx
按照指导的路径信息来看,我发现还是看不出来配置文件具体位置,后来我在/etc/nginx/nginx.conf,找到了配置文件,在http中增加了一行红色代码,解决413问题。
http {
include mime.types;
default_type application/octet-stream;
client_max_body_size 30m;
感情user/sbin/nginx -c 或 /etc/nginx/nginx.conf 两个命令之间的关系,得按照或去理解才行。
一波刚平,一波又起,接下来当我进行wordpress数据备份的时候,又出现了新的问题,503来了。
2020.03.22