Replication Link Analyzer Unusual Error

Just finished upgrading my Heirarchy to SCCM 2012 R2, everything is fine after migration and the environment has been stable for several weeks.
One site however, is showing warnings for Replication. The replication isn't failing, its been up to date at the site, but 3-4 hours behind on its most recent synchronization. This time delay seems to be within tolerance, and hasnt caused any problems.
In troubleshooting that issue, RLA returns the following message. I dont understand and can't find any reference to the tested Local System account its referring to in the logs; and of the servers involved in this Replication, both have sysadmin access on
the Database.
"Replication link analyzer detected Database PS1 does not have a valid security scope for Local system Account. Please make sure Login for local System account exists and it has sysadmin role assigned".

Hi,
What's the error in rcmctrl.log, replmgr.log? Have you enable verbose?
You could follow the blog below to troubleshoot replication issue.
http://blogs.msdn.com/b/minfangl/archive/2012/05/16/tips-for-troubleshooting-sc-2012-configuration-manager-data-replication-service-drs.aspx
Best Regards,
Joyce
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.

Similar Messages

  • SCCM 2012 after SP1 replication link has failed

    Hi guys,
      after install SP1 on SCCM 2012 I have problem with Global Data Replication status and Site Data replication status on P02. Where I have C01 and P01, P02, P03, P04.  P02 is the only one which is broken more. Rest of primary sites have ok
    Global Data Replication status.
    Site P02 is after 1 week from patch console still in Read Only mode rcmctrl.log says: The current site status: ReplicationMaintenance.
    CAS C01 have in rcmctrl.log
    ERROR: Replication group "General_Site_Data" has failed to initialize for subscribing site C01, setting link state to Error.
    Retry for process replication is requested.
    Cleaning the RCM inbox if there are any *.RCM files for further change notifications....
    Rcm control is waiting for file change notification or timeout after 60 seconds.
    No connector role installed
    DRS change application started.
    Site is NOT active, so not calling the DrsActivation procedures on DRSSite queue.
    replmgr.log says nothing special to be mentioned.
    and when I run Replication Link Analyzer on C01 against Link to P02 it says :\
    ReplicationAnalysis.xml:
    Replication initialization is in progress for replication groups EndpointProtection_Site, Medium_Priority_Site, Operational_Data, General_Site_Data, MDM_SiteSpecial, MDM_Site. Found replication groups Replication Configuration that needs to be re-initialized.
    Reason code: ReinitializeSenderDespoolerError. Replication initialization is in progress for replication groups Site Control Data, Configuration Data, Registration Data, Language Neutral, Asset Intelligence Knowledge Base, EndpointProtection_ThreatMetaData,
    Alerts, Group Relationships. "
    Target site P02 is in maintenance mode. Not checking transmission messages sent to queue ConfigMgrDRSQueue. Target site P02 is in maintenance mode. Not checking transmission messages sent to queue ConfigMgrDRSQueue
    Target site C01 is in maintenance mode. Not checking transmission messages sent to queue ConfigMgrDRSQueue. Target site C01 is in maintenance mode. Not checking transmission messages sent to queue ConfigMgrDRSQueue
    so I need to somehow quit this maintenance mode. following this link did not helped me:
    http://blogs.msdn.com/b/minfangl/archive/2012/05/16/tips-for-troubleshooting-sc-2012-configuration-manager-data-replication-service-drs.aspx
    I restarted all these 5 servers with no luck.
    thank you for any hint/ help
    Jaromir
    Jaromir

    in my case in rcmctr.log is visible on CAS and primary site this message: ERROR: Replication group "General_Site_Data" has failed to initialize for subscribing site C01, setting link state to Error.
    but today we moved in this situation and my P02 2nd primary site fall out from maintenance mode and a lot of replication happened but General_Site_data still remain in problem.
    steps taken were: goto monitoring node > database replication > choose link which has problem and on the bottom check Initialization Detail
    you can see which replication Group has problem.
    Then in SQl server management studio we run following command with relevant name of Sites and Replication Group which are affected in my case
      select * from RCM_DrsInitializationTracking
     where replicationGroup = 'General_Site_data' AND SiteFulfilling='P02'
    it will show you status
    then this update query will force that replication group to start replicate(parameter 7):
    we run this many times against same or different replication groups which ahd problems
    update RCM_DrsInitializationTracking set InitializationStatus = 7 where ReplicationGroup = 'general_site_data' and SiteRequesting = 'C01' and SiteFulfilling = 'P02'
     it's still not win but we are moving forward. And it doesn't has to be same issue like you have but it can point you to somewhere...
    J.
    Jaromir

  • Replication Link Failing or Degraded

    I have just upgraded my test environment to SCCM 2012 SP1 to SCCM 2012 R2.  I now have replication issues between my CAS and Primary Site server.  On the CAS it looks as though the link is active (although I do get an error when running the Replication
    Link Analyzer) on the Primary it is definitely showing as Link failed.  I get the following message - Replication group on the Primary site are degraded.  Replication group Global -receiving pattern CFG_Global.  The SCCM client package on the
    Primary keeps trying to install and although I can see it on the DP it's a version 1000.  I've look in the replmgr.log and the rcmctrl.log but I can't see any errors.On the SMS_Replication_Configuration_Monitor the link status goes between active, degraded
    and failed.  And as mentioned before the Distribution Manager doesnt show any errors but keeps saying its successfully processed the Configuration Manager Client Package.  Does anyone have any ideas what I should try?
    Thanks in advance
     

    Hi,
    “Degraded Link means any of the replication group is processing the message slower than the defined threshold.”
    The following threads might be helpful.
    Site replication degraded then a minute later, changes back
    to active
    Link State is degraded on SCCM2012
    Best Regards,
    Joyce Li
    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.

  • Displaying an error message with a link to the error field

    By default, ADF validation usually displays an alert with an error message and a link to the error field.
    I have some custom validations where I finally display the error message with this:
      public static void MessageError(String messageText){
        //String messageText="No se han encontrado estos datos";
        FacesMessage fm = new FacesMessage(messageText);
         * set the type of the message.
         * Valid types: error, fatal,info,warning
        fm.setSeverity(FacesMessage.SEVERITY_ERROR);
        FacesContext context = FacesContext.getCurrentInstance();
        context.addMessage(null, fm);
    My customer is asking for displaying a link to the error field in this kind of error alerts as standard errors do.
    Is there any way to get this ?

    Can't you include this in your message?
    You may want to check Duncan's blog https://blogs.oracle.com/groundside/entry/get_more_from_your_messages whichgives more inside on what you can do
    Timo

  • Get-mailboxdatabasecopystatus -identity DBNAME | fl gives errors "The Microsoft Exchange Replication service encountered an error while attempting to start a replication instance for". DB is mounted and the DB copies are in healthy status.

    We are getting a SCOM alert " Database copy isn''''t keeping up with the changes on the active database copy and has failed."
    When we go to the mailbox server and check we found all the Mailbox DB's are mounted properly and their copies are in healthy state. Further digging to this problem we found that there are no critical events to this DB in the eventviewer.
    When we runt he get-mailboxdatabasecopystatus -identity DBNAME | Fl then in the ErrorMessage section we get error "The Microsoft Exchange Replication service encountered an error while attempting to start a replication instance for . If the copy doesn't
    recover automatically, administrator intervention may be necessary. Error: The directory is not empty."
    ErrorEventID : 4126
    In the event viewer we get a Information event 4114 saying the DB redundancy health check passed and in the details section we get the same error message mentioned above.
    Also we observed that the "MSExchange Replication" counter "Failed" is set to 1 for this perticular DB but is is set to 0 for the other DB's. Tried restarting the MSEXChange replication service but still the "Failed" counter
    is 1 and the SCOM alert is still active.
    The version is Exchange 2010 SP3 UR5
    Any clues???

    Hi,
    From your description, this issue only affect one mailbox datatabase.
    Please use the Update-MailboxDatabaseCopy command to check result.
    If it doesn't work, please dismount your active database copy and check if this is Clean Shutdown, if it's dirty shutdown, please bring to clean shutdown and mount this database copy. Then run the Update-MailboxDatabaseCopy command again to check result.
    Best regards,
    Belinda Ma
    TechNet Community Support

  • Dynamic Link Media Server Error On Video Export Photoshop CC 2014

    Dynamic Link Media Server Error On Video Export Photoshop CC 2014

    Hi,
    Are you still having problems with CS6 Video Export?
    What Export settings are you using? (A screencapture might be the fastest way to answer that.)
    Does it work if you use the default settings?
    If you have time to experiment, I have some suggestions:
    Would you please try/verify the following:
    1. Be sure virus/security/parental control software hasn't trapped parts of Photoshop, Bridge, Premiere, Lightroom, or any Adobe app using DynamicLinkMediaServer. (Make sure the Adobe apps are added as exceptions if needed.)
    2. Ensure you have the latest version of QuickTime
    3. Close all Adobe applications - wait more than 30 seconds, then launch Photoshop and try to open and export the file.
    - If unsuccessful, view Task Manager/Processes to verify necessary processes started up when importing video (dynamiclinkmanager.exe, dynamiclinkmediaserver.exe and Adobe QT32 Server.exe)
    - If unsuccessful, please capture the full error message text.
    4. Close all Adobe apps, wait 30 seconds - launch Bridge and try to open/export the file.
    Thanks,
    Meredith

  • Drop database link & ORA-02082 Error

    Hello,
    I have created db link. Now, I would like to DROP it but I got "ORA-02082 a loopback database link must have a connection qualifier".
    I have tried every possible combination but without success.
    Thanks for help
    sasa

    Hello Barbara,
    I agree with you that if db link exist I should be able to drop it. If you look into my first reply there is complete select from user_db_links. Select from dba_db_links are the same because I haven't any others db links. I try to drop the db link as owner or as sys. I do not need to think about drop with name "qwer.cscargo.cz" because is wrong (our inner domain is "in.cscargo.cz"). The only difference among others db links is that qwer have "current_user".
    DB_LINK USERNAME HOST
    CARGODB.IN.CSCARGO.CZ CARGO_ADM cargodb
    LMDB.IN.CSCARGO.CZ CARGO_ADM lmdb
    QWER.IN.CSCARGO.CZ CURRENT_USER speisdb
    SPEISDB.IN.CSCARGO.CZ CARGO_ADM speisdb_rac
    There could be one problem. I created the db link when my db have name "speisdb". I rename my db (using rman - duplicate db) to "speisdev". Could be this source of problems?
    Here is output of your drop script:
    drop database link qwer
    ERROR at line 1:
    ORA-02082: a loopback database link must have a connection qualifier
    drop database link qwer.cscargo.cz
    ERROR at line 1:
    ORA-02024: database link not found
    drop database link qwer.in.cscargo.cz
    ERROR at line 1:
    ORA-02084: database name is missing a component
    drop database link qwer@loopback
    ERROR at line 1:
    ORA-02024: database link not found
    drop database link qwer.cscargo.cz@loopback
    ERROR at line 1:
    ORA-02024: database link not found
    drop database link qwer.in.cscargo.cz@loopback
    ERROR at line 1:
    ORA-02084: database name is missing a component
    drop public database link qwer
    ERROR at line 1:
    ORA-02082: a loopback database link must have a connection qualifier
    drop public database link qwer.cscargo.cz
    ERROR at line 1:
    ORA-02024: database link not found
    drop public database link qwer.in.cscargo.cz
    ERROR at line 1:
    ORA-02084: database name is missing a component
    drop public database link qwer@loopback
    ERROR at line 1:
    ORA-02024: database link not found
    drop public database link qwer.cscargo.cz@loopback
    ERROR at line 1:
    ORA-02024: database link not found
    drop public database link qwer.in.cscargo.cz@loopback
    ERROR at line 1:
    ORA-02084: database name is missing a component
    Thanks SASA

  • Excel 2013 "cannot use object linking and embedding error"

    Hi
    We are using excel export as pdf functionality and have the following DCOM configuration
    1.start->run and type 'DCOMCNFG'
    2: Open 'DCOM Config' and locate 'Microsoft Excel Application'
    3: Set its identity to 'This User' and give specific service user
    On opening excel  we are getting  "cannot use object linking and embedding error" and the microsoft sugestions tells to change to launching user which is not an option for us,Is there any other suggestion to fix this issue by keeping Dcom
    configuration with'This User'
    Thanks in advance
    Pradeep

    Hi
    when excel is opened, a warning pops up saying "Cannot use object linking and embedding" . This
    fix change the DCOM ID to Launching User) does not work for us. We need the Excel DCOM ID to use a particular user "domain\user" in order to access excel from our website.
    Is there any other suggestions
    Thanks in advance
    Pradeep

  • Unusual error in Infopackage

    Hello Experts,
    I am getting an unusual error while executing the infopackage for CO-PA extraction. I ran the IP for init with data transfer using controlling area and fiscal period as the selection criteria but the Infopackage returned a error "System could not find a source of data that could perform the search". However, when I run RSA3 for the same selection criteria, it does returns extracted records.
    I am quite confused by this and will appreciate any help in this regards.
    Thanks,
    Rishi

    Hi,
    Init with selections in the Info Package is not Possible
    Remove selection and Initialize the Delta it will work
    Regards
    Hari

  • Treat linker warnings as errors

    Hello,
    Is there a flag in Clang to treat linker warnings as errors?
    I am using XCode 4.3 witn LLVM 3.1.
    thanks,
    Alex

    Hello,
    Is there a flag in Clang to treat linker warnings as errors?
    I am using XCode 4.3 witn LLVM 3.1.
    thanks,
    Alex

  • Hyperion Analyzer "show linked reporting object error"

    I try to add a "cell note" on an Analyzer Report thruogh choose "Related Content" option. Then I select "Data Display"-->"Show Linked Reporting Opject Indicator" to indicate report reader the data cell has a cell note. After doing that, suddently, my whole spread sheet showed "No data availiable" and there is an essbase error on the screen:
    "nested exception is com.hyperion.ap.APException:[] 1033 Native:2001 Essbase Error" . Could any expert help me to solve the problem.
    my server and client info. are as below.
    <<Server info.>>
    Version: 7.2.5.4.28
    Class Version: Java HotSpot(TM) Client VM
    VM Version: Java HotSpot(TM) Client VM
    VM Vendor: Sun Microsystems Inc.
    Java Vendor: Sun Microsystems Inc.
    Java Version: 1.4.2_08
    OS Name: Windows 2000
    OS Version: 5.0
    Total Memory: 133300224
    Free Memory: 25754256
    Locale: Chanese (Taiwan)
    <<Client Info.>>
    Version: 7.2.5.4.28
    Class Version: Java HotSpot(TM) Client VM
    VM Version: Java HotSpot(TM) Client VM
    VM Vendor: Sun Microsystems Inc.
    Java Vendor: Sun Microsystems Inc.
    Java Version: 1.4.2_12
    OS Name: Windows 2003
    OS Version: 5.2
    Total Memory: 35405824
    Free Memory: 13854632
    Locale: Chanese (Taiwan)
    Report Information
    Number of Rows: 1
    Number of Columns: 2

    Hi,I also got this error, as well as others, with one of my client. I couldn't find a stable way out of it in VB. I did a C DLL that is declared in VB, just for that AddLRO function. As well as with the LRO lists.If you need it, just drop me a mail.CheersEric Partake [email protected]

  • AD Replication Not Working - Last error: 1256 (0x4e8):

    Hi,
    We have one DC and ADC which is running on the same premises.  Few days back the ADC got power failure and after that long it thrown an error of some services are not started.  We checked the event viewer to find out the service failed but not
    found the same.  In Services all the services are in started mode.  Restarted server serval time.  Still the replication not happening with DC.  If any one can help me out to find out the real issue will very helpful.
    Pasting Below dciag and showrepl results ,
    repadmin running command /showrepl against server localhost
    Default-First-Site-Name\BACKUPDC
    DC Options: (none)
    Site Options: (none)
    DC object GUID: bcbf105f-e755-4c24-b846-01d447834480
    DC invocationID: da4dec2a-3c22-4b5f-8f36-586ee3969ea2
    ==== INBOUND NEIGHBORS ======================================
    DC=bannaridc,DC=com
        Default-First-Site-Name\DC via RPC
            DC object GUID: 2a328743-72f5-48c7-b932-cbe8f957a580
            Last attempt @ 2014-06-30 12:28:05 failed, result 5 (0x5):
                Access is denied.
            1479 consecutive failure(s).
            Last success @ 2014-05-12 09:42:25.
    CN=Configuration,DC=bannaridc,DC=com
        Default-First-Site-Name\DC via RPC
            DC object GUID: 2a328743-72f5-48c7-b932-cbe8f957a580
            Last attempt @ 2014-06-30 12:28:06 failed, result 5 (0x5):
                Access is denied.
            1182 consecutive failure(s).
            Last success @ 2014-05-12 09:23:26.
    CN=Schema,CN=Configuration,DC=bannaridc,DC=com
        Default-First-Site-Name\DC via RPC
            DC object GUID: 2a328743-72f5-48c7-b932-cbe8f957a580
            Last attempt @ 2014-06-30 12:28:06 failed, result 5 (0x5):
                Access is denied.
            1182 consecutive failure(s).
            Last success @ 2014-05-12 09:23:26.
    DC=DomainDnsZones,DC=bannaridc,DC=com
        Default-First-Site-Name\DC via RPC
            DC object GUID: 2a328743-72f5-48c7-b932-cbe8f957a580
            Last attempt @ 2014-06-30 12:28:05 failed, result 1256 (0x4e8):
                The remote system is not available. For information about network troubleshooting, see Windows Help.
            1182 consecutive failure(s).
            Last success @ 2014-05-12 09:33:40.
    DC=ForestDnsZones,DC=bannaridc,DC=com
        Default-First-Site-Name\DC via RPC
            DC object GUID: 2a328743-72f5-48c7-b932-cbe8f957a580
            Last attempt @ 2014-06-30 12:28:05 failed, result 1256 (0x4e8):
                The remote system is not available. For information about network troubleshooting, see Windows Help.
            1182 consecutive failure(s).
            Last success @ 2014-05-12 09:23:27.
    Source: Default-First-Site-Name\DC
    ******* 1479 CONSECUTIVE FAILURES since 2014-05-12 09:42:25
    Last error: 1256 (0x4e8):
                The remote system is not available. For information about network troubleshooting, see Windows Help.
    Replication Summary Start Time: 2014-06-30 12:49:41
    Beginning data collection for replication summary, this may take awhile:
    Source DC           largest delta  fails/total  %%  error
     BACKUPDC          49d.03h:30m:38s    5 /   5  100  (2148074274) The target principal name is incorrect.
     DC                49d.03h:26m:15s    5 /   5  100  (5) Access is denied.
    Destination DC    largest delta    fails/total  %%  error
     BACKUPDC          49d.03h:26m:16s    5 /   5  100  (5) Access is denied.
     DC                49d.03h:30m:39s    5 /   5  100  (2148074274) The target principal name is incorrect.
    Domain Controller Diagnosis
    Performing initial setup:
       Done gathering initial info.
    Doing initial required tests
       Testing server: Default-First-Site-Name\BACKUPDC
          Starting test: Connectivity
             ......................... BACKUPDC passed test Connectivity
    Doing primary tests
       Testing server: Default-First-Site-Name\BACKUPDC
          Starting test: Replications
             [Replications Check,BACKUPDC] A recent replication attempt failed:
                From DC to BACKUPDC
                Naming Context: DC=ForestDnsZones,DC=bannaridc,DC=com
                The replication generated an error (1256):
                The remote system is not available. For information about network troubleshooting, see Windows Help.
                The failure occurred at 2014-06-30 11:28:05.
                The last success occurred at 2014-05-12 09:23:27.
                1181 failures have occurred since the last success.
             REPLICATION LATENCY WARNING
             ERROR: Expected notification link is missing.
             Source DC
             Replication of new changes along this path will be delayed.
             This problem should self-correct on the next periodic sync.
             [Replications Check,BACKUPDC] A recent replication attempt failed:
                From DC to BACKUPDC
                Naming Context: DC=DomainDnsZones,DC=bannaridc,DC=com
                The replication generated an error (1256):
                The remote system is not available. For information about network troubleshooting, see Windows Help.
                The failure occurred at 2014-06-30 11:28:05.
                The last success occurred at 2014-05-12 09:33:40.
                1181 failures have occurred since the last success.
             REPLICATION LATENCY WARNING
             ERROR: Expected notification link is missing.
             Source DC
             Replication of new changes along this path will be delayed.
             This problem should self-correct on the next periodic sync.
             [Replications Check,BACKUPDC] A recent replication attempt failed:
                From DC to BACKUPDC
                Naming Context: CN=Schema,CN=Configuration,DC=bannaridc,DC=com
                The replication generated an error (5):
                Access is denied.
                The failure occurred at 2014-06-30 11:28:05.
                The last success occurred at 2014-05-12 09:23:26.
                1181 failures have occurred since the last success.
             [Replications Check,BACKUPDC] A recent replication attempt failed:
                From DC to BACKUPDC
                Naming Context: CN=Configuration,DC=bannaridc,DC=com
                The replication generated an error (5):
                Access is denied.
                The failure occurred at 2014-06-30 11:28:05.
                The last success occurred at 2014-05-12 09:23:26.
                1181 failures have occurred since the last success.
             REPLICATION LATENCY WARNING
             ERROR: Expected notification link is missing.
             Source DC
             Replication of new changes along this path will be delayed.
             This problem should self-correct on the next periodic sync.
             [Replications Check,BACKUPDC] A recent replication attempt failed:
                From DC to BACKUPDC
                Naming Context: DC=bannaridc,DC=com
                The replication generated an error (5):
                Access is denied.
                The failure occurred at 2014-06-30 11:28:05.
                The last success occurred at 2014-05-12 09:42:25.
                1477 failures have occurred since the last success.
             REPLICATION LATENCY WARNING
             ERROR: Expected notification link is missing.
             Source DC
             Replication of new changes along this path will be delayed.
             This problem should self-correct on the next periodic sync.
             REPLICATION-RECEIVED LATENCY WARNING
             BACKUPDC:  Current time is 2014-06-30 12:20:45.
                DC=ForestDnsZones,DC=bannaridc,DC=com
                   Last replication recieved from DC at 2014-05-12 09:23:27.
                DC=DomainDnsZones,DC=bannaridc,DC=com
                   Last replication recieved from DC at 2014-05-12 09:33:40.
                CN=Schema,CN=Configuration,DC=bannaridc,DC=com
                   Last replication recieved from DC at 2014-05-12 09:23:26.
                CN=Configuration,DC=bannaridc,DC=com
                   Last replication recieved from DC at 2014-05-12 09:23:26.
                DC=bannaridc,DC=com
                   Last replication recieved from DC at 2014-05-12 09:42:25.
             ......................... BACKUPDC passed test Replications
          Starting test: NCSecDesc
             ......................... BACKUPDC passed test NCSecDesc
          Starting test: NetLogons
             ......................... BACKUPDC passed test NetLogons
          Starting test: Advertising
             ......................... BACKUPDC passed test Advertising
          Starting test: KnowsOfRoleHolders
             ......................... BACKUPDC passed test KnowsOfRoleHolders
          Starting test: RidManager
             ......................... BACKUPDC passed test RidManager
          Starting test: MachineAccount
             ......................... BACKUPDC passed test MachineAccount
          Starting test: Services
             ......................... BACKUPDC passed test Services
          Starting test: ObjectsReplicated
             ......................... BACKUPDC passed test ObjectsReplicated
          Starting test: frssysvol
             ......................... BACKUPDC passed test frssysvol
          Starting test: frsevent
             ......................... BACKUPDC passed test frsevent
          Starting test: kccevent
             ......................... BACKUPDC passed test kccevent
          Starting test: systemlog
             ......................... BACKUPDC passed test systemlog
          Starting test: VerifyReferences
             ......................... BACKUPDC passed test VerifyReferences
       Running partition tests on : ForestDnsZones
          Starting test: CrossRefValidation
             ......................... ForestDnsZones passed test CrossRefValidation
          Starting test: CheckSDRefDom
             ......................... ForestDnsZones passed test CheckSDRefDom
       Running partition tests on : DomainDnsZones
          Starting test: CrossRefValidation
             ......................... DomainDnsZones passed test CrossRefValidation
          Starting test: CheckSDRefDom
             ......................... DomainDnsZones passed test CheckSDRefDom
       Running partition tests on : Schema
          Starting test: CrossRefValidation
             ......................... Schema passed test CrossRefValidation
          Starting test: CheckSDRefDom
             ......................... Schema passed test CheckSDRefDom
       Running partition tests on : Configuration
          Starting test: CrossRefValidation
             ......................... Configuration passed test CrossRefValidation
          Starting test: CheckSDRefDom
             ......................... Configuration passed test CheckSDRefDom
       Running partition tests on : bannaridc
          Starting test: CrossRefValidation
             ......................... bannaridc passed test CrossRefValidation
          Starting test: CheckSDRefDom
             ......................... bannaridc passed test CheckSDRefDom
       Running enterprise tests on : bannaridc.com
          Starting test: Intersite
             ......................... bannaridc.com passed test Intersite
          Starting test: FsmoCheck
             ......................... bannaridc.com passed test FsmoCheck
    Domain Controller Diagnosis
    Performing initial setup:
       Done gathering initial info.
    Doing initial required tests
       Testing server: Default-First-Site-Name\DC
          Starting test: Connectivity
             ......................... DC passed test Connectivity
    Doing primary tests
       Testing server: Default-First-Site-Name\DC
    DNS Tests are running and not hung. Please wait a few minutes...
       Running partition tests on : ForestDnsZones
       Running partition tests on : DomainDnsZones
       Running partition tests on : Schema
       Running partition tests on : Configuration
       Running partition tests on : bannaridc
       Running enterprise tests on : bannaridc.com
          Starting test: DNS
             ......................... bannaridc.com passed test DNS

    Hello,
    BEFORE doing any kind of restore!!!
    Please arrange ip settings on the DCs as:
    Windows IP Configuration
       Host Name . . . . . . . . . . . . : backupdc
       Primary Dns Suffix  . . . . . . . : bannaridc.com
       Node Type . . . . . . . . . . . . : Hybrid
       IP Routing Enabled. . . . . . . . : No
       WINS Proxy Enabled. . . . . . . . : No
       DNS Suffix Search List. . . . . . : bannaridc.com
    Ethernet adapter Local Area Connection 2:
       Connection-specific DNS Suffix  . :
       Description . . . . . . . . . . . : Broadcom BCM5708C NetXtreme II GigE (NDIS
     VBD Client) #2
       Physical Address. . . . . . . . . : 00-1A-64-D4-AF-AC
       DHCP Enabled. . . . . . . . . . . : No
       IP Address. . . . . . . . . . . . : 172.16.4.11
       Subnet Mask . . . . . . . . . . . : 255.255.0.0
       Default Gateway . . . . . . . . . : 172.16.4.5
       DNS Servers . . . . . . . . . . . : 172.16.4.1
    172.16.4.11   Primary WINS Server . . . . . . . : 172.16.4.11
    AND
     Host Name . . . . . . . . . . . . : DC
       Primary Dns Suffix  . . . . . . . : bannaridc.com
       Node Type . . . . . . . . . . . . : Hybrid
       IP Routing Enabled. . . . . . . . : No
       WINS Proxy Enabled. . . . . . . . : No
       DNS Suffix Search List. . . . . . : bannaridc.com
    Ethernet adapter Local Area Connection 2:
       Connection-specific DNS Suffix  . : 
       Description . . . . . . . . . . . : Broadcom BCM5708C NetXtreme II GigE (NDIS VBD Client) #2
       Physical Address. . . . . . . . . : 00-1A-64-25-A0-6A
       DHCP Enabled. . . . . . . . . . . : No
       IP Address. . . . . . . . . . . . : 172.16.4.1
       Subnet Mask . . . . . . . . . . . : 255.255.0.0
       Default Gateway . . . . . . . . . : 172.16.4.5
       DNS Servers . . . . . . . . . . . : 172.16.4.1
    172.16.4.11
       Primary WINS Server . . . . . . . : 172.16.4.11
    After the changes reboot "backupDC" and after that run ipconfig /flushdns and ipconfig /registerdns and restart the netlogon service on "DC".
    Now let it run some hours and then provide the following output files via SkyDrive:
    ipconfig /all >c:\ipconfig.log [from each DC/DNS Server]
    dcdiag /v /c /d /e /s:dcname >c:\dcdiag.log
    repadmin /showrepl dc* /verbose /all /intersite >c:\repl.log  ["dc* is a place holder for the starting name of the DCs if they all begin the same (if more then one DC exists)]
    dnslint /ad /s "DCipaddress" (http://support.microsoft.com/kb/321045)
    ADREPLSTATUS
    http://www.microsoft.com/en-us/download/details.aspx?id=30005 can also be exported to file.
    As the output will become large, DON'T post them into the thread, please use Windows OneDrive (onedrive.live.com) [with open access!] and add the link from it here. Also the /e in dcdiag
    scans the complete forest, so better run it on COB.
    Best regards
    Meinolf Weber
    MVP, MCP, MCTS
    Microsoft MVP - Directory Services
    My Blog: http://msmvps.com/blogs/mweber/
    Disclaimer: This posting is provided AS IS with no warranties or guarantees and confers no rights.

  • BEx Analyzer Report error - microsoft office excel is waiting for another

    Hi,
    I am running a query from BEx Analyzer, it is throwing the error as " microsoft office excel is waiting for another application to complete an ole action "
    Here in variable screen, I am trying to give input for the variables, then it is throwing the above error message.

    The error message you are receiving means that an Excel macro is waiting for another macro to finish in order to proceed. It is an informational message so you understand why the system is slower than expected.
    The solution is on the Microsoft side, see BOJ Note 1201513.
    From the MSDN link below, you will see a description of the Display
    Alerts Property:
    http://msdn.microsoft.com/en-us/library/aa194195(office.10).aspx
    DisplayAlerts Property
    wdAlertsNone No alerts or message boxes are displayed. If a macro encounters a message box, the default value is chosen and the macro continues.
    The Note suggests changing the "Application.DisplayAlerts = False" to "Application.DisplayAlerts = wdAlertsNone"

  • Getting an unusual error while running transaction for rebate settlement

    Hi Experts ,
    While i am running a customized transaction for vb7 that is rebate settlement , I have input field on agreement screen of payment method . Whenever , i put any value in that field and run the transaction , it gives me an error " Input values must be defined in Table T042Z. The value or
    values ' T ' are not specified in this table. " whereas when i check the table T042Z for payment method values , the values i m entering are present there . I cannot get why its showing this error .
    Could anyone plz help as its very urgent req ..
    Thanks in advance ..
    Ankit

    Ankit,
    Set a breakpoint very early in the program's soruce code.  When you hit that breakpoint in the debugger, go to the menu bar and choose Breakpoints > Breakpoint at > Statement .  Enter the word MESSAGE into that pop-up window and continue the program's execution.
    This will stop the debugger at all MESSAGE statements... Including the one that is generating your error.  You can then analyze the code just prior to that error.... and address the issue accordingly.

  • BEx Web Analyzer - runtime error

    I am running a query on BEx Web analyzer on local test WAS and getting runtime error below. The WAS is in on SP8 and BI on SP11. Is SP mismatch the problem?
    >
    Exception in BI runtime
    A:RSBOL:016 1 2
    Log ID: C000C0A80065009C0000000A000000B8000425994A2836C9
    Initial cause
    Message:
    Termination message sent ABEND RSBOL (016): A:RSBOL:016 1 2  MSGV1: 1  MSGV2: 2
    Stack trace:
    com.sap.ip.bi.base.application.exceptions.AbortMessageRuntimeException: Termination message sent ABEND RSBOL (016): A:RSBOL:016 1 2  MSGV1: 1  MSGV2: 2

    The error is because Java @ SP 8

Maybe you are looking for

  • Remote Desktop Client Update 3.8.2 v.11 remains in Software Update queue but, is listed (several times) under "Updates Installed in Last 30 Days.

    Remote Desktop Client Update 3.8.2 v.11 remains in Software Update queue but, is listed (several times) under "Updates Installed in Last 30 Days". This is also the case with HP Printer Software update 3.0 and Digital Camera RAW Compatibility Update 6

  • BW Hierarchies in OLAP?

    This is from another post regarding hierarchies in OLAP.  Currently in our system we have many many hierarchies that have been setup in BW, these range from Regions to Time based.  In this example I'm looking to utilize the Time based hierarchies in

  • Problem in creating Adobe form

    Hi,       I am creating Adobe interactive form in Transaction code SFP. I have created the interface .then  I have  transported and activated all the fields in context. After I click on layout , it is not displaying data view which contains all field

  • Adding a Repeating Field

    Can I add a repeating field in a PDF, one where the end user can select to duplicate a field when filling out a form? Thanks for your help! Jeff

  • Schedulling program in Background.

    Hi All, I have schedulled a program to be executed in back ground on a date greater than current date. While doing so, i have provided no of pages to be printed wrongly. Now i want to cancel/change only this no.of pages value. So to do this if i resc