+ Post New Thread
Page 1 of 2 12 LastLast
Results 1 to 15 of 17
Windows Thread, MCSA exam in Technical; im going for my next exam the 70-291 i've done the other 2. their is a question i came across ...
  1. #1
    kevin_lane's Avatar
    Join Date
    Mar 2007
    Location
    Derby
    Posts
    275
    Blog Entries
    4
    Thank Post
    4
    Thanked 8 Times in 8 Posts
    Rep Power
    12

    Cool MCSA exam

    im going for my next exam the 70-291 i've done the other 2. their is a question i came across on my prep exam about a "web site hosted on 3 different servers" now how does this work i know it might sound stupid but just somthing i'd like to learn incase i ever need to do it and this would be live on the internet

  2. IDG Tech News

  3. #2
    apeo's Avatar
    Join Date
    Sep 2005
    Location
    Lost
    Posts
    1,430
    Thank Post
    79
    Thanked 90 Times in 86 Posts
    Rep Power
    32
    Clustered Servers?

  4. #3
    ricki's Avatar
    Join Date
    Jul 2005
    Location
    uk
    Posts
    1,206
    Thank Post
    19
    Thanked 129 Times in 125 Posts
    Rep Power
    41
    you can also do it with round robin

    richard

  5. #4
    kevin_lane's Avatar
    Join Date
    Mar 2007
    Location
    Derby
    Posts
    275
    Blog Entries
    4
    Thank Post
    4
    Thanked 8 Times in 8 Posts
    Rep Power
    12
    how would you do it with round robin also i've been told you can add multipule A host records and do it that way as well

  6. #5
    matt40k's Avatar
    Join Date
    Jun 2008
    Location
    Ipswich
    Posts
    3,130
    Thank Post
    218
    Thanked 368 Times in 313 Posts
    Rep Power
    87
    Quote Originally Posted by kevin_lane View Post
    how would you do it with round robin also i've been told you can add multipule A host records and do it that way as well
    Round robin again really. Cluster is different. I think Microsoft Load Balancing... rings a bell.

  7. #6

    Join Date
    May 2008
    Location
    London
    Posts
    7
    Thank Post
    1
    Thanked 1 Time in 1 Post
    Rep Power
    0
    Hi kevin,
    As Matt40k says, it would most likely be done using NLB but in conjunction with MS ISA server (in a web publishing role) or similar. You may find a stray question, but it is really beyond the scope if the 291 exam so i wouldn't worry about it too much. You would be expected to know if you are in web publishing or a firewall admin for instance, but not for general Windows network support. Hope that helps a bit.
    Cheers!

  8. #7

    Join Date
    Mar 2007
    Posts
    1,318
    Thank Post
    52
    Thanked 153 Times in 142 Posts
    Rep Power
    38
    NLB is your answer. It's because its static content so you set up a nlb ip address which then reads content from whichever computer is available.

    clustering is your answer for more dynamic content.

  9. #8
    kevin_lane's Avatar
    Join Date
    Mar 2007
    Location
    Derby
    Posts
    275
    Blog Entries
    4
    Thank Post
    4
    Thanked 8 Times in 8 Posts
    Rep Power
    12
    i understand about the NLB but i mean though if i had a web site (big company) and servers in different countrys no NLB and i had 1 server in usa 1 in uk and 1 in hong kong
    (i know this sounds mad) all part of the same forest but i just wanted to site split over 3 servers how would that work
    i know im getting pritty deep but be nice to know

  10. #9

    Join Date
    Mar 2007
    Posts
    1,318
    Thank Post
    52
    Thanked 153 Times in 142 Posts
    Rep Power
    38
    set 3 dns records for it, i think it'll always goto the one with the lowest ping?.

    not sure.

  11. #10

    webman's Avatar
    Join Date
    Nov 2005
    Location
    North East England
    Posts
    8,284
    Blog Entries
    2
    Thank Post
    598
    Thanked 879 Times in 617 Posts
    Rep Power
    287
    Load balancing. I have no idea how MS do it but this is how it would be done with Nginx: NginxLoadBalanceExample - Nginx Wiki

  12. #11
    kevin_lane's Avatar
    Join Date
    Mar 2007
    Location
    Derby
    Posts
    275
    Blog Entries
    4
    Thank Post
    4
    Thanked 8 Times in 8 Posts
    Rep Power
    12
    hummm you do mean the host A records ? and www records in dns or am i wrong and its just the a record. ping not sure about that either

  13. #12
    kevin_lane's Avatar
    Join Date
    Mar 2007
    Location
    Derby
    Posts
    275
    Blog Entries
    4
    Thank Post
    4
    Thanked 8 Times in 8 Posts
    Rep Power
    12
    humm that looks a bit confuzzling lol am i right in saying
    that http {
    upstream myproject {
    server 127.0.0.1:8000 weight=3;
    server 127.0.0.1:8001;
    server 127.0.0.1:8002;
    server 127.0.0.1:8003;
    am i right in saying that these would be different servers in my forest around the world (obs) propper ips but why a different port

    what does this mean

    server {
    listen 80;
    server_name www.domain.com;
    location / {
    proxy_pass http://myproject;
    }
    }
    }

    this dont tell me alot could you please elaborate

  14. #13

    Join Date
    Mar 2007
    Posts
    1,318
    Thank Post
    52
    Thanked 153 Times in 142 Posts
    Rep Power
    38
    www is an example of an A record. When you request a record you get all the ip address;s assocaited with it (goto cmd, then type nslookip Google)

    i think your browser goes to the one with the shortest ping. i could be very wrong on this though.

  15. #14

    Join Date
    Mar 2007
    Posts
    1,318
    Thank Post
    52
    Thanked 153 Times in 142 Posts
    Rep Power
    38
    different ports ebcause you have to address the service using a nuique name, normally a different ip address btu becuse you are only using the one you have to change the port.

    no idea on the second bt!

  16. #15

    webman's Avatar
    Join Date
    Nov 2005
    Location
    North East England
    Posts
    8,284
    Blog Entries
    2
    Thank Post
    598
    Thanked 879 Times in 617 Posts
    Rep Power
    287
    You have a front server that accepts requests on www.kevinlane.com. You can then have this server pass the request on to one of multiple other servers that are configured to handle the specified website.

    The ports on the wiki are just an example. This might make more sense:

    Code:
    http {
      upstream website {
        server uk.kevinlane.com weight=3;
        server us.kevinlane.com;
        server hk.kevinlane.com;
      }
    
      server {
        listen 80;
        server_name www.kevinlane.com;
        location / {
          proxy_pass http://website;
        }
    
    }

SHARE:
+ Post New Thread
Page 1 of 2 12 LastLast

Similar Threads

  1. Anyone About start MCSA,A+,N+?
    By russdev in forum Courses and Training
    Replies: 56
    Last Post: 11th December 2008, 09:15 AM
  2. MCSA Core
    By apeo in forum Books and Manuals
    Replies: 17
    Last Post: 14th July 2008, 05:58 PM
  3. MCSA
    By localzuk in forum Courses and Training
    Replies: 18
    Last Post: 6th September 2007, 08:45 AM
  4. MCSA
    By localzuk in forum Courses and Training
    Replies: 9
    Last Post: 15th February 2007, 03:45 PM
  5. MCSA
    By localzuk in forum Courses and Training
    Replies: 0
    Last Post: 14th February 2007, 12:33 PM

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •