Apache - Traffic falls down - Lot of server resources available

General support questions
Post Reply
mahesh2150
Posts: 16
Joined: 2017/10/17 17:15:47

Apache - Traffic falls down - Lot of server resources available

Post by mahesh2150 » 2018/01/20 10:19:37

Code: Select all

top - 07:41:44 up 1 day, 14:02,  1 user,  load average: 0.16, 0.18, 0.18
Tasks: 498 total,   1 running, 496 sleeping,   0 stopped,   1 zombie
%Cpu(s):  1.7 us,  0.5 sy,  0.0 ni, 97.7 id,  0.0 wa,  0.0 hi,  0.1 si,  0.0 st
KiB Mem : 32766924 total, 28650076 free,  2679848 used,  1437000 buff/cache
KiB Swap:        0 total,        0 free,        0 used. 29563272 avail Mem
It is only api server with php and mysql with apache and memcached.
I did not install dns i am using the ip address to point to the server.

Code: Select all

VirtualHost *:80>
        ServerAdmin webmaster @ localhost
        ServerAlias xx.xxx.xxx.xx
        DocumentRoot /var/www/html
        <Directory /var/www/html/>
         Options Indexes FollowSymLinks MultiViews ExecCGI
         AllowOverride Authconfig FileInfo
         Require all granted
        </Directory>
</VirtualHost>

Code: Select all

<IfModule mpm_prefork_module>
        StartServers             20
        MinSpareServers          20
        MaxSpareServers          50
        MaxRequestWorkers        500
        ServerLimit              500
        MaxConnectionsPerChild   700
</IfModule>
Default access log is giving these errors.
But there is another proper access log. other_virtual_host.conf which is giving proper access

Code: Select all

117.213.200.226 - - [20/Jan/2018:07:47:32 +0000] "-" 408 0 "-" "-"
157.49.142.41 - - [20/Jan/2018:07:47:32 +0000] "-" 408 0 "-" "-"
157.50.15.165 - - [20/Jan/2018:07:47:34 +0000] "-" 408 0 "-" "-" 

Post Reply