Link to home
Start Free TrialLog in
Avatar of Mike Waller
Mike WallerFlag for United States of America

asked on

setting up a LAMP web server

I've decided to host my own web server.  Qwest , in my area, offers upload speeds of 896 kbps.  Is that good enough?  What does that mean in terms of a user requesting a web page.  I try to keep my pages to about 100k max and most are less than 20k each in size. Some of my biggest sites that I will be hosting get about 1000 hits per day.

I was thinking of a Dell PowerEdge T105 server (about $500).  It has:

Quad Core AMD® Opteron" 1352; 2.1GHz,4X512K Cache
   PowerEdge T105

Primary Hard Drive:
250GB3 7.2K RPM SATA 3Gbps 3.5-in Cabled Hard Drive

Hard Drive Controllers:
Onboard SATA, 1-2 Drives connected to onboard SATA controller - No RAID
   Hard Drive Controllers

Memory:
8GB, DDR2, 800MHz, 4x2GB,Dual Ranked DIMMs

It doesn't have an OS.  Red Hat seemed expensive.  Ubuntu, FreeBSD or CentOS seemed intriguing..and FREE.

What are your thoughts on the above machine including the OS.  I want my pages to run fast so I figure Linux is the choice.  Also, I'm a Coldfusion developer so I would place either coldfusion (for linux) 8 or Railo (for linux) on the machine as well as mySQL, php, Apache
Avatar of sadburger
sadburger

Assuming that 100k per page view includes the images, then you'll be fine. If you start increasing traffic a lot, or if a very large % of your traffic comes in spikes, you may have some slowdown, but it wouldn't be bad.

The only thing I'd be concerned with on the hardware for the server is the lack of raid. Be sure you have good backup plan in place, because you are reliant on a single hard drive, so if that goes down, you are down until the drive is replaced, and if you don't have a current backup, you may be SOL on your data. I'd suggest spending the extra cash to get a second drive and have it doen in raid 1.

Ubuntu server edition is nice if you are just starting with unix clones, and has a large web based community to get support from. CentOS and FreeBSD are also very nice and valid choices, but for sheer ease I'd go with Ubuntu. There are plenty of good tutorials on getting a complete LAMP stack running, I searched a few and skimmed them and this one seems very nice and complete:

http://joeabiraad.com/linuxunix/installing-lamp-on-ubuntu-710-linuxapachemysqlphp/100
Avatar of SidFishes
also suggest you check the TOS ... some ISP's don't allow home servers, plus check on bandwidth caps, throttling etc..
Avatar of Mike Waller

ASKER

yea, come to think of it, those are the raw file size with out the image.  Probably closer to 100 k in size for each page.  Is there a tool I can use to determine how large a page is with all the images on it?

Will RAID 1 provide a back up of the mysql db as well?  I guess if I run a back up each night of the db, it should be fine, right?

Also, what if I partitioned it into 2 OS (one linux, the other windows).  Does that place a strain on web requests?


I can upgrade and get the RAID 1 for an extra $200 for this:

SAS6iR (SATA/SAS Controller) supports 2 Hard Drives-RAID 1


Also, out of the following, which would you choose?

On-Board Single Gigabit Network Adapter [Included in Price]
 
   Intel PRO 1000PT 1GbE Single Port NIC, PCIe-1 [add $139]
 
   Intel PRO 1000PT 1GbE Dual Port NIC, PCIe-4 [add $199] .. Dell Recommended  
 
   Broadcom 5722 1GbE Single Port NIC, PCIe-1 [add $59]
 
yea, I checked with Qwest and they it was fine.  Comcast says no.
ASKER CERTIFIED SOLUTION
Avatar of sadburger
sadburger

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thanks for the advice.  With regard to the NIC card, why would it be important to have redundancy on it?  In case it fails?  What other hardware could fail that in your opinion would require redundancy?
Thx!
Sorry for slow response on this, I didn't get the alert that you had commented.

Any hardware could fail. How much redundancy you want depends on how much you want to spend. Practically speaking, the most likely places of failure (and consequently the most likely place for redundancy) are the Hard drive, the NIC card, and the Power supply, roughly in that order. I'd feel comfortable just having the RAID for the hard drive, but if you can spare the money the NIC would be a nice piece as well.
ok, thanks sadburger.  Also, do you think RAID 1 is sufficient enough or is RAID 1+0 better.  Also, what does it mean to have RAID 0?
Raid 0 isn't really Raid at all, in terms of redundancy. Raid 0 takes your data and stripes it across multiple discs, for performance increases. If one disc fails however, you lose ALL the data!

Raid 1+0 is good in terms of redundancy AND performance, but it has a high cost in terms of disc. You lose 1/2 of all your discs for the mirroring, and you are still suseptible to data loss if you lose drives on both sides of the mirror set.

Take a look at the Wikpedia article on RAID: http://en.wikipedia.org/wiki/RAID

It lists all the various raid levels, what type of redundancy they have, and what the problems with each is.
ok, thanks sadburger for the tips.