• [转]win7下apache2.4响应很慢解决方法


    win7下apache2.4响应很慢解决方法

    PS.按照以下方法测试了以下,似乎确实快了一点[skysowe]
    2015-12-28 16:07:43

    原因

    1、浏览器问题,可以下载最新版浏览器,或者重置浏览器设置,有时是浏览器开的太久了,重启又可以了。
    ​​

    2、apache配置问题​

    Apache的线程数控制文件为conf/exrtra/http-mpm.conf(我的文件目录为E:devapache2.4in apacheApache2.4confextra)

    httpd.conf 中去掉 Include conf/extra/httpd-mpm.conf前的#,使http-mpm.conf生效,起作用的是Winnt mpm段,

    在conf/exrtra/http-mpm.conf中搜索 mpm_winnt_module


        ThreadsPerChild        150
        MaxConnectionsPerChild   0

    修改为

        ThreadsPerChild        350
        MaxConnectionsPerChild   1000

    而且应该同时修改conf/exrtra/httpd-default.conf超时设置来配合。

    httpd.conf中去掉Include conf/extra/httpd-default.conf前的#,使httpd-default.conf生效。其中调节以下参数

    Timeout 60 (连接超时时间)
    
    KeepAlive On (开启可以提高性能,因为一个页面一般会有多个请求)
    
    MaxKeepAliveRequests 100 (这个数目自己根据网页内容调节)
    
    KeepAliveTimeout 5 (这个小于Timeout就行)

    最后重启apache 即可。

  • 相关阅读:
    python shutil
    AttributeError: module 'shutil' has no attribute 'copyfileobj'
    python configparser
    JSON使用
    VRRP
    KeepAlived的介绍
    Nginx模块
    Nginx配置
    Nginx介绍
    apache相关补充
  • 原文地址:https://www.cnblogs.com/skysowe/p/5779723.html
Copyright © 2020-2023  润新知