在2GB RAM E6500 CPU上每天优化apk以获得超过10K的wordpress视图


10

我在ubuntu上有一个带有apache / php的专用服务器,每天为我的Wordpress博客提供10K +的浏览量。我在APC中安装了W3TC插件。

但是每时每刻,服务器都停止响应或变慢,我必须重新启动apache才能将其恢复。

继承人我的配置我在做什么错?

ServerRoot "/etc/apache2"
LockFile /var/lock/apache2/accept.lock
PidFile ${APACHE_PID_FILE}
TimeOut 40
KeepAlive on
MaxKeepAliveRequests 200
KeepAliveTimeout 2
<IfModule mpm_prefork_module>
  StartServers 5
  MinSpareServers 5
  MaxSpareServers 8
  ServerLimit        80
  MaxClients         80
  MaxRequestsPerChild 1000
</IfModule>
<IfModule mpm_worker_module>
  StartServers       3
  MinSpareServers    3
  MaxSpareServers    3
  ServerLimit        80
  MaxClients         80
  MaxRequestsPerChild  1000
</IfModule>
<IfModule mpm_event_module>
  StartServers       3
  MinSpareServers    3
  MaxSpareServers    3
  ServerLimit        80
  MaxClients         80
  MaxRequestsPerChild  1000
</IfModule>
User ${APACHE_RUN_USER}
Group ${APACHE_RUN_GROUP}
AccessFileName .htaccess
<Files ~ "^\.ht">
  Order allow,deny
  Deny from all
  Satisfy all
