我昨天從Godaddy購買了一個新的專用服務器。網站頁面加載非常緩慢。我有16 GB的Ram和i7處理器。我正在嘗試爲高流量10K +活動用戶優化我的Apache服務器。這裏是舊的和新的設置:Godaddy runny的新服務器真的很慢
OLD:
<IfModule mpm_prefork_module>
StartServers 5
MinSpareServers 5
MaxSpareServers 10
MaxClients 150
MaxRequestsPerChild 0
</IfModule>
New:
<IfModule mpm_prefork_module>
StartServers 5
MinSpareServers 5
MaxSpareServers 10
MaxClients 2500
ServerLimit 2500
MaxRequestsPerChild 0
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 3
Timeout 30
</IfModule>
什麼是解決我的問題的最佳設置。注意這個網站是基於php mysqli的應用程序。它也有每頁3到5個圖像。
定義「慢」。哪一部分加載速度較慢,您看到什麼樣的加載時間?你是否已經對代碼進行了基準測試,以查看可能導致問題的原因?在目前的形式下,這太寬泛了,無法得到有用的迴應。 –
當我點擊一個鏈接到我的網站,它需要一段時間來連接並開始顯示網站。從7秒到10秒。 –