Speicherproblem-> Apache

Apache, Lighttpd, nginx, Cherokee
Post Reply
chrystalsky
Posts: 42
Joined: 2003-02-28 14:54
Location: /Home/Chrystalsky
Contact:
 

Speicherproblem-> Apache

Post by chrystalsky »

Hi,

ich habe ein massives Speicherproblem zur Zeit. Der Apache verschlingt unmengen an RAM.

Serverdaten:

Opteron 148
1 GB Ram
2 x 160 GB S-ATA
2 GB SWAP

Die Installation ist recht schmal gehalten:

Gentoo stage 1
MySQL
Apache 2.0.x
PHP 4.4.x


Es laufen zwei Seiten auf dem Server. Diese machen schon viel Traffic am Tag (ca 20 - 50k unique IP´s pro Tag)

Dazu kommen noch die Downloads. (Server macht im moment 200 GB Traffic/Tag) ich habe das Gefühl, dass der Apache jeden Download in Speicher schreibt und dadurch eben der Rest der Maschine keinen Speicher mehr hat und anfängt zu swappen. Leider kann ich das nur vermuten. Jetzt meine Frage, hat jemand ein paar Verbeserungsvorschläge? Die Last auf MySQL-Basis ist nicht gegeben. Einzigst was hier Last verursachen könnte wäre ein Forum... Aber das sollte der Server schaffen und das Forum ist auch auf der kleineren Seite.

hier mal ein paar Conf-Daten:
odin ~ # sysctl -a | grep "vm.swappines"
vm.swappiness = 60

odin ~ # free
total used free shared buffers cached
Mem: 1025608 1015384 10224 0 19480 528864
-/+ buffers/cache: 467040 558568
Swap: 1951888 39208 1912680
Muss dazu sagen, habe apache gerade neu gestartet.
<IfModule worker.c>
StartServers 2
MaxClients 150
MinSpareThreads 25
MaxSpareThreads 75
ThreadsPerChild 25
MaxRequestsPerChild 0
</IfModule>
Gibt es eine Möglichkeit, hier noch was zu optimieren? Ansonsten würde ich ein throttle Modul für Apache einbauen und eben die Downloads limitieren.

schonmal danke im vorraus
oxygen
Posts: 2138
Joined: 2002-12-15 00:10
Location: Bergheim
 

Re: Speicherproblem-> Apache

Post by oxygen »

Downloads würde ich auf einen anderen schmalen httpd oder eine ftp Server legen.
User avatar
Joe User
Project Manager
Project Manager
Posts: 11191
Joined: 2003-02-27 01:00
Location: Hamburg
Contact:
 

Re: Speicherproblem-> Apache

Post by Joe User »

Du hast noch ~530MB freien RAM, wo ist das Problem?
PayPal.Me/JoeUserFreeBSD Remote Installation
Wings for LifeWings for Life World Run

„If there’s more than one possible outcome of a job or task, and one
of those outcomes will result in disaster or an undesirable consequence,
then somebody will do it that way.“ -- Edward Aloysius Murphy Jr.
chrystalsky
Posts: 42
Joined: 2003-02-28 14:54
Location: /Home/Chrystalsky
Contact:
 

Re: Speicherproblem-> Apache

Post by chrystalsky »

wie gesagt, hatte gerade apache neu gestartet.... deswegen war speicher wieder frei.
User avatar
Joe User
Project Manager
Project Manager
Posts: 11191
Joined: 2003-02-27 01:00
Location: Hamburg
Contact:
 

Re: Speicherproblem-> Apache

Post by Joe User »

Schmeiss alle nicht zwingend benötigte Module raus und rekonfiguriere den Apache:

Code: Select all

Timeout 30
KeepAlive On
KeepAliveTimeout 2
MaxKeepAliveRequests 100
<IfModule worker.c>
    StartServers         2
    MinSpareThreads     25
    MaxSpareThreads     75
    ThreadsPerChild     25
    MaxClients         150
    MaxRequestsPerChild  100
