Server Specs To Run SharePoint Server 2007
Mar 20, 2007
I've recently had a number of enquiries from hosted clients and potential customers requesting SharePoint hosting for use in connection with their current packages. I've used Windows SharePoint Services 2.0 in the past, but am specifically looking into the latest and greatest release of SharePoint to date to install - SharePoint Server 2007.
I've read over Microsoft's server requirements for running SharePoint, who recommend a 3GHz or higher processor and 2GB RAM for web servers, and 4GB RAM for SQL servers. To me, this seems ridiculous for the small number of clients I'll ever be hosting, and who will only have a small number of SharePoint users per site.
Those with any experience of SharePoint hosting please share your opinions of SharePoint hosting on various server configurations, as I'm interested to know how it performs. As I'll only have a small user base, would running SharePoint fully on one existing IIS 6 web server do the trick? What processor should this machine have, and amount of RAM to run SharePoint well?
View 0 Replies
ADVERTISEMENT
Apr 17, 2008
Keeping in mind that said business might use Microsoft Exchange.
Also please explain the difference between the product Sharepoint Server, and a actual Sharepoint Server/Hoster on the web.
View 8 Replies
View Related
Mar 30, 2009
I am trying to setup the trial of Exchange 2007, everything is installed. However, I am unable to connect to the SMTP server
Quote:
452 4.3.1 Insufficient system resources
Connection to host lost.
After googling around, I found the solution, I changed the settings xml file and now I have to restart the service but I can't seem to find the "Restart Service" option in the EXCHANGE MANAGEMENT CONSOLE?
Also, how secure is exchange by default - any guides/tips so I can secure this test environment?
Any 3rd party Anti-virus/worm/spam solutions for Exchange that are affordable instead of MS Forefront?
View 1 Replies
View Related
Jun 4, 2009
setting up a MS Exchange 2007 server for my office/part time employees and wondering how would i go about this?
How does mail automatically in my case get pushed to iphone, do i have to connect my exchange server with a phone provider or something?
View 5 Replies
View Related
Jan 24, 2007
I'm sure by now most of you have read the Web Server Optimization Guide by Shaw Networks. It came in handy for me when I was first starting out, I reduced my load & memory usage by tonnes. I thought I would make a new thread with an updated How-To.
Recommended Tools/Programs:
Putty - Free SSH Client - [url]
WinSCP - Free SFTP and SCP Client - [url]
MySQL Optimization:
BACKUP:
cp /etc/my.cnf /etc/my.cnf.backup
Use Pico (pico /etc/my.cnf) or Download via WinSCP for editing,
Delete everything that is currently in the file and add the following...
Code:
[mysqld]
port = 3306
socket = /var/lib/mysql/mysql.sock
skip-locking
skip-innodb
query_cache_limit=8M
query_cache_size=256M
query_cache_type=1
max_connections=500
max_user_connections=100
interactive_timeout=60
wait_timeout=60
connect_timeout=30
thread_cache_size=128
key_buffer=16M
join_buffer=1M
max_allowed_packet=16M
table_cache=1024
record_buffer=1M
sort_buffer_size=2M
read_buffer_size=2M
max_connect_errors=100
# Try number of CPU's*2 for thread_concurrency
thread_concurrency=2
myisam_sort_buffer_size=64M
#log-bin
server-id=1
[mysqldump]
quick
max_allowed_packet = 16M
[mysql]
no-auto-rehash
[isamchk]
key_buffer = 256M
sort_buffer_size = 256M
read_buffer = 2M
write_buffer = 2M
[myisamchk]
key_buffer = 256M
sort_buffer_size = 256M
read_buffer = 2M
write_buffer = 2M
[mysqlhotcopy]
interactive-timeout
To Save: CTRL-X
Restart Service: "service mysqld restart" or "service mysql restart" or "/etc/rc.d/init.d/mysql restart"
HTTP/APACHE Optimization:
BACKUP:
cp /usr/local/apache/conf/httpd.conf /usr/local/apache/conf/httpd.conf.backup
Use Pico (pico /usr/local/apache/conf/httpd.conf) or Download via WinSCP for editing,
Change the following settings in your httpd.conf...
Set "Timeout" value to "Timeout 60"
Set "KeepAlive" to "KeepAlive on"
Set "KeepAliveTimeout" to "KeepAliveTimeout 3"
Set "MinSpareServers" to "MinSpareServers 16"
Set "MaxSpareServers" to "MaxSpareServers 32"
Set "MaxRequestsPerChild" to "MaxRequestsPerChild 256"
Set "HostnameLookups" to "HostnameLookups Off"
Note:
These settings will not work under all server environments its recommended that you tweak around with the numbers until your web server is running 100% please read Apache documentation before changing any settings so you know what you are changing [url]
To Save: CTRL-X
Restart Service: "service httpd restart" or "/etc/rc.d/init.d/httpd restart"
Installing eAccelerator:
eAccelerator is a further development from mmcache PHP Accelerator & Encoder. It increases performance of PHP scripts by caching them in compiled state, so that the overhead of compiling is almost completely eliminated. [url]
If you run CPanel please visit [url] for an auto-installer which will do all the hard work for you.
Run the following in SSH.
Code:
cd /
mkdir ea
cd ea
wget [url]
bunzip2 eaccelerator-0.9.5.tar.bz2
tar -xvf eaccelerator-0.9.5.tar
cd eaccelerator-0.9.5
export PHP_PREFIX="/usr"
$PHP_PREFIX/bin/phpize
./configure --enable-eaccelerator=shared --with-php-config=$PHP_PREFIX/bin/php-config
make
make install
mkdir /phpcache
chmod 0777 /phpcache
Edit your PHP.INI file and at the bottom add...
Code:
To install as a ZEND extension:
zend_extension="/ea/eaccelerator-0.9.5/modules/eaccelerator.so"
eaccelerator.shm_size="16"
eaccelerator.cache_dir="/phpcache"
eaccelerator.enable="1"
eaccelerator.optimizer="1"
eaccelerator.check_mtime="1"
eaccelerator.debug="0"
eaccelerator.filter=""
eaccelerator.shm_max="0"
eaccelerator.shm_ttl="0"
eaccelerator.shm_prune_period="0"
eaccelerator.shm_only="0"
eaccelerator.compress="1"
eaccelerator.compress_level="9"
OR to install as a PHP extension:
extension="/ea/eaccelerator-0.9.5/modules/eaccelerator.so"
eaccelerator.shm_size="16"
eaccelerator.cache_dir="/phpcache"
eaccelerator.enable="1"
eaccelerator.optimizer="1"
eaccelerator.check_mtime="1"
eaccelerator.debug="0"
eaccelerator.filter=""
eaccelerator.shm_max="0"
eaccelerator.shm_ttl="0"
eaccelerator.shm_prune_period="0"
eaccelerator.shm_only="0"
eaccelerator.compress="1"
eaccelerator.compress_level="9"
Restart Service: "service httpd restart" or "/etc/rc.d/init.d/httpd restart"
For a great tutorial on Optimizing host.conf & sysctl.conf visit..
http://www.eth0.us/node/104
Common SSH Commands visit..
[url]
How to block an IP using iptables visit..
[url]
View 14 Replies
View Related
Jul 31, 2008
Any recommendations for a company offering dedicated server rentals with Windows Server and Microsoft Exchange 2007?
View 2 Replies
View Related
Feb 13, 2009
My site serves a few hundred people, and has very heavy database usage (every page).
But, for a two hour period EVERY day, it can server 5-10,000 at a tme - very strange, I know.
What kind of server set-up would I need?
I.e your answer may be... "Woah... You'll need 10 servers all doin abc"
I'm not too bothered about the detail - just "1 basic server would be enough - $100" - just an idea - I really have no clue.
I know this is a difficult question, and I'll get the usual - depends on xyz etc. - but even if your answer is "You'll need between 10-50 servers" - it at least gives me an idea.
View 5 Replies
View Related
May 24, 2009
if i need to host 10-20k concurrent users, what kind of server specs should i be getting ?
operating system will be windows server and IIS
running several websites and some web services.
View 7 Replies
View Related
Mar 4, 2007
I've been commissioned to setup and run a server for a client. It's a site where people can upload and show their photos in a rather large community. Daily users peaking at around 5.000 these days. He also has a large and very active forum for his 30.000 members. Forum is run on homebuild scripts (compares to Vbulletin).
He insists on getting a server that has absolutely no lag or other response time and is willing to pay what ever it costs.
I was thinking about setting up a system with:Xeon Dual core
16 GB RAM
4*500GB RAID
10 MBPS Port
Would a server like that do the job?
Was thinking about co-locating it to a Level3 center.
View 14 Replies
View Related
Nov 18, 2007
I have been hired to build a web server for a fellow student at school. I am used to building desktops for personal use but this is my first time putting together a web server so I just wanted to verify with you web hosting pros what should go in it.
Purpose of server: He wants a server that is capable of hosting a website mostly dedicated to a vBulletin community. He wants it to support a community of 30,000 members with a max of 1000 active users. He is also active in local politics and wants to host some local candidates web pages but I assume since they are local candidates and not very well known and most likely going to be very static pages this wont cause much of an extra load.
Limitations:I know the connection is going to be a likely place for a bottle neck but he wants to have a server that is capable of hosting the above mentioned type of load and will upgrade the his connection as needed. Also he does not know how to use Linux or Unix so a windows based system would be strongly preferred even though its generally considered worse.
what is the most necessary specs on such a system? I would greatly appreciate any input.
View 8 Replies
View Related
Apr 6, 2007
What do you think are good specs for web servers? We've been usually buying dual processor, dual core, 2gb ram, 2x36gb 15k scsi in raid-1 servers, but I wonder if we could get away with significantly less.
Is it better to have multiple, cheaper servers for Apache? What are some example specs?
What about something like this:
Intel Xeon 5130 2.00GHz 1333MHz 4MB DC x 1
2GB FB-DIMM - DDR II - 667 MHz (2x1GB) x 1
74GB S-ATA 10000 RPM ... OR ... 250GB S-ATA 7200 RPM ... OR ... 36 GB SCSI 15000 RPM
View 12 Replies
View Related
Mar 11, 2008
What specs would I need to host a blog that gets 20k uniques a day?
View 17 Replies
View Related
Oct 19, 2009
I'm starting a file download site. I've done a lot of research and I'm currently planning a head for growth and scaling. Looking to serve around 250-500 thousand 5MB files a day.
I would like some input from people that KNOW what they are talking about, hopefully people that have hosted/ran similar sites.
The main question I need answered is what will be the first bottle neck for a single download server will run into when delivering the following.
File size = 10MB.
Number of downloads = As many 1.2mbit download streams as possible.
Example Server, lets say...
Intel 5405
8GB Ram
2x640GB RE3 Hardware Raid 1
1000mbit
Am I correct in assuming the bottle neck will be the HD's here? So would I be right in assuming this could handle around 200 concurrent downloads @ 1.2mbit(250mbit)?
View 6 Replies
View Related
Jul 24, 2009
I'm wondering what kind of web server load that people are dealing with when it comes to their web (Apache, IIS, Lighttpd, nginx, etc.) server.
What information I'm curious about: How many raw accesses your web server is dealing with in a given month, and what kind of hardware you have to serve those accesses?
If you have multiple servers, pick the one that has the most accesses in a month.
My results:
My server gets ~2,500,000 accesses a month (about 1 per second) on Apache. The server is a AMD Athlon 64 3800+, 1GB RAM. Hardware handles those requests with no problems.
View 0 Replies
View Related
Apr 29, 2009
I've been getting requests for a VPS hosting from a few clients and I was wondering what everybody's input on the best server hardware configuration for a hypervm server is.
Was thinking something along the lines of the following server configuration:
Quad core processor(s)
16gbs of ram
2x 100GB RAID 1 Main HDD (Do I need this much space?)
4TB RAID 5 VM HDD's
That would allow me to keep the main OS separate and redundant due to HDD failure and leave the VM's on a RAID 5 for the same reason.
What would you change or advise me to do on this configuration? The goal is to host as many VM's as the processor/ram/HDD's will allow without much of a performance hit.
how many we can host with this configuration? Obviously depends on the packages that I haven't thought about yet.
View 14 Replies
View Related
Mar 31, 2009
Is it possible to build a server with only 0.5A - 0.75A (110V) or 60W - 90W peak power consumption? If so, what specs?
What's the lowest peak power consumption on:
quad core CPUs
2 memory DIMMS
2xSATA drives
I am looking to built such servers or have somebody built it.
View 8 Replies
View Related
Dec 3, 2008
How can I determine the minimum specs for a server that will hold several VPS? Dividing the resources by the total number of VPS machines, is this any good? (Processor, Ram, ...etc)
View 2 Replies
View Related
Aug 29, 2008
how many pageviews a server like this can handle a day?
Core 2 Duo 2.2 GHz
1024 MB RAM
160 GB 7200rpm SATA Hard Drive
Simple website with PHP and MySql, few graphics.
View 14 Replies
View Related
Jun 23, 2008
At the moment I have two Clovertown boxes at Softlayer with 4GB of ram. One has a couple of mirrored SATA disks and the other has raid 5 on some SAS disks. Both boxes have 1GB ports.
I'm running MDaemon not sure if its the right choice on both.
There arent many user accounts listed as most of emails goto and come from application servers, where they are basically loaded into a database.
My issue is most emails go out on one mail server. Sometimes there are 100,000 messages in the queue which then effects icoming mail processing. At times it can take hours for a message to get through the box. This results in issues as the email verfication system I use for end user accounts requires them to reply to a message, which of course if it takes hours to get into an account is no good.
Im debating about adding another box to the mix or replacing the two current mail servers (I could use them to do something else) with something like a 4xquad core job with 16GB of ram.
However does anyone have any suggestions on any different mail servers.
I dont want to run exchange, I have that on another box (lol) for my email already and I dont want something which is really going to require a lot of user input to keep running
View 2 Replies
View Related
Oct 21, 2007
setting up a Backup MX server for my domains and I was wondering what sort of a spec'd server I'd need for around 20-40 domains. The 20-40 domains aren't hosted on the same network/server so it would be unlikely for all of them do go down at once...but at the same time I dont want any emails to go missing.
View 13 Replies
View Related
Jan 9, 2007
I would like some advice and to see if this is a good approach to setup a server / web business.
The idea is to start off providing very basic web hosting functionality for smaller sites.
I was thinking about purchasing two similar or identical servers (RAID1 disks) + server fully mirrored.
In case 1 falls out the 2nd one takes over. DNS services is at startup located on other servers in the DC.
If this works out then I'd be looking at increasing servers with clusters or LVS.
I'm having a very hard time finding resources and information of the load and server capacity.
I was thinking about a system like this:
CPU: Intel Core 2 Duo E6300 , RAID 1 SATA disks (preferrably Raptor), 2 GB of RAM.
This would then be running LAMP. I would limit the traffic to 5-10GB transfer / month per account.
(most account would not nearly get up to this figure).
Is there a ballpark figure at about how many web sites this server could handle ?
Are we talking about 50 ? 20 ? 100 ?
View 2 Replies
View Related
Mar 17, 2008
We have a client that is normally low use. about 200+ hits per day. They are a non-profit, and get TV coverage (like the Today show, Dateline, NBC nightly news, and coming up here soon final 4 news spot) about once a month. When this happens, they get 60k hits a day.
they crash my dedicated server a few times. I have a dual p4 w/ 2 gb of ram. I only have 60 clients on this server, but as they get more coverage, our server cant take this many hits.
View 4 Replies
View Related
Apr 11, 2008
I have a video sharing site running Intel(R) Core(TM)2 Duo CPU E6550 @ 2.33GHz with 2 gb RAM and 400 gb Hard Disk.
the server load average increase up to 89,00.00.....
and the users online in my site is around 190 online.
do i need quad core server to maximize my site?
View 2 Replies
View Related
Sep 18, 2007
I'm building a web app that will be both serving ads as well as recording things like impressions and clicks.
Obviously it will have a dedicated server (and will most likely quickly expand in to needing multiple servers) but I'm curious what specs are most important for this sort of thing.
Is processor speed more important? RAM? Hard drive speed?
It won't be heavy so much on the side of server full pages of data (like a normal website) as much as it will be heavy for display ads and recording visitor data.
View 3 Replies
View Related
Sep 18, 2007
I'm building a web app that will be both serving ads as well as recording things like impressions and clicks.
Obviously it will have a dedicated server (and will most likely quickly expand in to needing multiple servers) but I'm curious what specs are most important for this sort of thing.
Is processor speed more important? RAM? Hard drive speed?
It won't be heavy so much on the side of server full pages of data (like a normal website) as much as it will be heavy for display ads and recording visitor data.
I'll be running a LAMP setup for this and will also be serving actual ad files (images, flash) from a CDN.
View 3 Replies
View Related
Apr 20, 2009
Can you guys recommend a server by looking at the graphs below?
Connections „ CPU Usage „ Load Average
Memory Utilization „ Swap Memory „ Traffic
I'm trying to identify the right hardware for the job without going overkill with the specs, as the budget is limited.
View 10 Replies
View Related
Aug 26, 2008
I wanted to know wich hardware parts/specs are most important when running a php newsletter script like Interspire Email Marketer [url] or Omnistar Mailer (www.omnistarmailer.com/).
So im looking for a server that as to be able to have between 50 to 200 diferent emails clients, each one sending 20.000 to 80.000 emails / moth.
Based on my needs wich will be the adequate choice?
Server 1:
CPU: P4 2.8Ghz HT
RAM: 1GB
HDD: 2 x 80GB HDD SATA
Server 2:
CPU: 1 x Intel XEON DUAL-CORE 3075 [2.66GHz/4MB/1333MHz FSB]
RAM: 2GB
HDD: 2 x 250GB SATAII HDD
Server 3:
CPU: 2 x Dual Core Xeon 5110/4MB cache
RAM: 4GB
HDD: 2 x 73GB SAS - 10K RPM [RAID 10]
More Questions regarding hosting details:
a) In terms on CPU, do i need require P4, Xeon or 4Core Xeon?
b) In terms on RAM, will i need 1, 2, 4, or more Gb?
c) In terms on Hard Drive, i will be just fine using SATA or do i need faster, like SAS, 10k Raptor?
View 3 Replies
View Related
Aug 23, 2008
I want to install a email newsletter script like SendStudio or 1 2 All [url], to serve my current clients but i im not sure of wich server to choose.
Wich are the most important hardware specs (Processor / RAM / Harddrive) to andle a PHP / MySql Email Script sending 1 milion emails / moth.
Will a Pentium 4 / 1Gb RAM / SATA Hard Drive do the job?
Or do i need a High End Server with Xeon Processor / 4Gb Ram / SAS Hard Drives?
View 2 Replies
View Related
Jul 31, 2009
My windows server already running with Plesk 9.2. Now I need to install Windows SharePoint Services 3.0 (WSS 3.0) on same server.
But I did same this few months back, then plesk has been killed.
Do I have way to run both Plesk and SharePoint on same server?
View 0 Replies
View Related
May 14, 2009
any reliable hosting provider that provides SharePoint (WSS 3.0) hosting for personal use?
View 4 Replies
View Related