四虎影视在线影院在线观看,小s货再浪些再咬紧点h,国产精品水嫩水嫩,97精产国品一二三产区

無標(biāo)題文檔
wdCP系統(tǒng) (介紹,功能特性,運(yùn)行環(huán)境,安裝說明,演示,常見問題,使用教程) wdCDN系統(tǒng) (介紹,功能特性,運(yùn)行環(huán)境,安裝說明,演示,常見問題,使用手冊)
wdOS系統(tǒng) (介紹,功能特性,運(yùn)行環(huán)境,安裝說明,演示,常見問題,使用教程) wdDNS系統(tǒng) (介紹,功能特性,運(yùn)行環(huán)境,安裝說明,演示,常見問題,使用手冊)
注冊 發(fā)貼 提問 回復(fù)-必看必看 wddns免費(fèi)智能 DNS 開通 本地或虛擬機(jī)使 用wdcp 一鍵包在mysql編 譯時(shí)"卡住"
AI導(dǎo)航網(wǎng)AI應(yīng)用網(wǎng)站大全 wdcp官方技術(shù)支持/服務(wù) 阿里云8折優(yōu)惠券 無敵云 騰訊云優(yōu)惠中,現(xiàn)注冊更有260代金額券贈送
返回列表 發(fā)帖
提問三步曲: 提問先看教程/FAQ索引(wdcp,wdcp_v3,一鍵包)及搜索,會讓你更快解決問題
1 提供詳細(xì),如系統(tǒng)版本,wdcp版本,軟件版本等及錯誤的詳細(xì)信息,貼上論壇或截圖發(fā)論壇
2 做過哪些操作或改動設(shè)置等

溫馨提示:信息不詳,很可能會沒人理你!論壇有教程說明的,也可能沒人理!因?yàn)?你懂的

[分享] 使用WDCP的小內(nèi)存VPS內(nèi)存占用優(yōu)化的一點(diǎn)經(jīng)驗(yàn)

本帖最后由 dmcountry 于 2014-6-3 12:14 編輯

使用wdcp好久了,剛開始的VPS是512MB內(nèi)存,安裝wdcp后并開通網(wǎng)站后發(fā)現(xiàn)內(nèi)存占用會逐步升高,最后直至耗盡。設(shè)置mysql優(yōu)化的參數(shù)為“小內(nèi)存VPS(256-512mb)”后并沒有出現(xiàn)改觀。中間又換了其他幾個免費(fèi)控制面板,也不太好用。不過,經(jīng)過一段時(shí)間折騰后,終于找到了解決方法。這個解決方法在安裝wdcp面板的VPS上通過,方法分享出來,供參考:
調(diào)試方法:修改apache配置文件httpd.conf(不同的主機(jī)控制面板可能該配置文件所處的目錄不同)

對于安裝wdcp的VPS,修改的文件是/www/wdlinux/httpd-2.2.22/conf/httpd-wdl.conf

httpd-wdl.conf中找到<IfModule mpm_prefork_module>,這里就是apache在prefork模式下的參數(shù)段。將該段各值修改為以下數(shù)值:
<IfModule mpm_prefork_module>
    ServerLimit         256
    StartServers          2
    MinSpareServers       2
    MaxSpareServers      5
    MaxClients          256
    MaxRequestsPerChild  50
</IfModule>
最重要的占用內(nèi)存的參數(shù)是標(biāo)紅的幾個。
經(jīng)過上述設(shè)置之后,httpd子進(jìn)程數(shù)保持在最小2個,多余的進(jìn)程在處理請求超過50個后自動銷毀釋放內(nèi)存(這個數(shù)值不要設(shè)為0,否則http進(jìn)程會一直不銷毀),從而保證在正常流量下內(nèi)存得以及時(shí)釋放。這些數(shù)值可以根據(jù)需要適當(dāng)調(diào)整,以適應(yīng)內(nèi)存大小。修改后重啟apache服務(wù)生效。

各字段含義:
    ServerLimit         最大客戶數(shù)
    StartServers        服務(wù)器啟動時(shí)建立的子進(jìn)程數(shù)量
    MinSpareServers     最小空閑子進(jìn)程數(shù)
    MaxSpareServers     最大空閑子進(jìn)程數(shù)
    MaxClients          同一時(shí)間客戶端最大接入請求的數(shù)量
    MaxRequestsPerChild 每個子進(jìn)程在其生存期內(nèi)允許伺服的最大請求數(shù)量  
經(jīng)驗(yàn)原文寫在了本人網(wǎng)貼里:小內(nèi)存VPS httpd參數(shù)優(yōu)化
https://a.youhuima.cc

做個標(biāo)記
<IfModule mpm_prefork_module>
    ServerLimit         1024
    StartServers          5
    MinSpareServers       3
    MaxSpareServers      30
    MaxClients          1024
    MaxRequestsPerChild   100
</IfModule>
www.zhoji.com

TOP

mark一下
無法可修飾

TOP

# apache conf conf/httpd-wdl.conf
# Created by http://cd-genova.com
# Last Updated 2010.06.01
Timeout 30
KeepAlive Off
MaxKeepAliveRequests 100
KeepAliveTimeout 5
UseCanonicalName Off
ServerTokens Prod
ServerSignature Off
HostnameLookups Off
AddType application/x-httpd-php .php
DirectoryIndex index.html index.php index.htm
<IfModule mpm_worker_module>
    ServerLimit                32
    ThreadLimit                256
    StartServers        12
    MaxClients          2048
    MinSpareThreads      50
    MaxSpareThreads      256
    ThreadsPerChild      256
    MaxRequestsPerChild   0
</IfModule>
<IfModule mpm_prefork_module>
    ServerLimit         1024
    StartServers          5
    MinSpareServers       3
    MaxSpareServers      30
    MaxClients          1024
    MaxRequestsPerChild   0
</IfModule>
<IfModule mpm_itk_module>
    ServerLimit         1024
    StartServers          5
    MinSpareServers       3
    MaxSpareServers      30
    MaxClients          1024
    MaxRequestsPerChild   0
</IfModule>

TOP

<IfModule mpm_prefork_module>
    ServerLimit         1024
    StartServers          5
    MinSpareServers       3
    MaxSpareServers      30
    MaxClients          1024
    MaxRequestsPerChild   500
</IfModule>

TOP

做個標(biāo)記
<IfModule mpm_prefork_module>
    ServerLimit         1024
    StartServers          5
    MinSpareServers       3
    MaxSpareServers      30
    MaxClients          1024
    MaxRequestsPerChild   0
</IfModule>
WDlinux

TOP

做個標(biāo)記
<IfModule mpm_prefork_module>
    ServerLimit         512
    StartServers          5
    MinSpareServers       3
    MaxSpareServers      10
    MaxClients          384
    MaxRequestsPerChild   10
</IfModule>

TOP

哇,有好東西,松果耶,趕緊收藏一下,嘿嘿
92cloud

TOP

返回列表