</IfModule>
PayPal.Me/JoeUserFreeBSD Remote Installation
Wings for LifeWings for Life World Run

„If there’s more than one possible outcome of a job or task, and one
of those outcomes will result in disaster or an undesirable consequence,
then somebody will do it that way.“ -- Edward Aloysius Murphy Jr.
alexander newald
Posts: 1117
Joined: 2002-09-27 00:54
Location: Hannover
Contact:
 

Re: Speicherproblem-> Apache

Post by alexander newald »

Ansonsten mal ein

ps xafu

in [ code ] Tags posten
chrystalsky
Posts: 42
Joined: 2003-02-28 14:54
Location: /Home/Chrystalsky
Contact:
 

Re: Speicherproblem-> Apache

Post by chrystalsky »

Joe User wrote:Schmeiss alle nicht zwingend benötigte Module raus und rekonfiguriere den Apache:

Code: Select all

Timeout 30
KeepAlive On
KeepAliveTimeout 2
MaxKeepAliveRequests 100
<IfModule worker.c>
    StartServers         2
    MinSpareThreads     25
    MaxSpareThreads     75
    ThreadsPerChild     25
    MaxClients         150
    MaxRequestsPerChild  100
</IfModule>
Die Module sind schon draussen.... Ich habe die Einstellungen jetzt mal übernommen und auch noch ein weiteres Aapche-Modul installiert, was die Bandbreite ein wenig reguliert... sieht bis jetzt mal gut aus, ich warte ienfach mal ab bis morgen.

Auf jedenfall schonmal super vielen dank :)
chrystalsky
Posts: 42
Joined: 2003-02-28 14:54
Location: /Home/Chrystalsky
Contact:
 

Re: Speicherproblem-> Apache

Post by chrystalsky »

Alexander Newald wrote:Ansonsten mal ein

ps xafu

in [ code ] Tags posten

Code: Select all

