Server Load Tinggi


Status
Not open for further replies.
Wah, 'tertuduh' terakhir tinggal welcome.conf. Infokan 'cat /etc/httpd/conf.d/welcome.conf'.
 
Ini hasilnya tuan :
[root@si /]# cat /etc/httpd/conf.d/welcome.conf
#
# This configuration file enables the default "Welcome"
# page if there is no default index page present for
# the root URL. To disable the Welcome page, comment
# out all the lines below.
#
<LocationMatch "^/+$">
Options -Indexes
ErrorDocument 403 /error/noindex.html
</LocationMatch>

[root@si /]#
 
Saya mau coba buka topic di thread si owner web panelnya.
coba aja, kemungkinan nggak bakalan ditanggapi, supaya perlu premium support

kek-nya dokumentasi cwp untuk 'penyesuaian' juga tidak ada
jadi browsing aja petunjuk umum penyesuaian apache+suphp
 
Butuh infonya seperti apa tuan?

Saya mau coba buka topic di thread si owner web panelnya.
Pengaturan mpm, misalnya di Kloxo-MR:
Code:
Timeout 150
KeepAlive Off
MaxKeepAliveRequests 100
KeepAliveTimeout 15

<IfModule prefork.c>
    <IfVersion >= 2.4>
        Mutex default mpm-accept
    </IfVersion>
    StartServers 2
    MinSpareServers 2
    MaxSpareServers 4
    ServerLimit 4
    <IfVersion >= 2.4>
        MaxRequestWorkers 4
        MaxConnectionsPerChild 2000
    </IfVersion>
    <IfVersion < 2.4>
        MaxClients 4
        MaxRequestsPerChild 2000
    </IfVersion>
    MaxMemFree 2
    SendBufferSize 65536
    ReceiveBufferSize 65536
</IfModule>

<IfModule itk.c>
    <IfVersion >= 2.4>
        Mutex default mpm-accept
    </IfVersion>
    StartServers 2
    MinSpareServers 2
    MaxSpareServers 4
    ServerLimit 4
    <IfVersion >= 2.4>
        MaxRequestWorkers 4
        MaxConnectionsPerChild 2000
    </IfVersion>
    <IfVersion < 2.4>
        MaxClients 4
        MaxRequestsPerChild 2000
    </IfVersion>
    MaxMemFree 2
    SendBufferSize 65536
    ReceiveBufferSize 65536
</IfModule>

<IfModule worker.c>
    <IfVersion >= 2.4>
        Mutex default mpm-accept
    </IfVersion>
    StartServers 2
    MinSpareThreads 2
    MaxSpareThreads 4
    ThreadsPerChild 25
    ServerLimit 4
    <IfVersion >= 2.4>
        MaxRequestWorkers 100
        MaxConnectionsPerChild 0
    </IfVersion>
    <IfVersion < 2.4>
        MaxClients 100
        MaxRequestsPerChild 0
    </IfVersion>
    MaxMemFree 2
    SendBufferSize 65536
    ReceiveBufferSize 65536
</IfModule>

<IfModule event.c>
    StartServers 2
    MinSpareThreads 2
    MaxSpareThreads 4
    ThreadsPerChild 25
    ServerLimit 4
    MaxRequestsPerChild 0
    <IfVersion >= 2.4>
        MaxRequestWorkers 100
        MaxConnectionsPerChild 0
    </IfVersion>
    <IfVersion < 2.4>
        MaxClients 100
        MaxRequestsPerChild 0
    </IfVersion>
    SendBufferSize 65536
    ReceiveBufferSize 65536
</IfModule>

Include /opt/configs/apache/conf/defaults/*.conf
Include /opt/configs/apache/conf/domains/*.conf
 
Timeout 300
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 15
MinSpareServers 5
MaxSpareServers 10
StartServers 5
MaxClients 150
MaxRequestsPerChild 0

Dari sini tuan :
/usr/local/apache/conf/httpd.conf
 
Timeout 300
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 15
MinSpareServers 5
MaxSpareServers 10
StartServers 5
MaxClients 150
MaxRequestsPerChild 0

Dari sini tuan :
/usr/local/apache/conf/httpd.conf
Coba saja jadikan 'KeepAlive Off'
 
Status
Not open for further replies.
Back
Top