找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
楼主: vip

Wordpress固定链接404错误问题.nginx系统.

[复制链接]

5

主题

118

回帖

255

积分

中级会员

积分
255
 楼主| 发表于 2009-8-27 10:35:24 | 显示全部楼层
Nginx is considered a third party program so we cannot assist you in setting it up.  BurstNET does not offer any support for 3rd party programs or scripts.
回复真快,如你所说.现在我该怎么办?
装apache?
回复

使用道具 举报

0

主题

6

回帖

14

积分

新手上路

积分
14
发表于 2009-8-27 10:42:27 | 显示全部楼层
看下nginx.conf 里面的nginx的进程开了多少个,多开点试下。28579 www       20   0 58100  17m  11m R 47.5  0.9   0:01.54 php-cgi
3060 mysql     20   0 44592  13m 3900 S 44.5  0.7  93:44.93 mysqld
28580 www       20   0 56964  16m  11m S 38.9  0.9   0:01.17 php-cgi
28581 www       20   0 56448  16m  11m R 36.2  0.8   0:01.09 php-cgi
28404 www       20   0 57604  17m  11m S 15.6  0.9   0:01.45 php-cgi
28583 www       20   0 56408  15m  10m R 15.0  0.8   0:00.45 php-cgi
28588 www       20   0 55788  14m  10m S  2.0  0.8   0:00.06 php-cgi
28464 www       20   0 16392  13m  756 S  0.7  0.7   0:00.39 nginx
28271 root      20   0  9844 2744 2220 R  0.3  0.1   0:00.21 sshd
    1 root      20   0  2064  620  536 S  0.0  0.0   0:00.61 init
    2 root      15  -5     0    0    0 S  0.0  0.0   0:00.00 kthreadd
    3 root      RT  -5     0    0    0 S  0.0  0.0   0:00.00 migration/0
    4 root      15  -5     0    0    0 S  0.0  0.0   0:00.00 ksoftirqd/0
    5 root      RT  -5     0    0    0 S  0.0  0.0   0:00.00 watchdog/0
    6 root      RT  -5     0    0    0 S  0.0  0.0   0:00.00 migration/1
    7 root      15  -5     0    0    0 S  0.0  0.0   0:00.00 ksoftirqd/1
    8 root      RT  -5     0    0    0 S  0.0  0.0   0:00.00 watchdog/1

             total       used       free     shared    buffers     cached
Mem:          1933        845       1088          0        151        380
-/+ buffers/cache:        313       1620
Swap:         3929          0       3929
还是502...
回复

使用道具 举报

1522

主题

3万

回帖

8万

积分

管理员

积分
81534
发表于 2009-8-27 11:25:11 | 显示全部楼层
nginx.conf 里面多少个nginx工作进程
回复

使用道具 举报

1522

主题

3万

回帖

8万

积分

管理员

积分
81534
发表于 2009-8-27 11:26:39 | 显示全部楼层
worker_processes 1;  把1改成4试下,然后kill -HUP `cat /usr/local/nginx/logs/nginx.pid` 重新加载。
回复

使用道具 举报

5

主题

118

回帖

255

积分

中级会员

积分
255
 楼主| 发表于 2009-8-27 11:40:19 | 显示全部楼层
user  www www;

worker_processes 2;

error_log  /home/logs/nginx_error.log  crit;

pid        /usr/local/nginx/logs/nginx.pid;

#Specifies the value for maximum file descriptors that can be opened by this process.
worker_rlimit_nofile 51200;

events
        {
                use epoll;
                worker_connections 51200;
        }

http
        {
                include       mime.types;
                default_type  application/octet-stream;

                #charse  gb2312;

                server_names_hash_bucket_size 128;
                client_header_buffer_size 128k;
                large_client_header_buffers 4 64k;
                client_max_body_size 8m;

                sendfile on;
                tcp_nopush     on;

                keepalive_timeout 120;

                tcp_nodelay on;

                fastcgi_connect_timeout 500;
                fastcgi_send_timeout 500;
                fastcgi_read_timeout 500;
                fastcgi_buffer_size 64k;
                fastcgi_buffers 8 128k;
                fastcgi_busy_buffers_size 256k;
                fastcgi_temp_file_write_size 256k;

                gzip on;
                gzip_min_length  1k;
                gzip_buffers     4 16k;
                gzip_http_version 1.0;
                gzip_comp_level 2;
                gzip_types       text/plain application/x-javascript text/css application/xml;
                gzip_vary on;

                #limit_zone  crawler  $binary_remote_addr  10m;

server
           {
                listen       80;
                server_name www.mydomain.com;
                index index.html index.htm index.php;
                root  /home/www;

                #limit_conn   crawler  20;

                #location /status {
                #stub_status        on;
                #access_log        off;
                #}

                if (!-e $request_filename) {
                                rewrite ^(.*)$ /index.php?q=$1 last;
                }

                location ~ .*\.(php|php5)?$
                        {
                                fastcgi_pass  unix:/tmp/php-cgi.sock;
                                #fastcgi_pass  127.0.0.1:9000;
                                fastcgi_index index.php;
                                include fcgi.conf;
                        }

                location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
                        {
                                expires      30d;
                        }

                location ~ .*\.(js|css)?$
                        {
                                expires      12h;
                        }

                log_format  access  '$remote_addr - $remote_user [$time_local] "$request" '
             '$status $body_bytes_sent "$http_referer" '
             '"$http_user_agent" $http_x_forwarded_for';
                access_log  /home/logs/access.log  access;
        }
}
这是我现在的设置.         负载22.55 19.58 18.82
回复

使用道具 举报

1522

主题

3万

回帖

8万

积分

管理员

积分
81534
发表于 2009-8-27 11:45:39 | 显示全部楼层
第二行 worker_processes 2;  改成4或者8看下。
回复

使用道具 举报

5

主题

118

回帖

255

积分

中级会员

积分
255
 楼主| 发表于 2009-8-27 12:09:23 | 显示全部楼层
搜到一篇文章,你看看.http://tech.nocr.at/tech/how-to- ... and-wp-super-cache/
apache和Nginx可以共存?
回复

使用道具 举报

1522

主题

3万

回帖

8万

积分

管理员

积分
81534
发表于 2009-8-27 12:26:20 | 显示全部楼层
可以,但是配置更复杂,一个做前端。
回复

使用道具 举报

5

主题

118

回帖

255

积分

中级会员

积分
255
 楼主| 发表于 2009-8-27 14:25:43 | 显示全部楼层
改成4了,问题依旧.负载更大了.27.39 26.23 23.00
回复

使用道具 举报

1522

主题

3万

回帖

8万

积分

管理员

积分
81534
发表于 2009-8-27 14:26:42 | 显示全部楼层
等高手出招,I have no idea.
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|小黑屋|Discuz! X

GMT+8, 2025-1-11 20:03 , Processed in 0.025399 second(s), 3 queries , Gzip On, Redis On.

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

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