Windows 2008 AD Sites and Services: Multiple Connection links between same sites

Hello,
Our AD Sites  & Services is showing Multiple Connection links between the same sites. How is this possible and can i delete extra ones?  

Hi,
As Calin Liviu mentioned, you do not have to manage connection objects. In fact, changes that you make to connection objects that the KCC creates automatically are ignored.
If the site is added to more than one site link, it might be an interim site between other sites that are added to this site link.
Understanding Replication Between Sites
http://technet.microsoft.com/en-us/library/cc771251.aspx
Please check the replication issue, and post the result to here.
Regards.
Vivian Wang

Similar Messages

  • Multiple connections/roles on same machine for same site?

    As a Contribute CS3 Administrator (newbie; just converted a
    Dreamweaver site to work with Contribute), can I set up multiple
    connections to the same site? I want to test the Publisher role and
    Writer role on my development machine before creating connnection
    keys for these roles for the customer who owns the site (and is
    waiting with new Contribute licenses and eager but idle staff)?
    I just want to be able to test my site under these roles
    (using different passwords and username/email addresses), but there
    seems no obvious way to do this as Contribute seems to allow me to
    set up only one connection per URL, and also seems to want to wipe
    out my existing Admin connection if I come on in another role (from
    a connection key generated for a Publisher or Writer role).

    Two problems with that:
    1. Tried it by creating a connection key for a Publisher
    role, but invoking the key zaps the old connection, so I no longer
    have Administrator access without deleting then re-creating the
    connection and setting myself up as Admin again.
    2. When I went into the (new) connection as Publisher, it
    would let me connect and see pages, but would NOT allow editing of
    any pages (even though I had specifically looked when originally
    defining the role to make sure all editing privileges were -- or
    appeared to be -- intact).

  • Windows 2008 R2 Server without Service Pack 1 was flag "Not Required" during the SCCM patching/deploying SP1 for 2008

    Dear Brothers,
    I come to a scenario were one of our Windows 2008 R2 Server without Service Pack 1, was Flag under SCCM 2007 Reports Update Status for Service Pack 1 deployment to be "Not
    Required" which definitely inaccurate.
    What I want to know what are the conditions for the Software Update to send a status to SCCM Server that the Service Pack is “Not
    Required” instead of the other way around?
    Is there anyone that can guide me to any KB Article regarding this behavior?
    Regards,

    Yes, I know this is an old post, I’m trying to clean them up. Did you figure this out, if so how?
    I have seen this before and what I have done is manually applied the SP1 to the server. Only then did the error show up as why SP1 didn’t apply. After fixing the error, CM was apply to apply SP1 and other SU to the server.
    http://www.enhansoft.com/

  • Windows 2008 R2, Internet Information Services: Changing security settings to change a folder's content by using PHP

    Hello,
    I would like to ask if somebody's there who could help me:
    I am a PHP developer from Stuttgart, Germany.
    In my PHP web application I want to edit text files by using PHP code.
    These files are created once (by me), so they exist before the PHP application is used by any web user.
    My PHP code reads out some text files and other text files' contents are changed.
    In my developer's environment (Windows XP, XAMPP) it works fine.
    So I'm sure my code is OK.
    But the productive system ist a windows server system (Windows 2008 R2 and Internet Information Services).
    And here it doesn't work! The text files' contents aren't changed.
    I know on windows based webserver systems I have to change the folders security settings
    (what I mean: the folders where the text files are placed). I must give the IIS system user (in the past it's name was IUSR..., now it is named otherwise) additional rights, so that it can change folders content.
    I did. But it doesn't work.
    Some years ago when we used Windows Server 2003 that was the solution that worked.
    Giving the IUSR right to change folders content. That was it.
    But what is new in Windows Server 2008 that it doesn't work?
    I think it must be very complicated. Could somebody help me?
    Thanks
    Tommy

    Hi,
    This is IIS related issue, so you may post in the IIS forum.
    And it seems like that you have already post there, please follow it up to get further assistance
    http://forums.iis.net/t/1208164.aspx?Windows+2008+R2+Internet+Information+Services+Changing+security+settings+to+change+a+folder+s+content+by+using+PHP
    Regards,
    Yan Li
    Regards, Yan Li

  • Static ConnectionPool to service multiple Connections

    I have a Singleton Class ConnectionPool that services multiple
              connection to backend Messaging Software. Here is the structure of
              the ConnectionPool Class.
              class ConnectionPool extends Generic Servlet
              static ConnectionPool instance;
              static hashtable pools;
              getInstance();
              // pools keeps track of the service--> MsgConn Handle
              getConn(String Service);
              releaseConn(String Service);
              destroy();
              // Inner Class
              class MsgConn {
              create()
              get()
              release()
              } // Inner Class ends
              Only connection handles ( they are thread safe, no synchronization
              required) are returned and client servlet create receiver and sender
              on the connection handle.
              Client servlet call getInstance() and make getConn() and releaseConn()
              calls to get and release conn.
              Question:
              1. What is better to keep this in WEB-INF or in class path ?
              2. Is this a good design from WebLogic prespective ?
              Thanks in advance.
              Chris
              

    "Cameron Purdy" <[email protected]> wrote in message news:<[email protected]>...
              > 2. Is this a good design from WebLogic prespective ?
              >
              > Probably not, but I couldn't follow what you were doing so I can't say for
              > sure. Why can't you use the pooling that Weblogic provides?
              I am NOT using WebLogic JMS.
              >
              > Peace,
              >
              > --
              > Cameron Purdy
              > Tangosol Inc.
              > << Tangosol Server: How Weblogic applications are customized >>
              > << Download now from http://www.tangosol.com/download.jsp >>
              >
              >
              > "MOL" <[email protected]> wrote in message
              > news:[email protected]...
              > > I have a Singleton Class ConnectionPool that services multiple
              > > connection to backend Messaging Software. Here is the structure of
              > > the ConnectionPool Class.
              > >
              > > class ConnectionPool extends Generic Servlet
              > > {
              > >
              > > static ConnectionPool instance;
              > > static hashtable pools;
              > >
              > >
              > > getInstance();
              > > // pools keeps track of the service--> MsgConn Handle
              > >
              > > getConn(String Service);
              > > releaseConn(String Service);
              > > destroy();
              > >
              > > // Inner Class
              > > class MsgConn {
              > > create()
              > > get()
              > > release()
              > >
              > > } // Inner Class ends
              > >
              > > }
              > >
              > >
              > > Only connection handles ( they are thread safe, no synchronization
              > > required) are returned and client servlet create receiver and sender
              > > on the connection handle.
              > >
              > > Client servlet call getInstance() and make getConn() and releaseConn()
              > > calls to get and release conn.
              > >
              > > Question:
              > >
              > > 1. What is better to keep this in WEB-INF or in class path ?
              > > 2. Is this a good design from WebLogic prespective ?
              > >
              > > Thanks in advance.
              > >
              > > Chris
              

  • Can we run domain controller windows 2008 32 bit and additional domain controller on 2003 server

    im my environment we are trying to upgrade from server 2k3 to 2k8, out testing done on server 2k3 to 2k8, but can we run domain controller windows 2008 32 bit and additional domain controller on 2003 server ...kindly suggest
    Nitin Gaurav
    [email protected]

    Yes you can. If you have two 2003 AD servers currently and upgrade one of them to 2008 AD then they'll continue to be able to work together. The domains functional level will remain as 2003 across both servers so at this stage you won't get any benefit from
    the new AD functionality available in 2008.
    Once you've then upgraded the second 2003 server to 2008 you can then upgrade the functionality levels in AD to make it 2008. It's been a while, but I believe it doesn't happen automatically, so once all AD servers have been upgraded you have to go into
    AD and upgrade the functionality levels yourself.

  • FIM 2010 R2 Sp1, Windows 2008 R2 SP1 and Recycle Bin issues

    Hi,
    We are running FIM 2010 R2 Sp1 (build 4.1.3613.0)
    Also running Windows 2008 R2 Forest and Domain functional level environment. (Windows Server 2008 R2 SP1 on all DCs). The previous Recycle Bin hotfix https://support.microsoft.com/en-us/kb/979214/ fails to install since we are already running WS08 R2 SP1
    on all the DCs.
    During deprovisioning, when a user is deleted from the source HR system, FIM deletes the object from AD, FIM Sync & Portal.
    FIM also manages a FIM Portal group, where membership is assigned manually. This membership is then updated in AD.
    When a user (who is part of this group) is deleted in HR, FIM deletes it from AD, FIM Sync, FIM Portal, FIM also removes user from FIM Portal group. The user is also removed from the AD group (by FIM group object membership attribute flow to AD)
    ...however, on the next AD Export, FIM fails to update the same group and complains about this very same user (CD Error) and lists the user as: CN=username\0ADEL:GUID, CN=Deleted Objects,DC=domain,DC=com
    It appears that there is a problem with FIM and the Recycle Bin again?
    Are there any new Recycle Bin/FIM hotfixes ?
    Thanks,
    SK

    May I suggest you review the following:
    Is the AD MA user account part of the Domain Admins group? If yes, please remove it from this Group
    Verify that the "CN=Deleted Objects" container has not somehow been included in the AD MA OU scope

  • HT4356 I have the up photos smart 5514 printer and can't get it hooked up to print web pages. It says no air printers found and both a connected to the same wifi

    I have the up photos smart 5514 printer and can't get it hooked up to print web pages. It says no air printers found and both a connected to the same wifi

    Shannmo-
    The HP PhotoSmart 5514 is on Apple's list of AirPrint printers, so it should work.  <iOS: AirPrint 101>
    One problem might be that your WiFi router does not correctly handle Bonjour data required by AirPrint.  Contact the router's manufacturer to see if there is a change to its setup or a firmware update that will solve the problem.
    I had a printing problem several months ago, where the WiFi had jumped to a neighbor's WiFi that happened to have the same name.  There are a LOT of WiFi routers out there named "Linksys"!
    Fred

  • Can't i use xml schema and oledb data connection at the same time?

    Hello to all and thanks in advance.I use xml schema and oledb data connection at the same time and the problem is that when I try to export the xml, the outcome is not what i expect.Without the oledb connection everything is ok (just the schema) and the xml complies with the schema.
    Can't i have both schema and oledb and the exported xml be as i want it?

    You can use both at the same time, but not gor Internet access if that's what you're asking.
    Now there is a thing called Link Aggregation, which combines a number of interfaces for speed/redundancy, but it really only works locally, and then only with ALL special equipment in the route, and most likely OSX Server involved.
    Sorry.

  • HT5706 I just purchased an AppleTV and am trying to connect AirPlay with my mac (2012 model) In 'system preferences displays' an airplay menu is listed but it says 'no device detected'. My AppleTV and macbook are connected to the same network. Any help?

    I just purchased an AppleTV and am trying to connect AirPlay with my mac (2012 model) In 'system preferences > displays' an airplay menu is listed but it says 'no device detected'. My AppleTV and macbook are connected to the same network. Any suggestions why it is not working?

    Troubleshoot the network as that is likely what is causing the issue.
    Also, temporarily disable the firewall on the Mac and disable IPV6 on the computer.

  • Windows 2008 R2 cluster and FTP-connection

    Hi,
    We have windows 2008 r2 server cluster. There is a resource which is connected by the third part
    via ftp. When they establish the connection, there is configured ip-address to certain node.
    When we manage cluster, it might happen that the resource is left on the other node and when they
    establish next time the ftp-connection, it says that can't connect. I've made similiar usernames with
    similiar passwords on both nodes.
    Is there a possibility to configure the environment so, thta ftp-connection is not depend on which
    node the resource is?
    Br, Petteri

    Hi Peter Castle,
    When you want to keep the session on one server you must use the Single Affinity option.
    The related KB:
    Specifying the Affinity and Load-Balancing Behavior of the Custom Port Rule
    http://technet.microsoft.com/en-us/library/cc759039(v=ws.10).aspx
    Hope this helps.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Slow printing on windows 2008 std, R2 and windows 2012

    Hi All,
    I have a print server which is configured on windows 2008 R2. We are experiencing slow printing when printing directly from the server or from a client through the server. Small sized files prints fast, anything which has image takes a long time. All the
    printers in our organization are Xerox Colorqube 9303. When installed the driver directly on to windows 7 32 bit PC, it prints without any delay. Also, when prints from the server a 2 MB file becomes 15 MB or more while sending. We have tried PCL6 and PS drivers.
    To replicate it, i have installed a windows 2012 server ended up with the same result. Installed windows 2008 standard 32 bit with SP2 and the result remains same. Also tried it on windows 8, 64 bit without any luck. So effectively, it works fine only when
    directly installed on a windows 7 PC. I have disabled all three: disabling TCP Chimney Offload, RSS, Receive Window Auto-Tuning .
    After shooting the print, if you observe the printer properties, it sends data at a very low rate which results a 10 MB documents prints take around 10 minutes. At the same time, file copying from the server to and fro is working normally. All these servers
    are directly connected to the cisco 6509 core switch. All the above tests were performed on the same physical switch. The server and clients are on the same network (subnet).
    Have anybody come across to a similar issue. Any useful suggestions would deeply appreciated.
    Thanks,
    Prince Mathew

    Hi Prince Mathew,
    Based on your description, this issue seems that it’s related to this specific model printer (Xerox
    colorqube 9303). Please install the latest version of the driver and the firmware from Xerox website, and then check if this issue still exists.
    If it still persists, please clear Printer Spooler Files and enable the Spooler Service again.
    For details, please refer to.
    1. Click Start, run "Services.msc" (without the quotation marks).
    2. In Services list, please double click "Printer Spooler". Then click
    Stop, and then click OK.
    3. Please locate to: "%WINDIR%\system32\spool\printers", delete all files in this folder.
    4. Click Start, run "Services.msc" (without the quotation marks). In Services list, double click
    "Printer Spooler". Click on Start. In the Startup Type list, make sure that "Automatic" is selected and click OK.
    Then check if this issue can be solved.
    Hope this helps.
    Best regards,
    Justin Gu

  • Windows 7 and windows 8 desktop wired and 7510e printer connected to win 7 wireless

    I have a windows 7 64 bit HPavilion Elite 150f desktop set up wired with a 7510e photosmart printer connected to it wireless, now I  have purchased a windows 8 desktop HP envy 700-019 desktop.
    When I set up my new windows 8 desktop I  just plugged it into my wireless router/modem combo and it found my printer and I could just print from it, I did not download any software or drivers for my printer or set up a home group as I was not sure how to set it up but last night I tried to set up a homegroup,
    I used my wireless network key and entered it and pressed connect, then I entered the Homegroup password that was downloaded for me from Microsoft, but my windows 7 says homegroup and my windows 8 shows private network so I am not sure what I have done wrong, I chose to only share music and printers, can anyone tell me how to do this correctly as I am not sure that I have done it properly.
    On my windows 8 I can go to my printers web site by entering the static IP address that cloud support set up for me and it shows as connected but I do not want to enter any printer code as that is already set up on my windows 7, I can also scan to email on my windows 8 but I am not sure what if any security I have on my windows 8. The last time I had a homegroup set up I payed someone to do it for me so I did it by guess work more than anything, if someone can lead me through it step by step I would appreciate it.

    Hi @emma22 
    I would like to do my best to help, but please bear in mind the issue you are expressing is an inquiry for Microsoft not HP. I did find something I think will be most helpful, and I hope it resolves the issue, but if the issue persists, or you have additional questions, it might be best to reach out to the Microsoft community.
    Here is what I found; HomeGroup from start to finish.
    In the top right hand corner of the article, you can change it from WIndows 7 to Windows 8. I hope this helps.
    Please click the Thumbs up icon below to thank me for responding.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    Please click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution.
    Sunshyn2005 - I work on behalf of HP

  • Windows 2008 64-bit and Microsft ODBC for Oracle problem

    Hello,
    I am trying to create ODBC connection to Oracle 9i Database on remote server. I am using Windows 2008 64-bit but it is not showing Microsoft ODBC Driver for Oracle. Could any one suggest what to do?\\
    Thanks

    GQ wrote:
    Hello,
    I am trying to create ODBC connection to Oracle 9i Database on remote server. I am using Windows 2008 64-bit but it is not showing Microsoft ODBC Driver for Oracle. Could any one suggest what to do?\\
    ThanksInstall the Oracle client and use the Oracle driver. You're going to need it whether you use the MS driver or Oracles. ODBC drivers do not work apart from the client of the underlying database product.
    When you do the install, you will need to do a custom install and specifically select for the Windows components.

  • Windows 2008 Licensing - Standard and Enterprise Edt - No of License required

    Hello All  , 
    We have a Windows Environment running on VMware (ESXi5.1), running Windows 2008 Standard and Enterprise platforms . We are working on the no of license that is required  for each category . Can you help us in licencing calculation for each environment
    .Below is the split 
    Windows 2008 R2 Standard Edt.
    ESX Cluster 1 
    Total No of ESX Hosts :4 
    Total No of Windows 2008 R2 Std Edt VMs : 9   // How many license req ? Calculation 
    Total No of Windows 2008 R2 Ent Edt VMs : 6    // How many license req ? Calculation 
    ESX Cluster 2 
    Total no of ESX Hosts : 3 
    Total No of Windows 2008 R2 Std Edt VMs : 13  // How many license req ? Calculation 
    Total No of Windows 2008 R2 Ent Edt VMs : 6   // How many license req ? Calculation 
    Appreciate your support 

    Hi Sathish,
    I would recommend you to contact the Microsoft Volume Licensing Service Center at the following
    Microsoft website. They are the experts and can guide you with the proper license requirments.
    https://www.microsoft.com/licensing/servicecenter/
    Find your local Volume Licensing Service Center support contact information below. Select your country from the drop-down list and the correct Support Center will
    be displayed at right.
    https://www.microsoft.com/licensing/servicecenter/Help/Contact.aspx
    Regards,
    Rafic
    If you found this post helpful, please give it a "Helpful" vote.
    If it answered your question, remember to mark it as an "Answer".
    This posting is provided "AS IS" with no warranties and confers no rights! Always test ANY suggestion in a test environment before implementing!

Maybe you are looking for

  • SOAPFault received from Integration Server. ErrorCode/Category: XIServer/IN

    Hello All, I work on PI 7.1 and needed to create an interface using a simple File-to-File scenario. I created this without using any IR/ESR Objects as per a technical article on the website saptechnical dot com /Tutorials/XI/File2File/Demo1.htm This

  • Instant client for SQLLDR

    I see Oracle provides several instant client downloads. Is there a SQLLDR instant client, or a lite version that doesn't require the whole Oracle client for Linux (both 64 and 32 bit)?

  • Specs for Final Cut Pro Studio 2 - Which current mac?

    Hi All, Just wondering if Final Cut Pro Studio 2 can be run on a current iMac Core 2 Duo? Or is it only to be used on pro machines like the MacBook Pro and Mac Pro? I am looking at learning the program and need to know if my current iMac would be goo

  • Imac 24 inch liquid cooled?

    I saw pictures of a guy that had opened his 24 inch iMac. I see copper parts on the photo's, is this liquid cooling? http://images.google.nl/imgres?imgurl=http://forum.insanelymac.com/uploads/post- 19964-1158606972thumb.jpg&imgrefurl=http://forum.ins

  • JMS Objects in ObjectMessage is reference or copy? (WL 7.0)

              Hello All,           I need to pass the of the message processing application specific status back           to the client. I would not prefer to use the db for this status communication.           Is thre any other way? I was thinking of u