</Files>
DefaultType text/plain
HostnameLookups Off
ErrorLog /var/log/apache2/error.log
LogLevel error
Include /etc/apache2/mods-enabled/*.load
Include /etc/apache2/mods-enabled/*.conf
Include /etc/apache2/httpd.conf
Include /etc/apache2/ports.conf
LogFormat "%v:%p %h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" vhost_combined
LogFormat "%h %l %u %t \"%r\" %>s %O \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %O" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent
CustomLog /var/log/apache2/other_vhosts_access.log vhost_combined
Include /etc/apache2/conf.d/
Include /etc/apache2/sites-enabled/

Answers:


23

我的WordPress性能和缓存堆栈

对于中低范围的单服务器或VPS,这是一个很好的WordPress性能堆栈。我将中端范围归类为具有约1G内存和相当快的驱动器的单核。

在您的盒子上,每小时可以提供超过10K的页面浏览量

服务器堆栈

  • Linux-Debian Lenny或Ubuntu
  • Nginx-配置为反向代理静态文件缓存
  • Apache-Apache将在备用端口上处理Nginx卸载的PHP
  • MySql-WP要求,确保您运行的是最新的稳定版本
  • PHP-5.2或5.3分支的最新稳定版本

PHP缓存

  • APC-配置mmap内存,且shm大小至少为128M

WordPress性能插件堆栈

  • Nginx代理缓存集成商
  • W3 Total Cache-将页面高速缓存设置为增强的磁盘,最小化为磁盘,将对象和数据库设置为APC。
  • 自托管CDN-创建4个cname别名,这些别名指向服务器上设置为服务静态文件的域

借助W3 Total Cache,我们将磁盘用于页面缓存并缩小规模,因为Nginx将非常快速地提供我们的静态文件。

如何配置Nginx以提供静态文件并将PHP传递给Apache

单独使用Apache的问题在于,它会打开连接并在每个请求(甚至是静态文件)上都击中php。这会浪费连接,因为Apache将使它们保持打开状态,并且当您的通信量很大时,即使不使用它们,连接也会被阻塞。

默认情况下,Apache在端口80(默认的Web端口)上侦听请求。首先,我们将对我们的Apache conf和虚拟主机文件进行更改,以监听端口8080。

Apache配置

httpd.conf

将KeepAlive设置为关闭

ports.conf

NameVirtualHost *:8080
Listen 8080

每站点虚拟主机

<VirtualHost 127.0.0.1:8080>
     ServerAdmin info@yoursite.com
     ServerName yoursite.com
     ServerAlias www.yoursite.com
     DocumentRoot /srv/www/yoursite.com/public_html/
     ErrorLog /srv/www/yoursite.com/logs/error.log
     CustomLog /srv/www/yoursite.com/logs/access.log combined
</VirtualHost>

您还应该安装mod_rpaf,以便您的日志将包含访问者的真实IP地址。如果不是,您的日志将具有127.0.0.1作为原始IP地址。

Nginx配置

在Debian上,您可以使用存储库进行安装,但它们仅包含0.6.33版本。要安装更高版本,您必须添加lenny backports软件包

$ nano /etc/apt/sources.list

将此行添加到文件 deb http://www.backports.org/debian lenny-backports main

$ nano /etc/apt/preferences

将以下内容添加到文件中:

Package: nginx
Pin: release a=lenny-backports 
Pin-Priority: 999

发出以下命令以从backports.org导入密钥以验证软件包并更新系统的软件包数据库:

$ wget -O - http://backports.org/debian/archive.key | apt-key add -
$ apt-get update

现在使用apt-get安装

apt-get install nginx

这比从源代码编译要容易得多。

Nginx conf和服务器文件配置

nginx.conf

user www-data;
worker_processes  4;

error_log  /var/log/nginx/error.log;
pid        /var/run/nginx.pid;

events {
    worker_connections  1024;
}

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

    access_log  /var/log/nginx/access.log;
    client_body_temp_path /var/lib/nginx/body 1 2;
    gzip_buffers 32 8k;
    sendfile        on;
    #tcp_nopush     on;

    #keepalive_timeout  0;
    keepalive_timeout  65;
    tcp_nodelay        on;

    gzip  on;

  gzip_comp_level   6;
  gzip_http_version 1.0;
  gzip_min_length   0;
  gzip_types        text/html text/css image/x-icon
        application/x-javascript application/javascript text/javascript application/atom+xml application/xml ;



    include /etc/nginx/conf.d/*.conf;
    include /etc/nginx/sites-enabled/*;
}

现在,您将需要设置Nginx虚拟主机。我喜欢将启用站点的方法与每个v主机符号链接到站点可用目录中的文件。

$ mkdir /etc/nginx/sites-available  
$ mkdir /etc/nginx/sites-enabled
$ touch /etc/nginx/sites-available/yourservername.conf
$ touch /etc/nginx/sites-available/default.conf
$ ln -s  /etc/nginx/sites-available /etc/nginx/sites-enabled
$ nano /etc/nginx/sites-enabled/default.conf

default.conf

注意:

只有启用了Nginx代理缓存集成器插件,以下文件中的静态缓存设置才会起作用。

proxy_cache_path  /var/lib/nginx/cache  levels=1:2   keys_zone=staticfilecache:180m  max_size=500m;
proxy_temp_path /var/lib/nginx/proxy;
proxy_connect_timeout 30;
proxy_read_timeout 120;
proxy_send_timeout 120;

#IMPORTANT - this sets the basic cache key that's used in the static file cache.
proxy_cache_key "$scheme://$host$request_uri";

upstream wordpressapache {
        #The upstream apache server. You can have many of these and weight them accordingly,
        #allowing nginx to function as a caching load balancer 
        server 127.0.0.1:8080 weight=1 fail_timeout=120s;
}

每个WordPress网站配置文件(对于多站点,您只需要一个虚拟主机)

server {
        #Only cache 200 responses, and for a default of 20 minutes.
        proxy_cache_valid 200 20m;

        #Listen to your public IP
        listen 80;

        #Probably not needed, as the proxy will pass back the host in "proxy_set_header"
        server_name www.yoursite.com yoursite.com;
        access_log /var/log/nginx/yoursite.proxied.log;  

        # "combined" matches apache's concept of "combined". Neat.
        access_log  /var/log/apache2/nginx-access.log combined;
        # Set the real IP.
        proxy_set_header X-Real-IP  $remote_addr;

        # Set the hostname
        proxy_set_header Host $host;

        #Set the forwarded-for header.
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;

        location / {
                        # If logged in, don't cache.
                        if ($http_cookie ~* "comment_author_|wordpress_(?!test_cookie)|wp-postpass_" ) {
                                set $do_not_cache 1;
                        }
                        proxy_cache_key "$scheme://$host$request_uri $do_not_cache";
                        proxy_cache staticfilecache;
                        proxy_pass http://wordpressapache;
        }

        location ~* wp\-.*\.php|wp\-admin {
                        # Don't static file cache admin-looking things.
                        proxy_pass http://wordpressapache;
        }

        location ~* \.(jpg|png|gif|jpeg|css|js|mp3|wav|swf|mov|doc|pdf|xls|ppt|docx|pptx|xlsx)$ {
                        # Cache static-looking files for 120 minutes, setting a 10 day expiry time in the HTTP header,
                        # whether logged in or not (may be too heavy-handed).
                        proxy_cache_valid 200 120m;
                        expires 864000;
                        proxy_pass http://wordpressapache;
                        proxy_cache staticfilecache;
        }

        location ~* \/[^\/]+\/(feed|\.xml)\/? {
 # Cache RSS looking feeds for 45 minutes unless logged in.
                        if ($http_cookie ~* "comment_author_|wordpress_(?!test_cookie)|wp-postpass_" ) {
                                set $do_not_cache 1;
                        }
                        proxy_cache_key "$scheme://$host$request_uri $do_not_cache";
                        proxy_cache_valid 200 45m;
                        proxy_cache staticfilecache;
                        proxy_pass http://wordpressapache;
        }

        location = /50x.html {
                root   /var/www/nginx-default;
        }

        # No access to .htaccess files.
        location ~ /\.ht {
                deny  all;
        }

        }

自托管CDN conf

对于您自己托管的CDN conf,您只需要设置它即可提供静态文件而无需代理通过

server {

        proxy_cache_valid 200 20m;
        listen 80;
        server_name yourcdndomain.com;
        access_log   /srv/www/yourcdndomain.com/logs/access.log;
        root   /srv/www/yourcdndomain.com/public_html/;

 proxy_set_header X-Real-IP  $remote_addr;

      location ~* \.(jpg|png|gif|jpeg|css|js|mp3|wav|swf|mov|doc|pdf|xls|ppt|docx|pptx|xlsx)$ {
                                # Cache static-looking files for 120 minutes, setting a 10 day expiry time in the HTTP header,
                                # whether logged in or not (may be too heavy-handed).

                                proxy_cache_valid 200 120m;
                        expires 7776000;
                        proxy_cache staticfilecache;
                }

location = /50x.html {
                root   /var/www/nginx-default;
        }

 # No access to .htaccess files.
        location ~ /\.ht {
          deny  all;
        }

    }

现在启动服务器

$ /etc/init.d/apache2 restart  
$/etc/init.d/nginx start

基准结果

理论上,在Apache Bench上,该设置每秒可以处理1833.56个请求

$ ab -n 1000 -c 20 http://yoursite.com/

替代文字


您提到让Nginx处理静态文件,让Apache处理php文件,但是在静态文件块中,您有“ proxy_pass wordpressapache ;”。这不是说apache正在处理静态文件吗?
srchulo '16

0

这看起来像是标准的Apache配置,尽管由于它看起来像HTML,所以似乎已将其中的一些去除了。

您需要调查服务器响应缓慢时发生的情况。您没有说服务器的规格,但提到服务器专用和每天10k应该很容易处理。

  • 顶部显示什么?
  • 瓶颈在哪里?CPU,内存,I / O等待?
  • 有多少个Apache进程正在运行?
  • netstat中显示多少个连接?

猜测,CPU可能是PHP引起的瓶颈。使用APC和WP缓存插件是缓解此问题的好方法,您已经完成了。您也可以尝试Apache的“ MPM”过程模型,而不是“ Prefork”。确保为APC分配了足够的内存,以便它可以缓存PHP脚本而不是“未命中”。

也可能是MySQL-查看是否占用CPU或磁盘。

如果启用了mod_deflate,请考虑将其关闭-这样做确实有益于加载时间,但会增加CPU负载。可能值得尝试。

使用“围攻”或“ ab”之类的工具对服务器进行基准测试,并找出服务器变慢的时间。

这是我从网络服务器性能调整中获得的一些书签:http : //articles.slicehost.com/2010/5/19/configuring-the-apache-mpm-on-ubuntu

http://www.thebuzzmedia.com/increase-wordpress-performance-on-apache-with-worker-mpm-php-and-mod_fcgid/

http://www.devside.net/articles/apache-performance-tuning

http://www.brandonturner.net/blog/2009/07/fastcgi_with_php_opcode_cache/

但是我最初的建议仍然是一样的-找出瓶颈是什么!否则,您会盲目地尝试提高性能(当然,提高性能总会很好),却又不知道该关注哪个领域。


0

还启用服务器状态模块,并访问该模块以查找正在发生的情况。

您可能正在交换。您是否在发生这种情况时签出了vmstat?每个80GB MaxClients的2GB RAM仅每个25MB(假设包装盒没有做其他事情。)您的MaxClients可能太高了。解决方案显而易见:添加更多RAM或降低MaxClients。如果在重新启动apache时命令行响应缓慢,则表明存在这种情况。

您还可能会用“大”文件为某些移动客户端(或连接速度较慢的其他客户端)提供大量文件,从而消耗所有可用的Apache插槽。也许您的MaxClients太少了。查看服务器状态将告诉您每个客户端当时在做什么。一种针对这种情况的解决方案是增加MaxClients(但也可能会变成上述情况。)一种更好的解决方案是在Apache前面安装HTTP加速器(一个免费选项是perlbal)。如果您的命令行正常重新启动apache时速度加快,这说明了这种情况。


0

使用mod_status是查看多个Apache实例内部运行情况的方法,但请注意,这确实会降低性能。它似乎吃光了内存,在一种情况下,我无法诊断是否是仅在反向代理中没有直接提供服务的情况下单进程锁定的原因。用户将这些报告为“永远加载页面”。他们甚至不理解“等了10秒”和“将永远不会完成”之间的区别,因为他们通常在(<10)秒后在浏览器中按“停止”。

还要检查您是否配置了正确的位置(使用mod_status很容易看到,因为您看到了实例/进程的数量)。至少在ubuntu下,stock配置在每个MPM模式下都有ifdef定义的部分,并且在运行prefork时很容易编辑worker模式(这是传统观点所建议的,出于模糊的感觉,PHP不是线程安全的)。

哦,最重要的是:运行上面的根和手表刷爆ressources。内存,光盘,CPU-您将看到。

另一点:停用mod_deflate的想法可能是好的,尽管您的设置不容易出现错误的Content-Length信息错误,该错误导致浏览器“永远”等待数据,使您报告“死机缓慢”到“无响应”。

顺便说一句:每天发送1万页以及本机上的媒体文件仅在一个小时内都可以访问时才是问题。


0

一些建议,尤其是如果您托管大量媒体文件时:

  • 将您的媒体移动到专用的Apache(或更好的:nginx)实例。没有PHP,没有模块,只有裸露的http服务器,它将尽可能快地传送媒体。
  • 缓存,缓存,缓存!在wordpress上使用超级缓存插件。这很有帮助。
  • 检查标头上的apache配置。验证图像和其他“稳定”媒体的有效期限已设置为较远的日期,并且在客户端请求时,您的apache返回HTTP 304代码
  • 启用mod_deflate。它可能会降低客户端的性能,因此会更快地为其服务。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.