Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Server > Re: multi servers

Reply
Thread Tools Display Modes

Re: multi servers

 
 
Chris M
Guest
Posts: n/a

 
      07-12-2010
On 12/07/2010 16:32, john wrote:
> I am hosting my own website with 2k3. I wanted to add a backups sever
> to my network so if one breaks down visitors can still go to my
> website. How do I go about it? Should the second server be a member
> server?


If your first server is a domain member then there's no reason why the
second one shouldn't also be a member server.

Depending on how your site is put together, your best bet might be to
use Network Load Balancing. This will also enable you to perform
maintenance on your servers by draining one out of the NLB group,
performing the maintenance and then swap the nodes around to do the
other server. Access to your site should be uninterrupted.

As I said, this will depend heavily on the way your site works. If your
site makes use of a backend database this will need to be visible to
both servers. If your site maintains session state using the standard
ASP session object or using the ASP.NET in-process session state model,
this will not work with NLB since each node will only be aware of its
own subset of the user sessions. With ASP.NET you can just switch the
session state mode to use a session state server or a SQL database
store, and things should continue to work as-is. Classic ASP will
require code changes to move away from the standard session object. You
can use affinity in the NLB configuration to ensure that a particular
client will always hit the same node, but this will make draining a
server more difficult and if the IIS process recycles then the state
will be lost.

Lots to consider there anyway, good luck!

--
Chris M.
 
Reply With Quote
 
 
 
 
Chris M
Guest
Posts: n/a

 
      07-12-2010
On 12/07/2010 18:49, john wrote:
>>> I am hosting my own website with 2k3. I wanted to add a backups sever
>>> to my network so if one breaks down visitors can still go to my
>>> website. How do I go about it? Should the second server be a member
>>> server?

>>
>> If your first server is a domain member then there's no reason why the
>> second one shouldn't also be a member server.
>>
>> Depending on how your site is put together, your best bet might be to
>> use Network Load Balancing. This will also enable you to perform
>> maintenance on your servers by draining one out of the NLB group,
>> performing the maintenance and then swap the nodes around to do the
>> other server. Access to your site should be uninterrupted.
>>
>> As I said, this will depend heavily on the way your site works. If your
>> site makes use of a backend database this will need to be visible to
>> both servers. If your site maintains session state using the standard
>> ASP session object or using the ASP.NET in-process session state model,
>> this will not work with NLB since each node will only be aware of its
>> own subset of the user sessions. With ASP.NET you can just switch the
>> session state mode to use a session state server or a SQL database
>> store, and things should continue to work as-is. Classic ASP will
>> require code changes to move away from the standard session object. You
>> can use affinity in the NLB configuration to ensure that a particular
>> client will always hit the same node, but this will make draining a
>> server more difficult and if the IIS process recycles then the state
>> will be lost.
>>
>> Lots to consider there anyway, good luck!
>>
>> --
>> Chris M.

>
> Thanks.I work with ASP.Net, so it should be a lot easier. BTW how
> would I switch the session state mode?


http://msdn.microsoft.com/en-us/libr...8VS.71%29.aspx

--
Chris M.
 
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
AD servers could not be accessed via rdp and ping after windows up inenewbl Active Directory 3 06-13-2010 09:47 AM
Moving from 32 bit to 64 bit Terminal Servers and SQL DG Windows Server 0 03-30-2010 06:48 PM
Re: Active Directory problems/dcdiag error kj [SBS MVP] Windows Server 4 03-24-2010 09:19 PM
Re: stand alone windows servers not registering in DNS. Ace Fekay [MVP-DS, MCT] DNS Server 0 01-27-2010 01:19 AM
Sub-domain in Active Directory Integrated Zone Tom Linger DNS Server 3 11-25-2009 04:56 AM



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59