Welcome to the GoFuckYourself.com - Adult Webmaster Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Post New Thread Reply

Register GFY Rules Calendar
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >
Discuss what's fucking going on, and which programs are best and worst. One-time "program" announcements from "established" webmasters are allowed.

 
Thread Tools
Old 07-28-2009, 12:28 PM   #1
Darrell
Confirmed User
 
Join Date: Feb 2003
Location: In bed asleep
Posts: 803
Is this server powerful enough for hosting TGPs?

I have a 1x Intel Dual Core Xeon 3050 with 4GB DDR2 server that I'm using to load the thumbs for several TGPs. TGP traffic is about 120k a day and bandwidth is usually 22-25Mbps. At peak traffic times the thumbs can take 3 or 4 seconds before they start loading or they just load in slow.

Can anyone tell me if the server is not powerful enough for the job? Or maybe it just needs some tweaking to get better performance for loading small files.

Any advice would be appreciated.

Thanks
Darrell is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-28-2009, 12:29 PM   #2
Klen
 
Klen's Avatar
 
Industry Role:
Join Date: Aug 2006
Location: Little Vienna
Posts: 32,235
It will work fine,but you will need to optimize it.
Klen is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-28-2009, 12:30 PM   #3
Cyandin
Confirmed User
 
Industry Role:
Join Date: Aug 2008
Posts: 1,723
Quote:
Originally Posted by Darrell View Post
I have a 1x Intel Dual Core Xeon 3050 with 4GB DDR2 server that I'm using to load the thumbs for several TGPs. TGP traffic is about 120k a day and bandwidth is usually 22-25Mbps. At peak traffic times the thumbs can take 3 or 4 seconds before they start loading or they just load in slow.

Can anyone tell me if the server is not powerful enough for the job? Or maybe it just needs some tweaking to get better performance for loading small files.

Any advice would be appreciated.

Thanks

This is PLENTY powerful for this task. If you have any specific questions on tuning/setup, please feel free to ICQ me.

EDIT: For small files, I recommend using ReiserFS and a raid scheme to improve total IOPS of diskperformance. You could also consider mounting the memory as a ramdisk, depending on the total amount of thumbs being served. Lots of good tweaking options here!

Last edited by Cyandin; 07-28-2009 at 12:32 PM..
Cyandin is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-28-2009, 12:32 PM   #4
Darrell
Confirmed User
 
Join Date: Feb 2003
Location: In bed asleep
Posts: 803
Quote:
Originally Posted by KlenTelaris View Post
It will work fine,but you will need to optimize it.
Wow quick reply thanks

Can you point me towards any forums/sites that I can read that will give me some tips?
Darrell is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-28-2009, 12:43 PM   #5
CYF
Coupon Guru
 
CYF's Avatar
 
Industry Role:
Join Date: Mar 2009
Location: Minneapolis
Posts: 10,973
First of all, what OS are you running on the server?
__________________
Webmaster Coupons Coupons and discounts for hosting, domains, SSL Certs, and more!
AmeriNOC Coupons | Certified Hosting Coupons | Hosting Coupons | Domain Name Coupons

CYF is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-28-2009, 01:09 PM   #6
Klen
 
Klen's Avatar
 
Industry Role:
Join Date: Aug 2006
Location: Little Vienna
Posts: 32,235
Quote:
Originally Posted by Darrell View Post
Wow quick reply thanks

Can you point me towards any forums/sites that I can read that will give me some tips?
I can give you tips over icq if you want.In exchange you can force some traffic from your sites(we already trade but i could use some more trades and traffic)
Klen is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-28-2009, 01:15 PM   #7
blazin
Confirmed User
 
Join Date: Aug 2002
Posts: 2,781
Try using nginx instead of apache.. and cache your thumbs in memory instead of serving them from disk
__________________
I don't endorse a god damn thing......
blazin is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-29-2009, 11:34 AM   #8
raymor
Confirmed User
 
