Welcome to HostingForumz.com!
FAQFAQ      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

How to set up multiple IIS 6.0 Servers Hosting the same .N..

 
   Web Hosting Problem Solving Community! (Home) -> IIS RSS
Next:  Xara Webstyle 4 Problem  
Author Message
Lost With IIS

External


Since: Jun 24, 2005
Posts: 1



(Msg. 1) Posted: Fri Jun 24, 2005 4:42 pm
Post subject: How to set up multiple IIS 6.0 Servers Hosting the same .Net app
Archived from groups: microsoft>public>inetserver>iis (more info?)

I have a relatively simple but (seemingly common) dilemma. Here is my
situation:

I have a ASP.Net/VB.Net intranet application going against SQL Server which
works great on a single IIS Server. It is a pretty straightfoward OLTP
application with a database backend and also stores images/PDFs on the server.

I want to configure another IIS server to serve up the same content but I
don't want to have to roll out code to both servers everytime I make update.
Also, since the images/PDFs are stored on the original server, I want to be
able to access them using the second server as well (without duplicating
them).

1. How do I configure the second IIS 6.0 server so that I do not have to
roll out code to both whenever I make updates? I tried having the URL point
to a share on the original IIS Server but I'm running into a slew of
problems. Could not get the site up.

2. How do I create a share to store the images/PDFs so that both sites can
access those items? I am running in a Workgroup so the ASP.Net account is
specific to each machine.

This seems like a pretty common requirement but I am lost.

Thanks!

 >> Stay informed about: How to set up multiple IIS 6.0 Servers Hosting the same .N.. 
Back to top
Login to vote
noway

External


Since: Oct 08, 2004
Posts: 28