USER       PID %CPU %MEM    VSZ   RSS TTY      STAT START   TIME COMMAND
root         1  0.0  0.0   2628   440 ?        S    Feb21   0:00 init [3]  
root         2  0.0  0.0      0     0 ?        S    Feb21   0:00 [migration/0]
root         3  0.0  0.0      0     0 ?        SN   Feb21   0:00 [ksoftirqd/0]
root         4  0.0  0.0      0     0 ?        S    Feb21   0:00 [watchdog/0]
root         5  0.0  0.0      0     0 ?        S<   Feb21   0:00 [events/0]
root         6  0.0  0.0      0     0 ?        S<   Feb21   0:00 [khelper]
root         7  0.0  0.0      0     0 ?        S<   Feb21   0:00 [kthread]
root         8  0.0  0.0      0     0 ?        S<   Feb21   0:00  _ [kblockd/0]
root         9  0.0  0.0      0     0 ?        S<   Feb21   0:00  _ [khubd]
root        13  0.0  0.0      0     0 ?        S<   Feb21   0:00  _ [aio/0]
root        14  0.0  0.0      0     0 ?        S<   Feb21   0:00  _ [kseriod]
root        15  0.0  0.0      0     0 ?        S<   Feb21   0:00  _ [ata/0]
root        16  0.0  0.0      0     0 ?        S<   Feb21   0:00  _ [scsi_eh_0]
root        17  0.0  0.0      0     0 ?        S<   Feb21   0:00  _ [scsi_eh_1]
root        18  0.0  0.0      0     0 ?        S<   Feb21   0:00  _ [scsi_eh_2]
root        19  0.0  0.0      0     0 ?        S<   Feb21   0:00  _ [scsi_eh_3]
root        20  0.0  0.0      0     0 ?        S<   Feb21   0:00  _ [reiserfs/0]
root     10654  0.0  0.0      0     0 ?        S    10:52   0:00  _ [pdflush]
root     16092  0.0  0.0      0     0 ?        S    11:23   0:00  _ [pdflush]
root        12  0.0  0.0      0     0 ?        S    Feb21   1:12 [kswapd0]
root     16049  0.0  0.0   6940   116 ?        S<s  Feb21   0:00 /sbin/udevd --daemon
root      3112  0.0  0.0   5132   440 ?        Ss   Feb21   0:01 /usr/sbin/syslog-ng
root      9374  0.0  0.0   2616    48 ?        Ss   Feb21   0:00 /sbin/dhcpcd -h odin eth0
root      8030  0.0  0.0   8888   492 ?        Ss   Feb21   0:00 /bin/sh /usr/bin/mysqld_safe --defaults-file=/etc/mysql/my.cnf
mysql    13801  0.0  1.2 120800 13128 ?        S    Feb21   0:05  _ /usr/sbin/mysqld --defaults-file=/etc/mysql/my.cnf --basedir=/usr --datadir=/var/lib/mysql --user=mysql --pid-file=/var/run/mysqld/mysqld.pid --skip-locking --port=3306 --socket=/var/run/mysqld/mysqld.sock
mysql    25744  0.0  1.2 120800 13128 ?        S    Feb21   0:07      _ /usr/sbin/mysqld --defaults-file=/etc/mysql/my.cnf --basedir=/usr --datadir=/var/lib/mysql --user=mysql --pid-file=/var/run/mysqld/mysqld.pid --skip-locking --port=3306 --socket=/var/run/mysqld/mysqld.sock
mysql     1078  0.0  1.2 120800 13128 ?        S    Feb21   0:00          _ /usr/sbin/mysqld --defaults-file=/etc/mysql/my.cnf --basedir=/usr --datadir=/var/lib/mysql --user=mysql --pid-file=/var/run/mysqld/mysqld.pid --skip-locking --port=3306 --socket=/var/run/mysqld/mysqld.sock
mysql     6268  0.0  1.2 120800 13128 ?        S    Feb21   0:00          _ /usr/sbin/mysqld --defaults-file=/etc/mysql/my.cnf --basedir=/usr --datadir=/var/lib/mysql --user=mysql --pid-file=/var/run/mysqld/mysqld.pid --skip-locking --port=3306 --socket=/var/run/mysqld/mysqld.sock
mysql    20649  0.0  1.2 120800 13128 ?        S    Feb21   0:00          _ /usr/sbin/mysqld --defaults-file=/etc/mysql/my.cnf --basedir=/usr --datadir=/var/lib/mysql --user=mysql --pid-file=/var/run/mysqld/mysqld.pid --skip-locking --port=3306 --socket=/var/run/mysqld/mysqld.sock
mysql     7691  0.0  1.2 120800 13128 ?        S    Feb21   0:00          _ /usr/sbin/mysqld --defaults-file=/etc/mysql/my.cnf --basedir=/usr --datadir=/var/lib/mysql --user=mysql --pid-file=/var/run/mysqld/mysqld.pid --skip-locking --port=3306 --socket=/var/run/mysqld/mysqld.sock
mysql    17885  0.0  1.2 120800 13128 ?        S    Feb21   0:01          _ /usr/sbin/mysqld --defaults-file=/etc/mysql/my.cnf --basedir=/usr --datadir=/var/lib/mysql --user=mysql --pid-file=/var/run/mysqld/mysqld.pid --skip-locking --port=3306 --socket=/var/run/mysqld/mysqld.sock
mysql     9337  0.0  1.2 120800 13128 ?        S    Feb21   0:01          _ /usr/sbin/mysqld --defaults-file=/etc/mysql/my.cnf --basedir=/usr --datadir=/var/lib/mysql --user=mysql --pid-file=/var/run/mysqld/mysqld.pid --skip-locking --port=3306 --socket=/var/run/mysqld/mysqld.sock
mysql     2984  0.0  1.2 120800 13128 ?        S    Feb21   0:00          _ /usr/sbin/mysqld --defaults-file=/etc/mysql/my.cnf --basedir=/usr --datadir=/var/lib/mysql --user=mysql --pid-file=/var/run/mysqld/mysqld.pid --skip-locking --port=3306 --socket=/var/run/mysqld/mysqld.sock
mysql    26444  0.0  1.2 120800 13128 ?        S    Feb21   0:05          _ /usr/sbin/mysqld --defaults-file=/etc/mysql/my.cnf --basedir=/usr --datadir=/var/lib/mysql --user=mysql --pid-file=/var/run/mysqld/mysqld.pid --skip-locking --port=3306 --socket=/var/run/mysqld/mysqld.sock
root     14781  0.0  0.0  17496   308 ?        Ss   Feb21   0:00 /usr/sbin/sshd -o PidFile=/var/run/sshd.pid
root     23805  0.0  0.1  29696  1468 ?        Ss   09:56   0:03  _ sshd: root@pts/0                              
root      5688  0.0  0.1   9052  1172 pts/0    Ss   09:56   0:00      _ -bash
root     15765  0.0  0.1   9080  1196 pts/0    R+   12:49   0:00          _ ps xauf
root      7014  0.0  0.0   9012   544 ?        Ss   Feb21   0:00 /usr/sbin/cron
root     18084  0.0  0.0   2576   344 tty1     Ss+  Feb21   0:00 /sbin/agetty 38400 tty1 linux
root     24879  0.0  0.0   2628   344 tty2     Ss+  Feb21   0:00 /sbin/agetty 38400 tty2 linux
root     15812  0.0  0.0   2600   344 tty3     Ss+  Feb21   0:00 /sbin/agetty 38400 tty3 linux
root      6196  0.0  0.0   2584   344 tty4     Ss+  Feb21   0:00 /sbin/agetty 38400 tty4 linux
root     29807  0.0  0.0   2604   344 tty5     Ss+  Feb21   0:00 /sbin/agetty 38400 tty5 linux
root       587  0.0  0.0   2580   344 tty6     Ss+  Feb21   0:00 /sbin/agetty 38400 tty6 linux
root     14760  0.0  0.0   2624   340 ttyS0    Ss+  Feb21   0:00 /sbin/agetty 57600 /dev/ttyS0
secure    7891  0.0  0.6  35532  7008 ?        S    Feb21   0:15 ./eggdrop byte.conf
root     17536  0.0  0.4  81304  5104 ?        Ss   Feb21   0:00 /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   16202  0.0  0.0  80664  1016 ?        S    05:00   0:00  _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache    9397  0.0  3.2 155632 33840 ?        S    12:02   0:00  _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   27311  0.0  3.2 155632 33840 ?        S    12:02   0:00  |   _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache    3022  0.0  3.2 155632 33840 ?        S    12:02   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache    3575  0.0  2.2 147356 23080 ?        S    12:14   0:00  _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   18332  0.0  2.2 147356 23080 ?        S    12:14   0:00  |   _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   30873  0.0  2.2 147356 23080 ?        S    12:14   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache    2532  0.0  2.9 195068 30728 ?        S    12:18   0:00  _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   12499  0.0  2.9 195068 30728 ?        S    12:18   0:00  |   _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache    7602  0.0  2.9 195068 30728 ?        S    12:18   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache    4163  0.0  2.9 195068 30728 ?        S    12:18   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   16259  0.0  2.1 147184 21956 ?        S    12:19   0:00  _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   12428  0.0  2.1 147184 21956 ?        S    12:19   0:00  |   _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache    5766  0.0  2.1 147184 21956 ?        S    12:19   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache    7869  0.0  2.1 147184 21956 ?        S    12:19   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   29968  0.0  3.6 173300 37700 ?        S    12:19   0:00  _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache    9765  0.0  3.6 173300 37700 ?        S    12:19   0:00  |   _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   13662  0.0  3.6 173300 37700 ?        S    12:19   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   23935  0.0  3.1 147328 32324 ?        S    12:23   0:00  _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   24341  0.0  3.1 147328 32324 ?        S    12:23   0:00  |   _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   28472  0.0  3.1 147328 32324 ?        S    12:23   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache    2723  0.0  3.0 144496 31768 ?        S    12:24   0:00  _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache    9827  0.0  3.0 144496 31768 ?        S    12:24   0:00  |   _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache     552  0.1  3.0 144496 31768 ?        S    12:24   0:01  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   11140  0.0  3.0 144496 31768 ?        S    12:24   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   14247  0.0  3.7 172268 38624 ?        S    12:27   0:00  _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   19967  0.0  3.7 172268 38624 ?        S    12:27   0:00  |   _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   26943  0.0  3.7 172268 38624 ?        S    12:27   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   16702  0.0  3.7 132192 38116 ?        S    12:28   0:00  _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   10376  0.0  3.7 132192 38116 ?        S    12:28   0:00  |   _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   17302  0.0  3.7 132192 38116 ?        S    12:30   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   21462  0.0  4.3 180880 44192 ?        S    12:28   0:00  _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   11212  0.0  4.3 180880 44192 ?        S    12:28   0:00  |   _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache    3193  0.0  4.3 180880 44192 ?        S    12:28   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   16263  0.0  4.3 180880 44192 ?        S    12:28   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache    2601  0.0  4.3 180880 44192 ?        S    12:28   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache    1428  0.0  4.3 180880 44192 ?        S    12:28   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   19299  0.0  4.3 180880 44192 ?        S    12:29   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   16845  0.0  4.3 180880 44192 ?        S    12:29   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   19065  0.0  3.4 152060 35848 ?        S    12:29   0:00  _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache    5327  0.0  3.4 152060 35848 ?        S    12:29   0:00  |   _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache    9513  0.0  3.4 152060 35848 ?        S    12:29   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   24918  0.0  4.1 163676 42896 ?        S    12:34   0:00  _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   31279  0.0  4.1 163676 42896 ?        S    12:34   0:00  |   _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   25628  0.0  4.1 163676 42896 ?        S    12:34   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache    2864  0.0  2.9 126436 30280 ?        S    12:36   0:00  _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   25105  0.0  2.9 126436 30280 ?        S    12:36   0:00  |   _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   17864  0.0  2.9 126436 30280 ?        S    12:36   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache     201  0.0  5.1 179636 52664 ?        S    12:38   0:00  _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   14425  0.0  5.1 179636 52664 ?        S    12:38   0:00  |   _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   13823  0.0  5.1 179636 52664 ?        S    12:38   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   13803  0.0  5.1 179636 52664 ?        S    12:38   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache    6521  0.0  3.0 168616 31132 ?        S    12:40   0:00  _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   21601  0.0  3.0 168616 31132 ?        S    12:40   0:00  |   _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache    4242  0.0  3.0 168616 31132 ?        S    12:40   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   10228  0.0  3.0 168616 31132 ?        S    12:40   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   25830  0.0  3.0 168616 31132 ?        S    12:40   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   29134  0.0  3.0 168616 31132 ?        S    12:40   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   11436  0.0  3.0 168616 31132 ?        D    12:41   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   28378  0.0  4.5 198108 46552 ?        S    12:41   0:00  _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   15027  0.0  4.5 198108 46552 ?        S    12:41   0:00  |   _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   11988  0.0  4.5 198108 46552 ?        S    12:41   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   24630  0.0  4.5 198108 46552 ?        S    12:41   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   18185  0.0  4.5 198108 46552 ?        S    12:43   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   14969  0.0  4.6 182192 47664 ?        S    12:45   0:00  _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   26365  0.0  4.6 182192 47664 ?        S    12:45   0:00  |   _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   24243  0.0  4.6 182192 47664 ?        S    12:45   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   13505  0.1  4.6 182192 47664 ?        S    12:45   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   21716  0.2  4.6 182192 47664 ?        S    12:45   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   20095  0.0  4.6 182192 47664 ?        S    12:45   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache     932  0.0  4.6 182192 47664 ?        S    12:45   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   13483  0.0  4.6 182192 47664 ?        S    12:45   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache    7634  0.0  4.6 182192 47664 ?        S    12:45   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache    4371  0.0  4.6 182192 47664 ?        S    12:45   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache    6949  0.0  4.6 182192 47664 ?        S    12:45   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   21890  0.1  4.6 182192 47664 ?        S    12:45   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   31484  0.2  4.6 182192 47664 ?        S    12:45   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   13571  0.0  4.6 182192 47664 ?        S    12:45   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache    3259  0.1  4.6 182192 47664 ?        S    12:45   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   11635  0.2  4.6 182192 47664 ?        D    12:45   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   14477  0.2  4.6 182192 47664 ?        S    12:45   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache    4918  0.2  4.6 182192 47664 ?        S    12:45   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   18115  0.0  4.6 182192 47664 ?        S    12:45   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   15367  0.1  4.6 182192 47664 ?        S    12:45   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   11553  0.0  4.6 182192 47664 ?        S    12:45   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   27772  0.1  4.6 182192 47664 ?        S    12:46   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   23929  0.2  4.6 182192 47664 ?        S    12:48   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   31309  0.0  4.6 182192 47664 ?        S    12:49   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   10913  0.0  4.6 182192 47664 ?        S    12:49   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   20099  0.0  4.6 182192 47664 ?        S    12:49   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   22076  0.0  4.6 182192 47664 ?        S    12:49   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   19745  0.0  4.2 159128 43280 ?        S    12:46   0:00  _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   23783  0.0  4.2 159128 43280 ?        S    12:46   0:00  |   _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   28214  0.0  4.2 159128 43280 ?        S    12:46   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   18847  0.0  4.2 159128 43280 ?        D    12:46   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   24585  0.0  4.2 159128 43280 ?        S    12:46   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   31821  0.3  4.2 159128 43280 ?        S    12:46   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   15459  0.0  4.2 159128 43280 ?        S    12:46   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   11272  0.0  4.2 159128 43280 ?        S    12:46   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   28541  0.0  4.2 159128 43280 ?        S    12:46   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache    7734  0.0  4.2 159128 43280 ?        S    12:46   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   21976  0.1  4.2 159128 43280 ?        S    12:46   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   16108  0.6  4.2 159128 43280 ?        S    12:46   0:01  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache     206  0.0  4.2 159128 43280 ?        S    12:46   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   24031  0.3  4.2 159128 43280 ?        S    12:46   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   16968  0.0  4.2 159128 43280 ?        S    12:46   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   12658  0.0  4.2 159128 43280 ?        S    12:46   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache    9234  0.6  4.2 159128 43280 ?        S    12:47   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache      60  0.0  4.2 159128 43280 ?        S    12:47   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache    9251  0.0  3.7 153952 38760 ?        S    12:47   0:00  _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache    8570  0.0  3.7 153952 38760 ?        S    12:47   0:00  |   _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   24072  0.0  3.7 153952 38760 ?        S    12:47   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   10642  0.0  3.7 153952 38760 ?        S    12:47   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache    7827  0.0  3.7 153952 38760 ?        S    12:47   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   15890  0.0  3.7 153952 38760 ?        S    12:47   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache     209  0.3  3.7 153952 38760 ?        S    12:47   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   31727  0.2  3.7 153952 38760 ?        S    12:47   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   26067  0.0  3.7 153952 38760 ?        S    12:47   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   31504  0.1  3.7 153952 38760 ?        S    12:47   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache    3563  0.0  3.7 153952 38760 ?        S    12:47   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   30182  0.2  3.7 153952 38760 ?        S    12:47   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   26718  0.1  3.7 153952 38760 ?        S    12:47   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   30833  0.3  3.7 153952 38760 ?        S    12:47   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache    5047  0.0  3.7 153952 38760 ?        S    12:47   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   26623  0.0  3.7 153952 38760 ?        S    12:47   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   20859  0.0  3.7 153952 38760 ?        S    12:47   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   30613  0.3  3.7 153952 38760 ?        S    12:47   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   11805  0.0  3.7 153952 38760 ?        S    12:48   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   10200  0.0  3.7 153952 38760 ?        S    12:49   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   14463  0.0  3.7 153952 38760 ?        S    12:49   0:00  |       _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   10450  0.0  3.7 164016 38596 ?        S    12:47   0:00  _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache    4088  0.0  3.7 164016 38596 ?        S    12:47   0:00      _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   28000  0.0  3.7 164016 38596 ?        S    12:47   0:00          _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   18595  0.0  3.7 164016 38596 ?        S    12:47   0:00          _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   22220  0.0  3.7 164016 38596 ?        S    12:47   0:00          _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   23276  0.1  3.7 164016 38596 ?        S    12:47   0:00          _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   26115  0.0  3.7 164016 38596 ?        S    12:47   0:00          _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache    9326  0.0  3.7 164016 38596 ?        S    12:47   0:00          _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache    3506  0.1  3.7 164016 38596 ?        S    12:47   0:00          _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   24048  0.0  3.7 164016 38596 ?        S    12:47   0:00          _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   15723  0.0  3.7 164016 38596 ?        S    12:47   0:00          _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   25574  0.0  3.7 164016 38596 ?        D    12:47   0:00          _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   31612  0.0  3.7 164016 38596 ?        S    12:47   0:00          _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   15965  0.1  3.7 164016 38596 ?        S    12:47   0:00          _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache    4068  0.0  3.7 164016 38596 ?        S    12:47   0:00          _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   32668  0.0  3.7 164016 38596 ?        S    12:47   0:00          _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   30765  0.1  3.7 164016 38596 ?        S    12:47   0:00          _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   12450  0.2  3.7 164016 38596 ?        S    12:47   0:00          _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   21230  0.0  3.7 164016 38596 ?        S    12:47   0:00          _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   20922  0.2  3.7 164016 38596 ?        S    12:47   0:00          _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   31154  0.1  3.7 164016 38596 ?        S    12:47   0:00          _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   29892  0.2  3.7 164016 38596 ?        S    12:47   0:00          _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   10339  0.0  3.7 164016 38596 ?        S    12:47   0:00          _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache   17596  0.0  3.7 164016 38596 ?        S    12:48   0:00          _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
apache    9332  0.3  3.7 164016 38596 ?        S    12:48   0:00          _ /usr/sbin/apache2 -D PHP4 -D SSL -D SSL_DEFAULT_VHOST -d /usr/lib64/apache2 -f /etc/apache2/httpd.conf -k start
im moment geht es noch... denke später wird ungefähr das doppelte los sein auf dem Server.
alexander newald
Posts: 1117
Joined: 2002-09-27 00:54
Location: Hannover
Contact:
 

