"Unable to set shared config DC." when running setup /RecoverServer

Hi guys,
I'm hoping for a bit of assistance. I have stepped into an environment where there is one production Exchange 2010 server and one Exchange 2013 server. The Exchange 2013 server is in a unrecoverable state however it contains the domain administrators mailbox
and therefore I cannot remove it manually. As it was a vm, I took it offline, created an identical server (name, os version(Windows 2008 R2 with latest updates), ip address etc.), installed all the prerequisite components and then ran setup /m:RecoverServer
/IAcceptExchangeServerLicenseTerms. Everything runs through successfully until it gets to the Mailbox role: Transport service where it fails with "Unable to set shared config DC.". After some searching on Google,
it suggests that ipv6 is disabled on the DC. We have two DC's in our environment and both have ipv6 enabled as does the exchange server. If I try to re-run the installation for the role alone, i.e. Setup /mode:install /IAcceptExchangeServerLicenseTerms
/role:HubTransport, it fails with "The machine is not configured for installing "BridgeheadRole" Datacenter Role." 
Any help would be greatly appreciated. 

Thanks Amit, I understand there's no hubtransport role in 2013 but this is the error that it's throwing:
PS D:\> .\setup /m:RecoverServer /IAcceptExchangeServerLicenseTerms
Welcome to Microsoft Exchange Server 2013 Service Pack 1 Unattended Setup
Copying Files...
File copy complete. Setup will now collect additional information needed for
installation.
Languages
Mailbox role: Transport service
Mailbox role: Client Access service
Mailbox role: Unified Messaging service
Mailbox role: Mailbox service
Management tools
Client Access role: Client Access Front End service
Client Access role: Front End Transport service
Performing Microsoft Exchange Server Prerequisite Check
    Configuring Prerequisites                                 COMPLETED
    Prerequisite Analysis                                     FAILED
     A Setup failure previously occurred while installing the HubTransportRole r
ole. Either run Setup again for just this role, or remove the role using Control
 Panel.
     For more information, visit: http://technet.microsoft.com/library(EXCHG.150
)/ms.exch.setupreadiness.InstallWatermark.aspx
The Exchange Server setup operation didn't complete. More details can be found
in ExchangeSetup.log located in the <SystemDrive>:\ExchangeSetupLogs folder.
Any other thoughts?