(Msg. 2) Posted: Fri Jun 24, 2005 4:51 pm
Post subject: Re: How to set up multiple IIS 6.0 Servers Hosting the same .Net app [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

"Lost With IIS" <Lost With IIS RemoveThis @discussions.microsoft.com> wrote in message
news:F52DE1EC-CD96-4C50-B156-8380641F6AAF@microsoft.com...
 >I have a relatively simple but (seemingly common) dilemma. Here is my
 > situation:
 >
 > I have a ASP.Net/VB.Net intranet application going against SQL Server
 > which
 > works great on a single IIS Server. It is a pretty straightfoward OLTP
 > application with a database backend and also stores images/PDFs on the
 > server.
 >
 > I want to configure another IIS server to serve up the same content but I
 > don't want to have to roll out code to both servers everytime I make
 > update.
 > Also, since the images/PDFs are stored on the original server, I want to
 > be
 > able to access them using the second server as well (without duplicating
 > them).

What's the purpose of this? How you set it up depends on whether you are
doing this for load balancing, fault tolerance, just for the heck of it,
etc.

The simplest way to do it is on the "Home Directory" tab on the IIS site
properties you could select content to come from a share on another computer
and point it to the existing server's site home directory.

- SG<!-- ~MESSAGE_AFTER~ -->

 >> Stay informed about: How to set up multiple IIS 6.0 Servers Hosting the same .N.. 
Back to top
Login to vote
user1772

External


Since: Jun 10, 2004
Posts: 1807



(Msg. 3) Posted: Sat Jun 25, 2005 11:55 pm
Post subject: Re: How to set up multiple IIS 6.0 Servers Hosting the same .Net app [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

On Fri, 24 Jun 2005 16:42:02 -0700, "Lost With IIS" <Lost With
IIS.RemoveThis@discussions.microsoft.com> wrote:

 >I have a relatively simple but (seemingly common) dilemma. Here is my
 >situation:
 >
 >I have a ASP.Net/VB.Net intranet application going against SQL Server which
 >works great on a single IIS Server. It is a pretty straightfoward OLTP
 >application with a database backend and also stores images/PDFs on the server.
 >
 >I want to configure another IIS server to serve up the same content but I
 >don't want to have to roll out code to both servers everytime I make update.
 >Also, since the images/PDFs are stored on the original server, I want to be
 >able to access them using the second server as well (without duplicating
 >them).
 >
 >1. How do I configure the second IIS 6.0 server so that I do not have to
 >roll out code to both whenever I make updates? I tried having the URL point
 >to a share on the original IIS Server but I'm running into a slew of
 >problems. Could not get the site up.
 >
 >2. How do I create a share to store the images/PDFs so that both sites can
 >access those items? I am running in a Workgroup so the ASP.Net account is
 >specific to each machine.
 >
 >This seems like a pretty common requirement but I am lost.

This isn't a common scenario at all. In fact, it likely isn't ever
used. Front end servers are virtual matches to each other, with
duplicates of everything. If you want a single repository for images,
put it on a server that is shared by the front end servrs, similar to
your database server.

There are plenty of ways to replicate files, from Robocopy to
clustered servers to Application Center.

Jeff<!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: How to set up multiple IIS 6.0 Servers Hosting the same .N.. 
Back to top
Login to vote
someone9

External


Since: Aug 25, 2003
Posts: 2419



(Msg. 4) Posted: Sun Jun 26, 2005 3:41 am
Post subject: Re: How to set up multiple IIS 6.0 Servers Hosting the same .Net app [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

As soon as you want to setup a configuration where more than one machine is
involved in servicing a request, it is no longer "simple" because from a
security perspective, neither machine trust each other (even if it is clear
to YOU that they should trust each other) and view each other as potential
man-in-the-middle attack against whatever they do.

I know that the above is not obvious to you because you just care about
getting the application working -- to heck with the security/hosting
requirements. But unfortunately, the details matter to the machines
involved, and this is where most people fail to make the realization, get
frustrated by repeated access denied or various security violations, and
ultimately settle for something which they understand but is actually a hack
and/or insecure custom solution. Unfortunately, security is not easy to
explain nor understand, but I recommend that you take time to search
microsoft.com, get the info and facts straight, and then it will look dead
simple.

You definitely need to read this URL to get a good summary of the classic
issues involved when trying to coordinate >1 machine involved in handling a
request:
http://www.microsoft.com/technet/prodtechnol/windowsserver2003/technol...es/weba

--
//David
IIS
http://blogs.msdn.com/David.Wang
This posting is provided "AS IS" with no warranties, and confers no rights.
//
"Lost With IIS" <Lost With IIS.RemoveThis@discussions.microsoft.com> wrote in message
news:F52DE1EC-CD96-4C50-B156-8380641F6AAF@microsoft.com...
I have a relatively simple but (seemingly common) dilemma. Here is my
situation:

I have a ASP.Net/VB.Net intranet application going against SQL Server which
works great on a single IIS Server. It is a pretty straightfoward OLTP
application with a database backend and also stores images/PDFs on the
server.

I want to configure another IIS server to serve up the same content but I
don't want to have to roll out code to both servers everytime I make update.
Also, since the images/PDFs are stored on the original server, I want to be
able to access them using the second server as well (without duplicating
them).

1. How do I configure the second IIS 6.0 server so that I do not have to
roll out code to both whenever I make updates? I tried having the URL point
to a share on the original IIS Server but I'm running into a slew of
problems. Could not get the site up.

2. How do I create a share to store the images/PDFs so that both sites can
access those items? I am running in a Workgroup so the ASP.Net account is
specific to each machine.

This seems like a pretty common requirement but I am lost.

Thanks!
 >> Stay informed about: How to set up multiple IIS 6.0 Servers Hosting the same .N.. 
Back to top
Login to vote
Display posts from previous:   
Related Topics:
Having problems hosting multiple SMTP servers on Windows 2.. - Hello, I have a Windows 2000 Server box that has 5 SMTP virtual servers installed, each with thier own IP address. I'm using the following code VB.NET code (ASP.NET 1.1) to send emails: Message.From = From Message.To...

multiple web servers under one IP - i am running one IIS web server in a small office, and am setting up another web server running for testing purposes. if the first web server defaults at port 80 on my firewall, how should I configure access to the second web server? thanks

SSL Certificate over multiple servers - Can anyone advise! I wish to run an SSL secure site over multiple web servers. I generated an CSR on one web server and received the certificate back from verisign and installed on this server. I then backed up the cert & private key and impor...

Multiple IIS servers stopping at once - Awhile ago I posted regarding a concatenation lock - that's now fixed. However we're now experiencing intermittent events where THREE seperate IIS servers [1]all stop responding similtaneously. There does not seem to be any rhyme or reason to this, I..

how to run multiple ftp servers on 1 public ip ? - Hi, At the moment im using NAT to direct 20/21 to my FTP server. If i wanted to run another FTP server could i ? - i only have one public ip. - i know you can use a reverse proxy to host multiple IIS machines (each with HTTP sites) on 80 using one..
   Web Hosting Problem Solving Community! (Home) -> IIS All times are: Pacific Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum



[ Contact us | Terms of Service/Privacy Policy ]