Re: Speicherproblem-> Apache

Post by alexander newald »

Ist der Apache nicht etwas gross?? Warum die unterschiedlichen Verästelungen bei den Childs? Soll der eggdrop auf dem Server laufen? Bei mir siehts in etwa so aus (Allerdings mit PHP als CGI)

Code: Select all

       0 24769  0.0  0.1  5752 3032 ?        Ss   Feb14   0:03 /usr/apache2/bin/httpd -f /etc/httpd/httpd.conf
    2000 30046  0.0  0.1  5704 3416 ?        S    Feb21   0:00  _ /usr/bin/perl /home/client/error_log
    2000 30047  0.0  0.1  4080 2628 ?        S    Feb21   0:01  _ /usr/bin/perl /home/client/traffic_log
     175 30053  0.0  0.1  5916 3384 ?        S    Feb21   0:00  _ /usr/apache2/bin/httpd -f /etc/httpd/httpd.conf
     175 30065  0.0  0.1  5928 3400 ?        S    Feb21   0:00  _ /usr/apache2/bin/httpd -f /etc/httpd/httpd.conf
     175  9650  0.0  0.1  5932 3412 ?        S    Feb21   0:00  _ /usr/apache2/bin/httpd -f /etc/httpd/httpd.conf
     175  9653  0.0  0.1  5920 3424 ?        S    Feb21   0:00  _ /usr/apache2/bin/httpd -f /etc/httpd/httpd.conf
     175  9654  0.0  0.1  5928 3420 ?        S    Feb21   0:00  _ /usr/apache2/bin/httpd -f /etc/httpd/httpd.conf
     175 12542  0.0  0.1  5940 3432 ?        S    Feb21   0:00  _ /usr/apache2/bin/httpd -f /etc/httpd/httpd.conf
     175 12657  0.0  0.1  5920 3392 ?        S    Feb21   0:00  _ /usr/apache2/bin/httpd -f /etc/httpd/httpd.conf
     175 12659  0.0  0.1  5928 3404 ?        S    Feb21   0:00  _ /usr/apache2/bin/httpd -f /etc/httpd/httpd.conf
     175 12670  0.0  0.1  5928 3420 ?        S    Feb21   0:00  _ /usr/apache2/bin/httpd -f /etc/httpd/httpd.conf
