GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   Question about server load - help (https://gfy.com/showthread.php?t=146705)

ThePornGuy 06-25-2003 06:05 AM

Question about server load - help
 
I got a dedicated server a few days ago. Last night I got up to pushing 5Mbits from it. Today, when you try to load a page, it takes 3 or 4 seconds to respond, then the page starts loading fast, then is pauses for another 2 or 3 seconds and then the page finishes loading fast again. Is the server too slow to push 5Mbits? it is a duron 1Ghz with 512mb. Shoudl I get a faster one or is there soem type of adjustment I'm missing? It is all static content. it is alot of movies and jpegs.

Juicy D. Links 06-25-2003 06:07 AM

Speaking of loads I shot one this morning

funkmaster 06-25-2003 06:08 AM

maybe it only has a 5Mbit network card ?

JohnnyUtah 06-25-2003 06:11 AM

Your capped at what?
Did you also do a trace to your box?
Login in ssh and do a check on your process running.
If its a heavy load, then the box might not take the heat of 5 Mbits....

ThePornGuy 06-25-2003 06:14 AM

Quote:

Originally posted by JohnnyUtah
Your capped at what?
Did you also do a trace to your box?

Im supposedly not capped at all and I do not know what a trace is.

ThePornGuy 06-25-2003 06:18 AM

Quote:

Originally posted by JohnnyUtah
Your capped at what?
Did you also do a trace to your box?
Login in ssh and do a check on your process running.
If its a heavy load, then the box might not take the heat of 5 Mbits....


hmmm. It comes up 80%-90% idle.

crescentx 06-25-2003 06:19 AM

Do you know how to use SSH or telnet? If so, go into your box.

Type in uptime - this will tell you load. With 5MBit the three numbers you get should be under 2.

I think I know what your problem is, though, because we had something similar happen, if so it's not you server, it's not your network card (I've never heard of 5 megabit ethernet card, I don't believe they exist), it's most likely script kiddies and a new form of screwing with password-protected sites. ICQ me 92621328 and I will help you figure this out

-doug

funkmaster 06-25-2003 06:20 AM

seriously, maybe itīs just your internet connection ... mind posting your siteīs domain ??

and there are many things you can tweak in the httpd.conf

Bucho 06-25-2003 06:20 AM

sounds like your httpd.conf needs a bit of fiddling - look me up at 4646141 if you dont feel at home in vi/pico/httpd.conf :)

re's

Bucho :)

funkmaster 06-25-2003 06:28 AM

Quote:

Originally posted by Bucho
sounds like your httpd.conf needs a bit of fiddling - look me up at 4646141 if you dont feel at home in vi/pico/httpd.conf :)

re's

Bucho :)

yes ... do the following:

cd into new Apache directory
edit ./src/include/httpd.h
change #define HARD_SERVER_LIMIT 256
to #define HARD_SERVER_LIMIT 1024

run:

make clean
./configure
make
make install

edit your http.conf and do the following changes:

Timeout 30
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 15
MinSpareServers 10
MaxSpareServers 20
StartServers 50
MaxClients 1000
MaxRequestsPerChild 0

... then restart the apache webserver :

/usr/local/apache/bin/apachectl stop
/usr/local/apache/bin/apachectl start

note: apachectl can be in another location, you can find it by:

locate apachectl

... hope this helps ?

ThePornGuy 06-25-2003 06:34 AM

Bucho is my hero. He telneted in and fixed it. thanks for everybody elses help, I appreciate it.

Bucho 06-25-2003 06:40 AM

Quote:

Originally posted by ThePornGuy
Bucho is my hero. He telneted in and fixed it. thanks for everybody elses help, I appreciate it.
no problemo (btw, i ssh'ed - dont ever use telnet man :))

funkmaster 06-25-2003 06:41 AM

did you upgrade to apache2 (I am pretty happy with it) ... or just made the httpd.conf changes ??

Bucho 06-25-2003 06:45 AM

Quote:

Originally posted by funkmaster
did you upgrade to apache2 (I am pretty happy with it) ... or just made the httpd.conf changes ??
just made the changes to httpd.conf - was all it needed - and its fast again now :)
hardlimit was allready at 2048 as standard

I use a bit different settings than you listed, but hey - thats almost a religious discussion :)
So lets not go there...

I run apache2 on one of my servers, havent really stressed it yet, so i dont really know that much about it yet.

Smegma 06-25-2003 07:53 AM

Quote:

Originally posted by funkmaster


yes ... do the following:

cd into new Apache directory
edit ./src/include/httpd.h
change #define HARD_SERVER_LIMIT 256
to #define HARD_SERVER_LIMIT 1024

run:

make clean
./configure
make
make install

edit your http.conf and do the following changes:

Timeout 30
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 15
MinSpareServers 10
MaxSpareServers 20
StartServers 50
MaxClients 1000
MaxRequestsPerChild 0

... then restart the apache webserver :

/usr/local/apache/bin/apachectl stop
/usr/local/apache/bin/apachectl start

note: apachectl can be in another location, you can find it by:

locate apachectl

... hope this helps ?

don't mean to shit on this.. apache tuning is more an art than science and to some degree, subjective.

First off, increasing the hard server limit beyond the amount of RAM in the server is not a great idea. This WILL cause apache to crash depending on the size of each apache process and the number of concurrent connections he has. I recommend 512.

MaxClients 1000 - Why set this at 1000 when you just recompiled for 1024? This should be set at 512 as well.

Turn KeepAlives off. Each KeepAlive will be a slot that can be could have been used by an active surfer. But with it turned on, your server is sitting waiting for the last user to let apache know its done.

Increase MinServers to 50 and Max to 100. What this does is keep a buffer of 50 to 100 idle apache processes. This prevents users from having to wait for content.

Check performance. See if you need more RAM. Also check dmesg and make sure you are not running out of network buffers. You will see errors when you type "dmesg" in the console.

Not having enough memory assigned to the network buffers will cause issues. The buffers keep a state table of active network connections (exasorbated by keepalives). If the network buffer does not have enough memory, well then, it can't retain the network state of active connections and they drop (fail)

ICQ me at the ICQ below and I will tune it for you.


All times are GMT -7. The time now is 11:24 PM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123