您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關CentOS Apache數(shù)據(jù)庫處理如何加快PHP的執(zhí)行速度,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
CentOS Apache對于電腦使用的玩家的常用軟件,然后我就學習及深入的研究CentOS Apache,在這里和大家一起探討CentOS Apache的使用方法,希望對大家有用。試了一段時間的Lighttpd,表現(xiàn)的確不錯,原先用CentOS Apache只能跑到6K/S,改用Lighttpd后性能提升了將近一倍.
只是跑PHP似乎很不穩(wěn)定,數(shù)據(jù)庫處理時間長一點就會到導致Lighttpd出現(xiàn)500的錯誤,也就是說要想使Lighttpd發(fā)揮更好的性能,除了優(yōu)化程序還是優(yōu)化程序,盡可能的加快PHP的執(zhí)行速度,另外加上eAccelerator性能會有更大的提高。
說了這么多優(yōu)點,再來說說公司最近所嘗試的一些經驗,PHP程序已被優(yōu)化的不能再優(yōu)化了,但是有時候操作一下數(shù)據(jù)庫(比如執(zhí)行mysqldump)就會出現(xiàn)500錯誤,并發(fā)量非常大的時候很容易出現(xiàn).
在這點上Lighttpd的表現(xiàn)就沒有CentOS Apache穩(wěn)定了,所以想了一個折中的辦法,讓CentOS Apache來處理PHP程序,其他的靜態(tài)頁面(包括圖片、軟件等等)全都交給Lighttpd來處理。而實現(xiàn)方法就是通過mod_proxy來實現(xiàn),CentOS Apache做前端處理或Lighttpd做前端處理都行,反正這2種都有個mod_proxy模塊,基本上一樣。
下面就以CentOS 4.4系統(tǒng)下使用CentOS Apache(80端口)和Lighttpd(81端口)實現(xiàn)動態(tài)頁面和靜態(tài)頁面的分離。CentOS Apache采用系統(tǒng)默認安裝(yum install apache)的即可,網上的安裝文檔也很多,偶就不再介紹了。
安裝Lighttpd v1.4.13
# yum install pcre-devel # cd /usr/local/src # wget http://www.lighttpd.net/download/lighttpd-1.4.13.tar.gz # tar -zxvf lighttpd-1.4.13.tar.gz # cd lighttpd-1.4.13 # ./configure --with-pcre # make # make install # cd doc # cp sysconfig.lighttpd /etc/sysconfig/lighttpd # cp rc.lighttpd.redhat /etc/init.d/lighttpd # chkconfig lighttpd on # mkdir -p /etc/lighttpd # cp lighttpd.conf /etc/lighttpd/ # mkdir /var/log/lighttpd # touch /var/log/lighttpd/access.log # touch /var/log/lighttpd/error.log # chown -R apache:apache /var/log/lighttpd # vi /etc/init.d/lighttpd 將lighttpd=”/usr/sbin/lighttpd”改為lighttpd=”/usr/local/sbin/lighttpd”
編輯Lighttpd的配置文件lighttpd.conf,大致修改如下:
server.modules = ("mod_access", "mod_simple_vhost", "mod_accesslog" ) server.document-root = "/var/www/html" server.errorlog = "/var/log/lighttpd/error.log" accesslog.filename = "/var/log/lighttpd/access.log" server.port = 81 server.bind = “l(fā)ocalhost” simple-vhost.server-root = “/var/www/html/” simple-vhost.default-host = “” simple-vhost.document-root = “/” server.username = “apache” server.groupname = “apache”
至此Lighttpd基本上已經配置完成了,執(zhí)行/etc/init.d/lighttpd start就開始監(jiān)聽81端口了。接下來就配置CentOS Apache,所要做的就是開啟mod_rewrite和mod_proxy模塊,大致修改如下:
LoadModule rewrite_module modules/mod_rewrite.so LoadModule proxy_module modules/mod_proxy.so LoadModule proxy_http_module modules/mod_proxy_http.so LoadModule proxy_connect_module modules/mod_proxy_connect.so <VirtualHost *:80> ServerAdmin <a href="mailto:webmaster@sofee.cn">webmaster@sofee.cn</a> DocumentRoot /var/www/html/test.sofee.cn ServerName test.sofee.cn <IfModule mod_rewrite.c> RewriteEngine On # RewriteLog logs/rewrite_log # RewriteLogLevel 1 RewriteRule "^/((.*).(js|css|htm|html|swf|gif|jpg|png|ico|exe|zip|rar))$" "http://0.0.0.0:81/$1" [P,QSA,L] RewriteRule "^/(.*)" "$0" [L] </IfModule> <IfModule mod_proxy.c> ProxyRequests Off ProxyPreserveHost On ProxyReceiveBufferSize 16384 ProxyTimeout 300 ProxyPassReverse / http://0.0.0.0:81/ </IfModule> </VirtualHost>
至此,CentOS Apache也已配置完成,執(zhí)行/etc/init.d/httpd start開始監(jiān)聽80端口。為了使mod_proxy能夠發(fā)揮更好的性能,還可以加 入mod_cache模塊:
LoadModule cache_module modules/mod_cache.so LoadModule disk_cache_module modules/mod_disk_cache.so LoadModule mem_cache_module modules/mod_mem_cache.so <IfModule mod_cache.c> <IfModule mod_mem_cache.c> CacheEnable mem / MCacheSize 10240 MCacheMaxObjectCount 100 MCacheMinObjectSize 1 MCacheMaxObjectSize 2048 </IfModule> <IfModule mod_disk_cache.c> CacheRoot /var/cache/mod_proxy CacheEnable disk / CacheDirLevels 5 CacheDirLength 3 </IfModule> </IfModule>
關于CentOS Apache數(shù)據(jù)庫處理如何加快PHP的執(zhí)行速度就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經查實,將立刻刪除涉嫌侵權內容。