Join Date: Oct 2002
Posts: 3,745
Near the top of your Apace config file you'll find about 40 LoadModule directives.
Those load up various modules so you can do all kinds of nifty things with Apache.
mod_speling, for example, automatically fixed typos in URLs. Most of those modules
are things you'll never use in your life, and all of them make the server slower.
If this server is serving only thumbs, not running the PHP, probably 38 of those
40 modules can be commented out and the server will be MUCH faster - up to the
point where your network connection is the bottleneck. The top 2 to comment out
if you aren't using them are mod_php and mod_perl. Both are big, powerful modules
and by being big they slow things down.

There are several other configuration directives to tweak too.

The initial idea for nginx looked promising, but I'm not at all impressed with it.
The idea was to make a very small, fast web server, making it fast by leaving
out 96% of the features that a Apache has. Well, people wanted more features,
of course, so they were added, and now nginx doesn't perform any better
than Apache does if you simply don't load unneeded modules. nginx and a bare
Apache are extremely similar, but with Apache when you need to add a feature
later you simply uncomment the relevant module. With nginx, the feature simply
isn't available, period.
raymor is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-29-2009, 12:09 PM   #9
San
So Fucking Banned
 
Join Date: Jan 2004
Location: Shenzhen
Posts: 790
depends how much traffic you're going to get
San is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-29-2009, 12:31 PM   #10
sandman!
Icq: 14420613
 
sandman!'s Avatar
 
Industry Role:
Join Date: Mar 2001
Location: chicago
Posts: 15,432
i disagree i know many people that have gone from a striped down apache to nginx for static content apache will never in a million years match nginx for static content.

This is assuming you know how to setup nginx properly.



Quote:
Originally Posted by raymor View Post
Near the top of your Apace config file you'll find about 40 LoadModule directives.
Those load up various modules so you can do all kinds of nifty things with Apache.
mod_speling, for example, automatically fixed typos in URLs. Most of those modules
are things you'll never use in your life, and all of them make the server slower.
If this server is serving only thumbs, not running the PHP, probably 38 of those
40 modules can be commented out and the server will be MUCH faster - up to the
point where your network connection is the bottleneck. The top 2 to comment out
if you aren't using them are mod_php and mod_perl. Both are big, powerful modules
and by being big they slow things down.

There are several other configuration directives to tweak too.

The initial idea for nginx looked promising, but I'm not at all impressed with it.
The idea was to make a very small, fast web server, making it fast by leaving
out 96% of the features that a Apache has. Well, people wanted more features,
of course, so they were added, and now nginx doesn't perform any better
than Apache does if you simply don't load unneeded modules. nginx and a bare
Apache are extremely similar, but with Apache when you need to add a feature
later you simply uncomment the relevant module. With nginx, the feature simply
isn't available, period.
__________________
Need WebHosting ? Email me for some great deals [email protected]
sandman! is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-29-2009, 06:29 PM   #11
dubsix
Confirmed User
 
Industry Role:
Join Date: Dec 2004
Posts: 363
Quote:
Originally Posted by sandman! View Post
i disagree i know many people that have gone from a striped down apache to nginx for static content apache will never in a million years match nginx for static content.

This is assuming you know how to setup nginx properly.
ditto, for static nginx will stomp apache.
dubsix is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Old 07-29-2009, 07:59 PM   #12
tiger
Confirmed User
 
tiger's Avatar
 
Industry Role:
Join Date: Apr 2002
Location: Los Angeles
Posts: 6,986
Thats a piece of cake for a server like that. Sounds like you have a config problem.
__________________

tiger is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote
Post New Thread Reply
Go Back   GoFuckYourself.com - Adult Webmaster Forum > >

Bookmarks



Advertising inquiries - marketing at gfy dot com

Contact Admin - Advertise - GFY Rules - Top

©2000-, AI Media Network Inc



Powered by vBulletin
Copyright © 2000- Jelsoft Enterprises Limited.