...
chrystalsky
Posts: 42
Joined: 2003-02-28 14:54
Location: /Home/Chrystalsky
Contact:
 

Re: Speicherproblem-> Apache

Post by chrystalsky »

Joe User wrote:Schmeiss alle nicht zwingend benötigte Module raus und rekonfiguriere den Apache:

Code: Select all

Timeout 30
KeepAlive On
KeepAliveTimeout 2
MaxKeepAliveRequests 100
<IfModule worker.c>
    StartServers         2
    MinSpareThreads     25
    MaxSpareThreads     75
    ThreadsPerChild     25
    MaxClients         150
    MaxRequestsPerChild  100
</IfModule>
Ich hatte diese Einstellungen übernommen.

Der eggdrop ist von mir, ja :-) Aber es wird nichts darüber geshared oder so... ist nur ein kleiner bot.
alexander newald
Posts: 1117
Joined: 2002-09-27 00:54
Location: Hannover
Contact:
 

Re: Speicherproblem-> Apache

Post by alexander newald »

Versuch mal prefork wenn sonst nichts dagegen spricht. Was hast du sonst nach an Modulen geladen?
chrystalsky
Posts: 42
Joined: 2003-02-28 14:54
Location: /Home/Chrystalsky
Contact:
 

Re: Speicherproblem-> Apache

Post by chrystalsky »

prefork hatte ich vorher. Ist noch schlimmer damit.

Module sind auch nicht wirklich viele geladen. Eben die, die benötigt werden. Dort hatte ich anfangs schon angesetzt.

Hmm, wird der Server wohl doch zu klein sein.

Falls jemand noch eine Idee hat, gerne her damit. Aber schonmal danke für die Unterstützung.
User avatar
Joe User
Project Manager
Project Manager
Posts: 11191
Joined: 2003-02-27 01:00
Location: Hamburg
Contact:
 

Re: Speicherproblem-> Apache

Post by Joe User »

PayPal.Me/JoeUserFreeBSD Remote Installation
Wings for LifeWings for Life World Run

„If there’s more than one possible outcome of a job or task, and one
of those outcomes will result in disaster or an undesirable consequence,
then somebody will do it that way.“ -- Edward Aloysius Murphy Jr.
chrystalsky
Posts: 42
Joined: 2003-02-28 14:54
Location: /Home/Chrystalsky
Contact:
 

Re: Speicherproblem-> Apache

Post by chrystalsky »

Ahhhh :D juhuuu :-)

EnableMmap Off und alle Probleme sind gelößt :-D

Super vielen Dank
Post Reply