Similar Messages

  • Unable to interact with Flash content when running Firefox with restricted user

    When running Firefox with limited Windows user on Windows XP the Flash elements are displayed, the content that is set to auto-play does so even, but the flash area doesn't receive any mouse input: e.g. when I right click in the area instead of the flash context menu I get the browser context menu as if the flash plug-in wasn't even there. The exact same page on the exact same computer but with Administrator user works as expected: can press buttons, interact with flash controls and the context menu upon right-click is of course the flash one. This behavior occurs even if I disable all add-ons.

    Try uninstalling your sound card driver in Device Manager and reboot your PC.

  • Error when running setup table for 2LIS_03_UM

    Hi experts,
    When running the setup table for 2LIS_03_UM, we got the error message "Plant FP01 does not exist." Any suggestions on how we can fix this?
    Thanks,
    Donna

    check if this plant has been maintained in source system or not. If not, ask the concerned team to maintain it.
    Another way may be to allow error records which should ignore errornous records and rest should be filled in setup table.
    Regards,
    Gaurav

  • Error when running setup: Attach to native process

    Hi,
    I try to install the oracle iplanet webserver (version 7.0.13) on linux (centos 6.2, 64 bits).
    I first installed the compat-libstdc++-33 packages.
    After that I installed JRE, this version:
    java version "1.6.0_31"
    Java(TM) SE Runtime Environment (build 1.6.0_31-b04)
    Java HotSpot(TM) 64-Bit Server VM (build 20.6-b01, mixed mode)
    To install the iplanet webserver I first extract the content of the downloaded file (Oracle-iPlanet-Web-Server-7.0.13-linux-x64).
    Then I try to run setup with the command ./setup
    The error I get is: attach to native process failed.
    Any idea what is wrong?
    Regards Stefan
    Thanks for the help.

    Stefan,
    I am seeing the same error on Ubuntu 12.04 Precise Pangolin (which is admittedly unsupported). This happened to me once before on an older version of Ubuntu, and as I recall, it was a missing library dependency, but I am not able to locate the fix I came up with at that time.
    Interestingly, my existing ws7u12 installation runs fine, I just cannot upgrade to the latest update (15).
    I have this software under support, but only on Solaris (I develop on Ubuntu, but deploy to my production Solaris server). In any case, as Ubuntu is not officially supported, opening an SR for this problem would be a waste of time.
    I'll continue digging for my old solution and post here if I find it. If you've since discovered the solution, I'd love to hear it.
    Thanks,
    Bill

  • Unable Submit Form Value to Action when running struts-portlet in OracleAS

    Hi,I have develop a portlet using struts & pdk, after that deploy it by OC4J and register the
    provider at Oracle Application Server 10g 10.1.2.2.
    However the formbean value is unable passing to action after clicking submit button,this problem
    doesn't comeout when i run my code as stand alone application.
    here is my application code:
    1. Action Class:
    public class ZoneAction
      extends DispatchAction
      public ActionForward display(ActionMapping mapping, ActionForm form,
                                   HttpServletRequest request,
                                   HttpServletResponse response)
        throws IOException, ServletException
        ZoneHibernate zh = new ZoneHibernate();
        List list = zh.retrieveAllZone();
        ZoneForms zf = new ZoneForms();
        ZoneForm blankForm = new ZoneForm();
        list.add(blankForm);
        zf.setZoneForms(list);
        request.setAttribute("zoneForms", zf);
        return mapping.findForward("success");
    2.Provider.xml:
    <provider class="oracle.portal.provider.v2.DefaultProviderDefinition">
       <session>true</session>
       <passAllUrlParams>true</passAllUrlParams>
       <portlet class="oracle.portal.provider.v2.DefaultPortletDefinition">
          <id>1</id>
          <name>irmsPortlet</name>
          <title>iRMS Portlet</title>
          <description></description>
          <timeout>40</timeout>
          <showEditToPublic>false</showEditToPublic>
          <hasAbout>false</hasAbout>
          <showEdit>false</showEdit>
          <hasHelp>false</hasHelp>
          <showEditDefault>false</showEditDefault>
          <showDetails>false</showDetails>
          <renderer class="oracle.portal.provider.v2.render.RenderManager">
             <renderContainer>true</renderContainer>
             <renderCustomize>true</renderCustomize>
             <autoRedirect>true</autoRedirect>
             <contentType>text/html</contentType>
             <showPage class="oracle.portal.provider.v2.render.http.StrutsRenderer">
             <defaultAction>/jsp/zone_maintenance.jsp</defaultAction>
             </showPage>
          </renderer>
       </portlet>
    </provider>
    3. Action Mapping in struts-cofig.xml:
      <action-mappings>
        <action path="/ZoneMaintenance"
                type="my.com.irms.action.ZoneAction"
                name="zoneForms"
                scope="request"
                parameter="action"
                input="/jsp/zone_maintenance.jsp">
          <forward name="success" path="/jsp/zone_maintenance.jsp"/>
        </action>
      </action-mappings>
    4.jsp:
    <pdk-html:form action="/ZoneMaintenance.do">
    -div id="action"-<pdk-html:hidden name="zoneForms" property="action"/>-/div-
    <logic:notEmpty name="zoneForms" property="zoneForms">
    <table border="1">
    <thead>
                <tr>
                    <th><bean:message key="zone.zone"/></th>
                    <th><bean:message key="zone.disc"/></th>
               </tr>
    </thead>
    <tbody>
    <logic:iterate id="zone" name="zoneForms" property="zoneForms" indexId="i">
                <tr id="tr${i}">   
                    <td>
                      <pdk-html:hidden name="zoneForms"
                                      property="zoneForms[${i}].rowStatus" value=""/>
                      <pdk-html:hidden name="zoneForms" property="zoneForms[${i}].id"/>
                      <input type="checkbox" onclick="update()">
                    </td>
                    <td><pdk-html:text name="zoneForms"
                                           property="zoneForms[${i}].zone" size="10"       
                                           onchange="rowDataChanged('tb1',${i})"/></td>
                    <td><pdk-html:text name="zoneForms"
                                           property="zoneForms[${i}].disc" size="30" 
                                           onchange="rowDataChanged('tb1',${i})"/></td>
                </tr>
    </logic:iterate>
    </tbody>
    </table>
    <input type="button" value="Submit" onclick="submitForm('save')"/>
    </logic:notEmpty>
    <input type="button" value="Display" onclick="submitForm('display')"/>
    </pdk-html:form>
    5.javascript for submitForm():
      function submitForm(param)
            document.getElementById("action")
           .getElementsByTagName("input")[0].value = param;
            document.forms[0].submit();
    6.web.xml
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <web-app>
      <description>Empty web.xml file for Web Application</description>
      <servlet>
        <servlet-name>action</servlet-name>
        <servlet-class>
              org.apache.struts.action.ActionServlet
        </servlet-class>
        <init-param>
          <param-name>config</param-name>
          <param-value>
               /WEB-INF/struts-config.xml
          </param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
      </servlet>
      <servlet>
        <description>Extended Portal
                     SOAP  Server</description>
        <servlet-name>SOAPServlet</servlet-name>
        <servlet-class>
               oracle.webdb.provider.v2.adapter.SOAPServlet
        </servlet-class>
        <init-param>
          <param-name>resourceServletMapping</param-name>
          <param-value>/pdkresource</param-value>
        </init-param>
      </servlet>
      <servlet>
        <description>Image resource server</description>
        <servlet-name>ResourceServlet</servlet-name>
        <servlet-class>
             oracle.webdb.provider.v2.adapter.ResourceServlet
        </servlet-class>
      </servlet>
      <servlet-mapping>
        <servlet-name>action</servlet-name>
        <url-pattern>*.do</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
        <servlet-name>SOAPServlet</servlet-name>
        <url-pattern>/providers</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
        <servlet-name>SOAPServlet</servlet-name>
        <url-pattern>/providers/*</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
        <servlet-name>ResourceServlet</servlet-name>
        <url-pattern>/pdkresource/*</url-pattern>
      </servlet-mapping>
      <session-config>
        <session-timeout>35</session-timeout>
      </session-config>
      <mime-mapping>
        <extension>html</extension>
        <mime-type>text/html</mime-type>
      </mime-mapping>
      <mime-mapping>
        <extension>txt</extension>
        <mime-type>text/plain</mime-type>
      </mime-mapping>
    </web-app>
    Can anyone help me? thanks.

    It is probably easier to do with with a standard tag than the <html:button> tag, as it means you can nest the
    <input type="button" name="more" value="more" onclick="setID(<bean:write name="bloodbankList" property="id"/>)"/>or maybe like this:
    <bean:define id="bbId" name="bloodbankList" property="id"/>
    <html:button property="More" value="More" style="color: #00007D; text-transform: uppercase; letter-spacing: 2pt; background-color: #6B719C; border: 2 solid #00007D"   onclick="<%= "setID(" + id + ");" %>" />Cheers,
    evnafets

  • Unable to load gpib-32.dll when running the visual basic 2008 program

    I installed NI-488.2 into my PC, window 7 64 bit OS.
    In the program >> project> add reference>.NET, I successfully add the NI.4882  into my visual basic  program.
    By the way, this program worked well in another window 7 32 bit PC.
    But when I run the program at ildev(BDINDEX,.........), error comes up as "unable load DLL gpib-32.dll".
    So when I looked at c:\windows\system32, I can not fine gpib-32.dll.
    Doesn't  NI-488.2 driver install gpib-32.dll?
    How can I install gpib-32.dll?

    SeongCho wrote:
    Nyc, thank you for your reply.
    By the way, I think I did all the link explained.
    So I have no problem in  adding  NI488.2 to my program's reference using "add reference".
    The problem is GPIB statement like ildev() looks for "gpib-32.dll".
    But there was no gpib-32.dll installed in "c:\windows\system32" so error comes up with "unable to load gpib-32.dll".
    I did the same procedure in my another PC(window 7 32 bit OS,my current PC is window 7 64 bit OS), and in that PC I can see the gpib-32.dll in that directory and program run without problem.
    I do not know how gpib-32.dll was installed in my previous PC.
    Thanks
    Seong
    Have you looked at the example programs for .NET that install with NI-488.2?
    You need to start thinking in terms of .NET 

  • Can I set JVM memory size when running applets?

    Hi,
    I have downloaded an applet that renders panoramic images and
    I have a problem with Java memory. I remember that default maximum
    size that applet can use is 70MB, and the problem is 70MB is
    not enough when rendering big images. It is OK when I add
    "-Xmx -Xms" parameters in the Java Control but I cannot tell
    everyone who wants to see my images to go control panel, add
    parameters etc..
    So my question is...
    Is it possible add "-Xmx -Xms" parameters inside the applet file
    so that these parameters run automatically when executing applet?
    Thanks in advance for your reply!
    Hyung

    Hi,
    I have downloaded an applet that renders panoramic
    images and
    I have a problem with Java memory. I remember that
    default maximum
    size that applet can use is 70MB, and the problem is
    70MB is
    not enough when rendering big images. It is OK when I
    add
    "-Xmx -Xms" parameters in the Java Control but I
    cannot tell
    everyone who wants to see my images to go control
    panel, add
    parameters etc..
    So my question is...
    Is it possible add "-Xmx -Xms" parameters inside the
    applet file
    so that these parameters run automatically when
    executing applet?
    Thanks in advance for your reply!
    HyungA potential workaround I would try is is use ByteBuffers
    (T)

  • Unable to set Integration Broker Queue to Run

    We are on PT 8.54 and HCM 9.2
    I am trying to set the queue EOEN_MSG_CHNL queue to 'Run', but it is immediately resetting back to pause state. What could be the issue for it not running ?? I do not see this issue with the other queues.

    Can try checking if there is anything stuck in the Transaction Retry Queue?
    Main Menu > PeopleTools > Integration Broker > Service Operations Monitor > Monitoring > Asynchronous Services > Publication Contracts (Tab) > "Transaction Retry Queue" Hyperlink

  • I'm unable to set a custom footer in print setup of "Page 2-#" so I would get 2-1, 2-2, etc.

    I have tried "Page 2- #" (note the space) as well. This doesn't work in FF4 either.

    Hello Sebastian,
    you can get the Age column from Task 1 and then update the Task 2 Age column with that value. I am not sure why you want to run another workflow on Task 2.
    You can perform below steps to set Age column from Task 1 to Task 2.
    1.  Create Task 1 using Assign a task , wait till the task is completed.
    2. Get the Age column value based on Task 1 once the task is completed.
    3.Create Task 2 using Assign a task ,  uncheck wait till the task is completed option.
    4. Update the Task 2 with Age column in Task1.
    5. Use Wait for the field to equal value , check for Task Status is completed or not.
    >>The problem with this approach is that I can't get a reference to the list item that started Task2 to read the Age from the list item.
    you can get the related item from task list item to get the main list item.
    Other option is, Use Javascript and CSOM  in task edit form to get the Age column from Task1 and prepoluate the Age value when Task2 is opened.
    Hope this helps.
    My Blog- http://www.sharepoint-journey.com|
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful

  • MBP 10.5.8 hanging when run setup as if a new machine

    MBP 10.5.8
    For a number of weeks my MacBook has been hanging and needing a hard restart and at other times taking longer and longer to boot up.
    Finally it gave me a password prompt but not for my usual account and it wouldn't accept my password.
    So in command line I went to ls /Users/ got the username of my account and tried to change the password in command line using:
       Launchctl load /System/Library/LaunchDaemons/com.apple.opendirectory.plist
       Passwd <username>
    And the system said the username was not recognised even though what I typed was the one that showed when I ran ls /Users/
    I did this several times with the same thing happening each time
    Then I tried to create a new admin account by deleting var/db AppleSetUpDone
    when I reboot it runs the setup program as if it were a new mac - I tried setting it up with the details of my wireless connection; it ran overnight without finishing
    I then tried setting it up saying I do not connect to the Internet - same thing, it ran overnight without finishing
    When I run fsck -fy in command line it says everything is fine
    I know this machine is old and on its last legs and I would really appreciate any help getting it going for a little bit longer.
    Thanks very much

    E27 wrote:
    We have a mbp bootable clone with 10.5.8 and want to use this as a backup startup disk on a mba with 10.6.8.  We understand that it is generally not possible to startup a bootable clone that has a different os than what you are currently running.
    You should as long as the MP had booted off the 10.5.8 clone previously.
    However I, and others also, found out that we can no longer boot off the 10.5 disks in a later 10.6+ Software Update, it might be the firmware was changed to disallow 10.5 from booting once on 10.6.+ sometime.
    Apple might have done this because they don't want people using the 10.5 disk to repair their 10.6 altered drive.
    Got the written kp hard boot screen and had to unplug the clone while frozen but there appears to be no permanent damage to any of the drives.  We suspected this may happen.
    There is your answer and no, no pernament damage was done, it's all a read operation and the machine/firmware couldn't use the 10.5.8 drivers.
    You'll have to find a Mac that is of the same model and runs 10.5 to boot off that 10.5.8 clone.

  • When running setup, I get"This file does not have a program associated with it for performing this action. Please install a program or, if one is already installed, create an association in the Default Programs control panel.

    whe I try to install Firefox 4.0.1, I get a Red X message. ""This file does not have a program associated with it for performing this action. Please install a program or, if one is already installed, create an association in the Default Programs control panel. Is there a fix?

    I Did that. When I try to install, I get the same message. I have come to believe this is a windows 7 or IE 9 problem. I also have active X problems that I can not resolve. I can not open Gmail also

  • Gnome 3.4.1 unable to set resolutions for a dual-monitor setup

    I use Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller.
    I updated my system to the latest version of everything. Gnome-Shell works, gnome-control-center works, but the Displays icon doesn't (clicking on it does nothing). I even downgraded it to the version 3.2.2 but it didn't help. Is there any other way to set the resolutions?
    Edit: xrandr can do the resolution thing. But problems start appearing:
    [ly@archlev ~]$ gedit
    gedit: symbol lookup error: gedit: undefined symbol: gtk_ui_manager_add_ui_from_resource
    [ly@archlev ~]$ gnome-system-monitor
    gnome-system-monitor: symbol lookup error: /usr/lib/libgtkmm-3.0.so.1: undefined symbol: gtk_application_window_get_type
    Last edited by dxxvi (2012-04-24 05:38:12)

    Have you tried XRandR through an xorg.conf file: Here?
    If it doesn't work you can always drop to a terminal and
    sudo rm /etc/X11/xorg.conf
    to remove the file and reboot and you should be back where you started.
    Don't forget to substitute the VGA1 and HDMI1 ports in that example with your ports as given by
    xrandr -q
    Edit: in the unlikely event you already have an xorg.conf file don't forget to back it up in case you need to restore it instead of the above rm command.
    Last edited by headkase (2012-04-24 05:47:49)

  • ORA-27123 unable to attach shared memory segment

    Running oracle 8.1.5.0.0 on Redhat 6.0 with kernel 2.2.12, I keep getting the error ORA-27123 unable to attach shared memory segment when trying to startup and instance with an SGA > 150 MB or so. I have modified the shmmax and shmall kernel parameters via the /proc/sys interface. The relevant output of ipcs -l is below:
    ------ Shared Memory Limits --------
    max number of segments = 128
    max seg size (kbytes) = 976562
    max total shared memory (kbytes) = 16777216
    min seg size (bytes) = 1
    This system has 2gb of physical memory and is doing nothing except oracle.
    I changed the shmmax and shmall parameters after the instance was created, was their something I needed to do to inform Oracle of the changes?

    High JW,
    i had the same problem on my installation.
    The solution is written in the Oracle8i Administrator Refernece on page 1-26 "Relocating the SGA"
    a) determine the valid adress range for Shared Memory with:
    $ tstshm
    in the output Lowest & Highest SHM indicate the valid adress range
    b) run genksms to generate the file ksms.s
    $ cd $ORACLE_HOME/rdbms/lib
    $ $ORACLE_HOME/bin/genksms -b "sga_beginn_adress" > ksms.s
    c) shut down any instance
    d) rebuilt the oracle exe in $ORACLE_HOME/rdbms/lib
    $ make -f ins_rdbms.mk ksms.o
    $ make -f ins_rdbms.mk ioracle
    the result is a new oracle kernel that loads the SGA at the adress specified in "sga_beginn_adress".
    regards
    Gerhard

  • Unable to set up Express A1088

    Hi Fellow Humans
    I'm after some advice and would really appreciate any that you can offer, I recently bought an additional Airport Express to add to my network.
    My Current network is set up with 1 time capsule and 2 additional express'. I purchased an Airport Express A1088 as an additional airtunes unit for a sound bar i have. I am having some issues setting this up, I have tried the following and wonder if there is something I may've missed.
    Unable to set up using ios devices (ipad air, iphones 5s both running ios 7.1.2)
    Unable to set up using macbook air running mavericks (I am aware that apple no longer support A1088 under mavericks)
    Not registering on Windows 7/8 using original CD
    Being recognised in Windows XP on Virtual Machine using original CD, I managed to get to start setting this up but it failed.
    I am now stuck the device will not connect to my current network and keeps asking for me to insert the password I created during the failed set up. However after numerous Factory, Hard and Soft Resets still asks me for the password.
    I purchased this from a seller on ebay who had a good reputation, I have noticed that the packaging appears to be a Chinese version - is this going to be an issue?
    One of the express' on my network is an american version - apart from the plug change it was simple enought to set up.
    Before contacting the seller I hope someone here could help me.
    Thanks in advance

    Unable to set up using ios devices (ipad air, iphones 5s both running ios 7.1.2)
    Unable to set up using macbook air running mavericks (I am aware that apple no longer support A1088 under mavericks)
    This would be the case as Apple no longer supports the older 802.11g AirPorts.
    Not registering on Windows 7/8 using original CD
    This is also because Apple does not provide support for these earlier AirPorts on Windows-based computers either.
    Being recognised in Windows XP on Virtual Machine using original CD, I managed to get to start setting this up but it failed.
    I use Parallels as my Virtual Host. I find that I need to use the "Configure Other" option in order to access the AirPort when running inside a virtual machine.
    I purchased this from a seller on ebay who had a good reputation, I have noticed that the packaging appears to be a Chinese version - is this going to be an issue?
    Potentially, yes. Although all AirPorts can be adapted to work with different electrical standards, the Wi-Fi standards are most likely going to be an issue ... even in just the 2.4 GHz band. As you can imagine not all radio channels are supported everywhere.
    In the long run you would better served to send the older Express back and get yourself either a 1st or 2nd generation 802.11n Express instead.

  • Unable to set template properties

    I have a site which is based off of a responsive design (HTML5/CSS3/jQuery). I've setup a nice template for our Contribute users however I get the "Unable to set template properties" error when I would try to enter the template properties. Additionally, repeating regions don't work at all. No error, nothing. They work great with Dreamweaver, but not Contribute.
    I previously had this issue with an older (non-responsive) site which was based off of a Dreamweaver CS5.5 built in template. However with that site, I would get the following error when trying to work with a repeating region, "You can't add items to repeating regions because the draft's parent template is missing or not available to users in your role. Please contact the website administrator." I was able to fix this with the following Contribute 6.5 settings.
    Users can ONLY be able to create new pages from copies of select pages. I just made blank versions of the templates I wanted people to use, and just saved them in the /Templates directory.
    Be sure creating new pages from site templates is turned OFF.
    Be sure creating new pages from content types is turned OFF.
    This is not the case with the newer site. I've tried both transitional and compatibility modes in the Contribute site settings but still nothing.
    Anyone experiencing this or have any fix ideas?

    Update:
    Looks like I'm going to have to settle on not using nested templates. I gave it a try with on a page from a single un-nested template and both template properties and repeating regions worked.
    So now I'll be including all the global code via PHP includes rather than a master Dreamweaver template. Not sure how that will effect broken link reports or global link updates but it looks like it's the only solution for now.

Maybe you are looking for