Remote Management: "Failed to read remoting state" error

Hello,
I am facing the following error on my Windows Server 2012 Datacenter installation:
If I try to enable the Remote (Server) Management from the Server Manager UI I get the following error: "Internal Error: Failed to read remoting state. The system cannot find the file specified."
Has anyone else faced the same error? What could be the cause of this error?
Thank you in advance

Hi,
The issue which you are facing can be the result of security or authentication problems (such as attempting to manage a remote server in an untrusted domain, for example; or attempting to manage a server by using credentials that are not recognized as those
of an administrator on the remote server), or configuration problems (missing Windows PowerShell, remote management not enabled on the target server, etc.). For more information you can refer below article.
Windows Server 2012 - Server Manager
Troubleshooting Guide, Part II: Troubleshoot Manageability Status Errors in Server Manager
In addition if you want to enable Remote Management you can try to enable using command line or Windows Power Shell. Go through
this article for additional details.
To Enable through Command line & Windows Power-Shell (Run as Administrator):
Configure-SMRemoting.exe –enable
Hope it helps!
Thanks.
 

Similar Messages

  • SshException: Failed to read remote identification [Unknown cause]

    I have set up the cygwin server to run sftp in my project, but i got these exception, how should i solve it?
    Here is the exception :
    com.maverick.ssh.SshException: com.maverick.ssh.SshException
         at com.maverick.ssh.SshException.<init>(Unknown Source)
         at com.maverick.ssh.SshConnector.A(Unknown Source)
         at com.maverick.ssh.SshConnector.connect(Unknown Source)
         at com.maverick.ssh.SshConnector.connect(Unknown Source)
         at qrcom.util.EdtFTPClient.edtUploadFile(EdtFTPClient.java:182)
         at qrcom.SUPPORT.files.dao.local.FTP.CreateFTPFileEON.runFTPFile(CreateFTPFileEON.java:183)
         at qrcom.SUPPORT.files.dao.local.FTP.CreateFTPFileEON.initFTPFile(CreateFTPFileEON.java:129)
         at qrcom.SUPPORT.files.dao.local.FTP.CreateFTPFileEON.startReport(CreateFTPFileEON.java:101)
         at qrcom.SUPPORT.files.dao.local.FTP.CreateFTPFileEON.main(CreateFTPFileEON.java:1052)
    Caused by: com.maverick.ssh.SshException: Failed to read remote identification [Unknown cause]
         ... 9 more
    these is the function that i think causes it :
    public void edtUploadFile(String fileFullPath, String remoteFileName, ArrayList attachList, String strftpIP, String ftpPortNo, String strftpUserID, String strftpPwd, FTPMessage ftpMailMessage) throws FTPFileException, Exception{
    StringBuffer ftpMailMsg = new StringBuffer();
    FTPClient ftp = null;
    FTPMessageCollector listener = null;
    try
    * Create an SshConnector instance
    SshConnector con = SshConnector.getInstance();
    // Lets do some host key verification
    con.getContext(SshConnector.SSH2).setHostKeyVerification(new ConsoleKnownHostsKeyVerification("C:\\cygwin\\home\\wmlam\\.ssh\\known_hosts"));
    Ssh2Context ssh2Context = (Ssh2Context)con.getContext(SshConnector.SSH2);
    //ssh2Context.setPreferredPublicKey(Ssh2Context.PUBLIC_KEY_SSHDSS);
    ssh2Context.setPreferredPublicKey(Ssh2Context.PUBLIC_KEY_SSHRSA);
    * Connect to the host
    int port = Integer.parseInt(ftpPortNo);
    SocketTransport t = new SocketTransport(strftpIP, port);
    t.setTcpNoDelay(true);
    PublicKeyAuthentication pk = new PublicKeyAuthentication();
    SshPrivateKeyFile pkfile = SshPrivateKeyFileFactory.parse(new FileInputStream("C:\\cygwin\\home\\wmlam\\.ssh\\id_rsa"));
    SshKeyPair pair;
    if(pkfile.isPassphraseProtected()) {
    pair = pkfile.toKeyPair(Ssh2Context.PUBLIC_KEY_SSHRSA);
    } else
    pair = pkfile.toKeyPair(null);
    pk.setPrivateKey(pair.getPrivateKey());
    pk.setPublicKey(pair.getPublicKey());
    SshClient ssh = con.connect(t, strftpUserID);
    * Determine the version
    if(ssh instanceof Ssh1Client) {
    System.out.println(strftpIP + " is an SSH1 server!! SFTP is not supported");
    ssh.disconnect();
    System.exit(0);
    else
    System.out.println(strftpIP + " is an SSH2 server");
    Ssh2Client ssh2 = (Ssh2Client)ssh;
    * Authenticate the user using password authentication
    com.maverick.ssh.PasswordAuthentication pwd = new com.maverick.ssh.PasswordAuthentication();
    do {
    pwd.setPassword(strftpPwd);
    while(ssh2.authenticate(pwd)!=SshAuthentication.COMPLETE
    && ssh.isConnected());
    * Start a session and do basic IO
    if(ssh.isAuthenticated()) {
    SftpClient sftp = new SftpClient(ssh2);
    // Tell the client which EOL the remote client is using - note
    // that this will be ignored with version 4 of the protocol
    sftp.setRemoteEOL(SftpClient.EOL_LF);
    // Now put the file, the remote file should end up with all \r\n changed to \n
    //sftp.put(textFile.getAbsolutePath());
    sftp.put(fileFullPath+remoteFileName);
    * Now perform some binary operations
    sftp.setTransferMode(SftpClient.MODE_BINARY);
    * List the contents of the directory
    SftpFile[] ls = sftp.ls();
    for(int i=0;i<ls.length;i++) {
    ls.getParent();
    System.out.println(SftpClient.formatLongname(ls[i]));
    ftpMailMsg.append("<TABLE border=1 width=100% cellspacing=1 cellpadding=1>");
    ftpMailMsg.append("<TR>");
    ftpMailMsg.append("<TD width=60%> <b>CSMS</b></TD>");
    ftpMailMsg.append("<TD width=40%> <b>FTP</b></TD>");
    ftpMailMsg.append("</TR>");
    ftpMailMsg.append("<TR>");
    ftpMailMsg.append("<TD>"+fileFullPath+"</TD>");
    ftpMailMsg.append("<TD>"+remoteFileName+"</TD>");
    ftpMailMsg.append("</TR>");
    if(attachList!=null && !attachList.isEmpty()){
    Iterator iter = attachList.iterator();
    String [] strAtth;
    String strAtthPathAndName = "";
    String strAtthFTPServerFileName = "";
    for(int i=0; i<attachList.size();i++){
    strAtth = (String [])attachList.get(i);
    strAtthPathAndName = qrMisc.trim(strAtth[1]);
    strAtthFTPServerFileName = qrMisc.trim(strAtth[2]);
    sftp.setTransferMode(SftpClient.MODE_BINARY);
    sftp.put(strAtthPathAndName,strAtthFTPServerFileName);
    ftpMailMsg.append("<TR>");
    ftpMailMsg.append("<TD>"+strAtthPathAndName+"</TD>");
    ftpMailMsg.append("<TD>"+strAtthFTPServerFileName+"</TD>");
    ftpMailMsg.append("</TR>");
    ftpMailMsg.append("</TABLE>");
    if(ftpMailMessage!=null){
    String tmpFtpMailMsg = qrMisc.trim(ftpMailMsg.toString());
    ftpMailMessage.setFTPMessage(tmpFtpMailMsg);
    System.out.println("Test complete");
    ssh.disconnect();
    catch(FileNotFoundException exp){
    exp.printStackTrace();
         listener.logCommand("[FileNotFoundException]Error occur while transfering file :"+exp);
    writeToLog(listener.getLog());
    throw new FTPFileException("[FileNotFoundException] Error occur while transfering file :"+exp.toString());
    }catch(IOException exp){
    exp.printStackTrace();
         listener.logCommand("[IOException]Error occur while transfering file :"+exp);
    writeToLog(listener.getLog());
    throw new FTPFileException("[IOException] Error occur while transfering file :"+exp.toString());
    } catch (Exception exp) {
    exp.printStackTrace();
    listener.logCommand("[Exception]Error occur while transfering file :"+exp);
    writeToLog(listener.getLog());
    throw new FTPFileException("[Exception] Error occur while transfering file :"+exp.toString());
    the program stopped at this line, while trying to connect to ssh :
    SshClient ssh = con.connect(t, strftpUserID);
    Can i use ftp together with sftp? how can i solve this ?
    Edited by: gloria_lai on Dec 13, 2007 9:54 AM

    Hi,
    The issue which you are facing can be the result of security or authentication problems (such as attempting to manage a remote server in an untrusted domain, for example; or attempting to manage a server by using credentials that are not recognized as those
    of an administrator on the remote server), or configuration problems (missing Windows PowerShell, remote management not enabled on the target server, etc.). For more information you can refer below article.
    Windows Server 2012 - Server Manager
    Troubleshooting Guide, Part II: Troubleshoot Manageability Status Errors in Server Manager
    In addition if you want to enable Remote Management you can try to enable using command line or Windows Power Shell. Go through
    this article for additional details.
    To Enable through Command line & Windows Power-Shell (Run as Administrator):
    Configure-SMRemoting.exe –enable
    Hope it helps!
    Thanks.
     

  • Failed to toggle cbs state error

    I keep on getting cell broadcast:50 notifications and when I try to disable cell broadcast I am prompted with 'failed to toggle cbs state' error message. Is there a way that can help me get rid of those cell broadcast notifications!!

    simbaz10 wrote:
    I keep on getting cell broadcast:50 notifications and when I try to disable cell broadcast I am prompted with 'failed to toggle cbs state' error message. Is there a way that can help me get rid of those cell broadcast notifications!!
    Hub - More (3 dots) - Settings - Mobile Broadcast - Enable Mobile Broadcast = OFF

  • Remote Management fails on Windows 7 64-bit

    Hello,
    I am not having issues remote controlling any workstations other than the
    ones running the 64-bit version of Win7. The windows firewall has the
    Zenworks Remote Management listener added to the allow list so I am not sure
    what else I need to configure. If I disable the firewall I am able to
    remote control the machine so I am missing an inbound connection setting
    somewhere.
    Thanks,
    Ron

    Ron,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://forums.novell.com/

  • Dreaded "Operations Manager failed to start a process" error (2012 R2)

    I know this error has been covered many times, and on many topics, but this time mine is slightly different.   It's
    NOT the
    "SCOMpercentageCPUTimeCounter" error covered by Kevin Holman.
    Also, I am running SCOM 2012 R2 UR4 (7.1.10226.1046) and everything seems correctly patched (MS and agents), like
    suggested by Nicole Welch and Kevin Holman as well.
    So my environment is a fresh installation of SCOM 2012 R2, and I am transferring to this new Management Group, the monitored servers from our old SCOM 2012 "R1" (which I did not upgrade but rather made a brand new independent install).  So
    all servers aren't migrated yet, but I would like to solve this error before. This error did NOT happen in "R1", nor was it overridden (I imported the exact same Management Packs anyway).
    On 2012 R2, it happens on almost all new monitored machines, mainly Read-Only Domain Controllers (RODCs).
    Here is the kind of alert text I am getting:
    Het om 10:10:15 gestarte proces is beëindigd als gevolg van een uitvoerverzamelfout als gevolg van fout 0x80070057 :
    The parameter is incorrect.
    ; mogelijk zijn er gegevens verloren gegaan.
    Opdracht die is uitgevoerd: "C:\Windows\system32\cscript.exe" //nologo "C:\Program Files\Microsoft Monitoring Agent\Agent\Health Service State\Monitoring Host Temporary Files 193\24788\AD_Global_Catalog_Search_Response.vbs"
    RODC02.mydomain.be (objectCategory=DMD) false 4 {9E253FCB-8AAF-491F-CCA3-E632C6C2800C}
    Werkmap: C:\Program Files\Microsoft Monitoring Agent\Agent\Health Service State\Monitoring Host Temporary Files 193\24788\
    Dit is van invloed op een of meer werkstromen.
    Werkstroomnaam: Microsoft.Windows.Server.2008.AD.DomainController.GCSearchTime.Monitor
    Exemplaarnaam: RODC02
    Our servers have Belgian (Dutch) regional settings, hence the language. But check out the highlighted info in bold.
    The related event Number (in Alert Context) is 21404. Most other articles about this, mention 21402 or 21403. I suppose they all must be related but still, it's a new one here.
    There you have the failing VBS file. I checked all alerts and there seem to be different files concerned overall. Other examples:
    C:\Program Files\Microsoft Monitoring Agent\Agent\Health Service State\Monitoring Host Temporary Files 233\22737\AD_Database_and_Log.vbs    (from almost all RODCs)
    C:\Program Files\Microsoft Monitoring Agent\Agent\Health Service State\Monitoring Host Temporary Files 196\19876\Microsoft.Windows.Server.Legacy.FreeSpace.vbs
      (also from an RODC)
    C:\Program Files\Microsoft System Center 2012 R2\Operations Manager\Server\Health Service State\Monitoring Host Temporary Files 5891\338282\Microsoft.Windows.Server.CPUUtilization.Monitortype.vbs 95 15
    SCOM02.mydomain.be 1.4119384288787842     (this one is from my second Management Server..)
    Repeat count of the alert is 1 to 2 a day, so it's not nightmareish, but still, requires to be fixed. I suspect that even if there is a different VBS file concerned, since the eventID and the alert text are the same, the repeat count will just increase,
    not showing the last actual VBS concerned.
    I connect to each of these servers, and browse to the directory containing the file, and the folder is there, the file is there.  The error text mentions incorrect parameters but they still seem OK to me. 
    I found something which might be worth noting:  when browsing to the directory, be it on an RODC or on the SCOM server, I get a permission popup requiring some admin rights to do so - although I am using my domain admin (+SCOM+SQL+local
    admin everywhere) account:
    SCOM services use the Local System account to run, on every machine. I thought Local System shouldn't be concerned with these permissions popups, but normally the domain/local admins aren't either, yet I am.
    The "Health service" folder is the only one from the "C:\Program Files\Microsoft Monitoring Agent\Agent" folder to be concerned with this; I can browse without trouble to any other directory there.
    After a SCOM service stop, I renamed the "Health Service state" folder (as you can see on the screenshot, there is a "Health Service State bak" folder) and let the service recreate it after a restart, to ensure it was clean and with
    appropriate permissions , but it doesn't help.
    Might that be a clue?
    Or else what?  I'm getting confused and don't find a suitable solution.
    dd
    Bix

    On Thu, 4 Dec 2014 14:20:22 +0000, Bixessss wrote:
    I know this error has been covered many times, and on many topics, but this time mine is slightly different.   It's*NOT* the "SCOMpercentageCPUTimeCounter" error covered by Kevin Holman <http://blogs.technet.com/b/kevinholman/archive/2010/02/23/a-new-script-error-scompercentagecputimecounter-vbs-invalid-class.aspx>.
    Also, I am running *SCOM 2012 R2 UR4* (7.1.10226.1046) and everything seems correctly patched (MS and agents), likesuggested by Nicole Welch <http://nicolewelchscom.wordpress.com/2013/10/01/operations-manager-failed-to-start-a-process/>
    and Kevin Holman as well.
    This forum is for security issues related to Windows Server and not for
    System Center questions.
    Post your question in one of the following forums:
    https://social.technet.microsoft.com/Forums/systemcenter/en-US/home?category=systemcenteroperationsmanager
    Thanks.
    Paul Adare - FIM CM MVP
    Never trust a computer you can't lift. - Stan Masor

  • Failed to read parameter object - error in BO XI server

    Hi all,
    We have the enterprise edition of Business Objects server XI, which is available in the Solaris 10 machine. We try to upload the rpt file using the Central  Management Console Log in, at the time we got the following error.
    There was an error while retrieving data from the server: Failed to read data from report file /var/tmp/data_gen_letter.rpt63065d888163420.  Reason: Failed to read parameter object.
    Can anybodies help me on this, why this error has came.
    Thanks in advance.
    Regards,
    Vel.

    I am facing the same issue. I am using BO XI 3.1 (12.1.0) and CR 2008 (12.2.3.467)
    Initially I was getting "Failed to read parameter object"
    I found this resolution posted
    1. Log on to Business View Manager as administrator.
    2. Click View > Repository Explorer.
    3. Right-click Dynamic Cascading Prompts. Click Edit Rights.
    4. Click the appropriate user or group receiving the error. If the group is not present add them.
    5. Click the Granted option for the right to View, Edit & Set Security rights.
    6. Click OK. Close Business View Manager.
    I did the above steps. When I try to save the CR report the first time, the dynamic prompts get added to the Dynamic cascading prompt list in Buss View Mgr, but the report does not get save to BOE. I get an error
    Reason: Unable to launch c:\Program File\Business Objects\BusinessObjects Enterprise 12.0\win32_x86\ReportAdd program to add report to the system
    If I try to save the same report to BOE again, it gets saved with any error. SO, the first time I try only the dynamic prompts get saved, the next time the report.
    Any help on this please?

  • Failed to read parameter object error in BO server XI

    We have the enterprise edition of Business Objects server XI, which is available in the Solaris 10 machine. We try to upload the rpt file using the Central  Management Console Log in, at the time we got the following error.
    There was an error while retrieving data from the server: Failed to read data from report file /var/tmp/data_gen_letter.rpt63065d888163420.  Reason: Failed to read parameter object.
    Can anybodies help me on this, why this error has came.
    Thanks in advance.
    Regards,
    Vel.

    Hi,
    the problem has to do with the permissions on dynamic prompts. Eventually you can solve this by setting the permissions on the prompts using the Business View Manager. (CrystalBVM.exe: to be found in BOBJ client installations on windows)
    Do your report fetch data from an SAP R/3 system?
    Regards,
    Stratos

  • Failed to read PREINST6.swm error code 020150-20-00000000

    I have made three attempts to create the recovery disks from an out-of-the box Satellite E205-S1904. Each time, the Recover Media Center gets about 80% complete on the first DVD burn, judging from the status bar, and then crashes with the message: Failed to read the following file: D:\ZZImages\ZZImages\PREINST6.SUM Error code: 020150-20-00000000 How can I recover/work around so that I can burn the recovery disks? Thanks. --Steve

    More digging on the Internet indicated this error might be due to bad media. Tried a new batch and different brand of DVDs and the Recovery disks burned as advertised.

  • Server Manager fails to load with the error "A device attached to the system is not functioning"

    I'm at a dead end on this.  I can't find anything online that involves this error and the Server Manager and I cannot find anything in the event viewer being generated from this error.

    I am constantly seeing this error at multiple sites on Windows Server 2012 and 2012 R2 Standard and DataCenter.
    I have counted over 50 different server I manage with services such as   domain controller, hyper-v, file servers, exchange 2013, SQL 2008/2012, and print servers.
    I have seen it happen on machine that have been in production for over 2 years and to machines that were just created last week.
    It is happening on metal, hyper-v and esx vmware servers.
    It is happening when the machine have updates waiting or no updates, or after updates have been applied and awaiting a restart.
    It is happening on Dell PowerEdge server, HP Proliant servers and IBM servers.
    It is happening on servers with Intel and AMD chip-sets.
    It is happening on machines that are a part of a domain or in a workgroup.
    It is happening on machines with AV of Bitdefendor, Trend Micro, Vipre, Microsoft Endpoint, and Symantec Endpoint.
    Only a restart will fix it.
    I have ran process monitor on several of the problem machines and I cannot find anything.
    Since I have only started seeing this about 6 month ago it must be a Windows update causing it.
    Moses Hull of Alexant Systems

  • 1456: The remote management agent is unable

    Hi
    I have :
    Server NW6.5 Sp5
    Zenworks desktop 6.5 SP2
    Client NT4 SP6 - Client novell 4.90 SP2
    W2000 SP4 - Client novell 4.91 SP2 - Agent Zen SP2
    WXP SP2 - Client novell 4.91 SP2 - Agent Zen SP2
    The problem is that I can't connet with "remote management" some PC with XP;
    The error in log file is:
    #(464)# 10.16.27 02/16/06 Normal : Loading :
    C:\Programmi\Novell\ZENworks\WMSchApi.dll
    #(464)# 10.16.27 02/16/06 Critical : Workstation NOT yet authenticated...
    #(464)# 10.16.27 02/16/06 Critical : ZENNDSUtil: initializeContext()
    failed...
    #(464)# 10.16.27 02/16/06 Normal : Reading workstation DN and tree name...
    #(464)# 10.16.27 02/16/06 Normal : workstation DN -
    PC01-WINXP-00:0B:CD:F8:F2:44., treename - TREE_GROUP
    #(464)# 10.16.27 02/16/06 Normal : Loading :
    C:\Programmi\Novell\ZENworks\WMSchApi.dll
    #(464)# 10.16.27 02/16/06 Critical : Workstation NOT yet authenticated...
    #(464)# 10.16.27 02/16/06 Critical : ZENNDSUtil: initializeContext()
    failed...
    #(464)# 10.16.27 02/16/06 Normal : Neither policy settings active. All
    operations disabled.
    #(464)# 10.16.27 02/16/06 Normal : ZENNDSUtil: Finished reading policies
    #(464)# 10.16.27 02/16/06 Normal : ZENNDSUtil: Unloaded modules...
    #(464)# 10.16.27 02/16/06 Normal : UnLoadZenAutilLibrary :Successfully
    unloaded ZenAutil.dll
    #(464)# 10.17.48 02/16/06 Normal : RMSessionFinished - Begin
    If I check if the ogject workstation is authenticated on NDS, I not find the
    connection.
    I can connect only with che workstation that are list in connection.
    Why some workstation connect to NDS ?
    Thanks for help.
    Gianluigi

    Try deleting the workstation object and reboot the workstation (sometimes
    a 2nd reboot is required).
    > Hi
    >
    > Another information, if I use only the agent with out client novell, I
    have
    > no problem because the workstation is connect to NDS.
    > If I want use client novell and Middle Tier is possible set Middle Tier
    how
    > default connection for remote manager ?
    >
    > Thank
    >
    > Gianluigi
    >
    > "Gianluigi Cortinovis" <[email protected]> ha scritto nel messaggio
    > news:[email protected]...
    > > No, I have disable windows firewall.
    > >
    > > Gianluigi
    > >
    > > "craig wilson" <[email protected]> ha scritto nel messaggio
    > > news:[email protected]...
    > >> Windows Firewall perhaps?
    > >>
    > >> --
    > >> Craig Wilson
    > >> Novell Product Support Forum Sysop
    > >> Master CNE, MCSE 2003, CCNA
    > >>
    > >> Editor - http://www.ithowto.com
    > >>
    > >> (Seeking Full-Time Expert? Drop me a note :> )
    > >>
    > >>
    > >> "Gianluigi Cortinovis" <[email protected]> wrote in message
    > >> news:[email protected]...
    > >>> Hi
    > >>>
    > >>> I have :
    > >>> Server NW6.5 Sp5
    > >>> Zenworks desktop 6.5 SP2
    > >>>
    > >>> Client NT4 SP6 - Client novell 4.90 SP2
    > >>> W2000 SP4 - Client novell 4.91 SP2 - Agent Zen SP2
    > >>> WXP SP2 - Client novell 4.91 SP2 - Agent Zen SP2
    > >>>
    > >>>
    > >>> The problem is that I can't connet with "remote management" some PC
    with
    > >>> XP;
    > >>> The error in log file is:
    > >>>
    > >>> #(464)# 10.16.27 02/16/06 Normal : Loading :
    > >>> C:\Programmi\Novell\ZENworks\WMSchApi.dll
    > >>> #(464)# 10.16.27 02/16/06 Critical : Workstation NOT yet
    > >>> authenticated...
    > >>> #(464)# 10.16.27 02/16/06 Critical : ZENNDSUtil: initializeContext
    > >>> failed...
    > >>> #(464)# 10.16.27 02/16/06 Normal : Reading workstation DN and tree
    > >>> name...
    > >>> #(464)# 10.16.27 02/16/06 Normal : workstation DN -
    > >>> PC01-WINXP-00:0B:CD:F8:F2:44., treename - TREE_GROUP
    > >>> #(464)# 10.16.27 02/16/06 Normal : Loading :
    > >>> C:\Programmi\Novell\ZENworks\WMSchApi.dll
    > >>> *******************************************
    > >>> #(464)# 10.16.27 02/16/06 Critical : Workstation NOT yet
    > >>> authenticated...
    > >>> #(464)# 10.16.27 02/16/06 Critical : ZENNDSUtil: initializeContext
    > >>> failed...
    > >>> *******************************************
    > >>> #(464)# 10.16.27 02/16/06 Normal : Neither policy settings active.
    All
    > >>> operations disabled.
    > >>> #(464)# 10.16.27 02/16/06 Normal : ZENNDSUtil: Finished reading
    policies
    > >>> #(464)# 10.16.27 02/16/06 Normal : ZENNDSUtil: Unloaded modules...
    > >>> #(464)# 10.16.27 02/16/06 Normal :
    UnLoadZenAutilLibrary :Successfully
    > >>> unloaded ZenAutil.dll
    > >>> #(464)# 10.17.48 02/16/06 Normal : RMSessionFinished - Begin
    > >>>
    > >>>
    > >>> If I check if the ogject workstation is authenticated on NDS, I not
    find
    > >>> the connection.
    > >>>
    > >>> I can connect only with che workstation that are list in connection.
    > >>>
    > >>> Why some workstation connect to NDS ?
    > >>>
    > >>> Thanks for help.
    > >>>
    > >>> Gianluigi
    > >>>
    > >>>
    > >>
    > >>
    > >
    > >
    >
    >

  • DRM Process Manager failed to start with error Timeout starting the following process: NetJNIBridge.

    When we Start the DRM  DRM Process Manager failed to start with following error
    [Process ID: 3948, Thread ID: 1, Process Manager]
    Error loading the NetJNIBridge host process on machine: EU9SC1WNW001
    System.Exception: Error loading the NetJNIBridge host process on machine: EU9SC1WNW001 ---> Oracle.Drm.Exceptions.ResourcedException`1[Oracle.Drm.Messages.MsgsProcessManager]: DRM-61028: The following unexpected error occurred communicating with URL 'EU9SC1WNW001': DRM-61023: Timeout starting the following process: NetJNIBridge. DRM Process ID: b3e602fa-f6c1-abcc-4af7-c0a99b51b235
       at Oracle.Drm.ProcessManager.Program.ServiceMethod(String machineName, UInt16 port, Action`1 action)
       at Oracle.Drm.ProcessManager.Program.StartNonEngineProcesses()
    After 11.1.2.3 DRM upgrade

    OS:linux
    i am getting error in installing OPMN manually
    when trying to installing OPMN manually getting error i.e,
    opmnctl: starting opmn and all managed processes...
    opmnctl: opmn start failed
    when checked opmn/logs:
    opmn.log is empty
    ons.log showing error ie:
    13/06/17 19:22:45 [4] ONS server initiated
    13/06/17 19:22:45 [2] 10.209.178.16:6200 - thread create failed
    ipm.log shoeing error i.e:
    13/06/18 11:58:04 [4] OPMN server ready.  Request handling enabled.
    13/06/18 11:58:16 [4] PM state directory exists: /u02/app/orapp/product/10.1.2/opmn/logs/states
    13/06/18 11:58:16 [4] PM state file does not exist: /u02/app/orapp/product/10.1. 2/opmn/logs/states/.opmndat
    any idea why it is showing error??

  • ZCM 10.3.1 and remote management from Opensuse 11.3

    Hi,
    I am have finally started to test ZCM as I am a die hard ZEN 7.0 fan...
    Anyhow I like the concept of being able to remote control from Linux.
    However I am running 64bit OpenSuse. Anyone know how I can get this
    working?
    Every time I try to remote manage it tells me to install the remote
    management viewer(from Linux) It works fine from Windows
    The install seems to install correctly.
    Anyone know what I have done wrong or what I need to do to get this to
    work..
    Oh I also run KDE4
    Thanks

    On 21/09/10 5:36 PM, thsundel wrote:
    >
    > Peter Norris;2024697 Wrote:
    >> Hi,
    >>
    >> I am have finally started to test ZCM as I am a die hard ZEN 7.0 fan...
    >>
    >> Anyhow I like the concept of being able to remote control from Linux.
    >> However I am running 64bit OpenSuse. Anyone know how I can get this
    >> working?
    >>
    >> Every time I try to remote manage it tells me to install the remote
    >> management viewer(from Linux) It works fine from Windows
    >>
    >> The install seems to install correctly.
    >>
    >> Anyone know what I have done wrong or what I need to do to get this to
    >> work..
    >>
    >> Oh I also run KDE4
    >>
    >> Thanks
    >
    > Don't think openSUSE is supported but you could try reading this:
    > 'Novell Doc: ZENworks 10 Configuration Management Remote Management
    > Reference - Installing the Remote Management Viewer'
    > (http://www.novell.com/documentation/...a/biydyk4.html)
    > It requires you to install glitz package.
    >
    > Thomas
    >
    >
    Yeah figured that was going to be the answer. I installed the glitz
    package, but it doesn't work. Oh well just thought I would see if
    anyone else has it working, I have a SLES 11 server we run FreeNX on, so
    I guess we can use that..
    Cheers

  • Need Help in Remote Manager and OIM Configuration

    Guys,
    I am using OIM9.1.01 with Exchange 2010 , currently i have installed my remote manager on Exchange server, and its working fine. Now client want to remove Remote Manager from exchange server , and to be get install on some other server.
    will it possible to install Remote Manager on some other server than OIM and Exchange , if yes , how do i proceed with that.
    Thanks.

    Thanks Nishith Sirji,
    I am confuse about one thing , how do remote manager will understand "which database server is he going to create mailbox"? because currently I am executing powershell on exechange system only ,so no problem. but when i will installl it on some other system, how do my RM will know , where to create Maiilbox (which machine).
    do i need to configure my exchange box details anywhr in Remote Manager?
    Thanks.

  • Dgidx error  ... XMLParser: failed to read record data

    Have looked at a similar discussion https://community.oracle.com/thread/3555623
    And we too have just created a 1Gb file for the first time. We dont have any new versions of the MDEX or Platform Services that could cause incompatibility issues.
    Our baseline is failing in our staging environment
    the Dgidx log contains these error details ...
    Property["thisSite"]: Value[000000001C84D350] "KANDCO"
    Rec 402,011 records       6,300,000 text fields          69,150,465 entries
    Rec 408,797 records       6,400,000 text fields          69,907,942 entries
    .Rec 415,471 records       6,500,000 text fields          70,825,125 entries
    Rec 422,047 records       6,600,000 text fields          71,903,843 entries
    Rec 427,876 records       6,700,000 text fields          73,110,468 entries
    Rec 433,626 records       6,800,000 text fields          74,279,227 entries
    Rec 440,450 records       6,900,000 text fields          75,340,092 entries
    Rec 447,388 records       7,000,000 text fields          76,817,152 entries
    Rec 454,230 records       7,100,000 text fields          78,225,065 entries
    ERROR  07/03/14 07:43:47.086 UTC (1404373427086)        DGIDX   {dgidx,baseline}               Property detected with an empty or NULL name while parsing binary records. Properties without names are not allowed in this system.        
    ERROR  07/03/14 07:43:47.086 UTC (1404373427086)        DGIDX   {dgidx,baseline}               Error parsing the record property name   
    ERROR  07/03/14 07:43:47.086 UTC (1404373427086)        DGIDX   {dgidx,baseline}               Error parsing record property.   
    ERROR  07/03/14 07:43:47.086 UTC (1404373427086)        DGIDX   {dgidx,baseline}               Error reading record properties.               
    ERROR  07/03/14 07:43:47.086 UTC (1404373427086)        DGIDX   {dgidx,baseline}               XMLParser: failed to read record data      
    ERROR  07/03/14 07:43:47.117 UTC (1404373427110)        DGIDX   {dgidx,baseline}               XMLParser: failed to read records                
    FATAL   07/03/14 07:43:47.117 UTC (1404373427110)        DGIDX   {dgidx,baseline}               Binary record parsing of file 'C:\Endeca\Apps\liveISMEen\data\forge_output\\SDGen-sgmt0.records.binary' unsuccessful.
    The baseline log contains this info ...
    Jul 3, 2014 8:43:54 AM com.endeca.soleng.eac.toolkit.script.Script runBeanShellScript
    SEVERE: Batch component 'Dgidx' failed. Refer to component logs in C:\Endeca\Apps\liveISMEen\config\script\..\..\.\logs\dgidxs\Dgidx on host ITLHost.
    Occurred while executing line 81 of valid BeanShell script:
    78|        Forge.archiveLogDir();
    79|        Forge.run();
    80|        Dgidx.archiveLogDir();
    81|        Dgidx.run();
    82|       
    83|        // distributed index, update Dgraphs
    84|        DistributeIndexAndApply.run();
    Jul 3, 2014 8:43:54 AM com.endeca.soleng.eac.toolkit.Controller execute
    SEVERE: Caught an exception while invoking method 'run' on object 'BaselineUpdate'. Releasing locks.
    java.lang.reflect.InvocationTargetException
                    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
                    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                    at java.lang.reflect.Method.invoke(Method.java:597)
                    at com.endeca.soleng.eac.toolkit.Controller.invokeRequestedMethod(Controller.java:923)
                    at com.endeca.soleng.eac.toolkit.Controller.execute(Controller.java:208)
                    at com.endeca.soleng.eac.toolkit.Controller.main(Controller.java:87)
    Caused by: com.endeca.soleng.eac.toolkit.exception.AppControlException: Error executing valid BeanShell script.
                    at com.endeca.soleng.eac.toolkit.script.Script.runBeanShellScript(Script.java:132)
                    at com.endeca.soleng.eac.toolkit.script.Script.run(Script.java:80)
                    ... 7 more
    Caused by: com.endeca.soleng.eac.toolkit.exception.EacComponentControlException: Batch component  'Dgidx' failed. Refer to component logs in C:\Endeca\Apps\liveISMEen\config\script\..\..\.\logs\dgidxs\Dgidx on host ITLHost.
                    at com.endeca.soleng.eac.toolkit.component.BatchComponent.run(BatchComponent.java:77)
                    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
                    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                    at java.lang.reflect.Method.invoke(Method.java:597)
                    at bsh.Reflect.invokeMethod(Unknown Source)
                    at bsh.Reflect.invokeObjectMethod(Unknown Source)
                    at bsh.Name.invokeMethod(Unknown Source)
                    at bsh.BSHMethodInvocation.eval(Unknown Source)
                    at bsh.BSHPrimaryExpression.eval(Unknown Source)
                    at bsh.BSHPrimaryExpression.eval(Unknown Source)
                    at bsh.BSHBlock.evalBlock(Unknown Source)
                    at bsh.BSHBlock.eval(Unknown Source)
                    at bsh.BSHBlock.eval(Unknown Source)
                    at bsh.BSHIfStatement.eval(Unknown Source)
                    at bsh.Interpreter.eval(Unknown Source)
                    at bsh.Interpreter.eval(Unknown Source)
                    at bsh.Interpreter.eval(Unknown Source)
                    at com.endeca.soleng.eac.toolkit.script.Script.runBeanShellScript(Script.java:118)
                    ... 8 more

    Have looked at a similar discussion https://community.oracle.com/thread/3555623
    And we too have just created a 1Gb file for the first time. We dont have any new versions of the MDEX or Platform Services that could cause incompatibility issues.
    Our baseline is failing in our staging environment
    the Dgidx log contains these error details ...
    Property["thisSite"]: Value[000000001C84D350] "KANDCO"
    Rec 402,011 records       6,300,000 text fields          69,150,465 entries
    Rec 408,797 records       6,400,000 text fields          69,907,942 entries
    .Rec 415,471 records       6,500,000 text fields          70,825,125 entries
    Rec 422,047 records       6,600,000 text fields          71,903,843 entries
    Rec 427,876 records       6,700,000 text fields          73,110,468 entries
    Rec 433,626 records       6,800,000 text fields          74,279,227 entries
    Rec 440,450 records       6,900,000 text fields          75,340,092 entries
    Rec 447,388 records       7,000,000 text fields          76,817,152 entries
    Rec 454,230 records       7,100,000 text fields          78,225,065 entries
    ERROR  07/03/14 07:43:47.086 UTC (1404373427086)        DGIDX   {dgidx,baseline}               Property detected with an empty or NULL name while parsing binary records. Properties without names are not allowed in this system.        
    ERROR  07/03/14 07:43:47.086 UTC (1404373427086)        DGIDX   {dgidx,baseline}               Error parsing the record property name   
    ERROR  07/03/14 07:43:47.086 UTC (1404373427086)        DGIDX   {dgidx,baseline}               Error parsing record property.   
    ERROR  07/03/14 07:43:47.086 UTC (1404373427086)        DGIDX   {dgidx,baseline}               Error reading record properties.               
    ERROR  07/03/14 07:43:47.086 UTC (1404373427086)        DGIDX   {dgidx,baseline}               XMLParser: failed to read record data      
    ERROR  07/03/14 07:43:47.117 UTC (1404373427110)        DGIDX   {dgidx,baseline}               XMLParser: failed to read records                
    FATAL   07/03/14 07:43:47.117 UTC (1404373427110)        DGIDX   {dgidx,baseline}               Binary record parsing of file 'C:\Endeca\Apps\liveISMEen\data\forge_output\\SDGen-sgmt0.records.binary' unsuccessful.
    The baseline log contains this info ...
    Jul 3, 2014 8:43:54 AM com.endeca.soleng.eac.toolkit.script.Script runBeanShellScript
    SEVERE: Batch component 'Dgidx' failed. Refer to component logs in C:\Endeca\Apps\liveISMEen\config\script\..\..\.\logs\dgidxs\Dgidx on host ITLHost.
    Occurred while executing line 81 of valid BeanShell script:
    78|        Forge.archiveLogDir();
    79|        Forge.run();
    80|        Dgidx.archiveLogDir();
    81|        Dgidx.run();
    82|       
    83|        // distributed index, update Dgraphs
    84|        DistributeIndexAndApply.run();
    Jul 3, 2014 8:43:54 AM com.endeca.soleng.eac.toolkit.Controller execute
    SEVERE: Caught an exception while invoking method 'run' on object 'BaselineUpdate'. Releasing locks.
    java.lang.reflect.InvocationTargetException
                    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
                    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                    at java.lang.reflect.Method.invoke(Method.java:597)
                    at com.endeca.soleng.eac.toolkit.Controller.invokeRequestedMethod(Controller.java:923)
                    at com.endeca.soleng.eac.toolkit.Controller.execute(Controller.java:208)
                    at com.endeca.soleng.eac.toolkit.Controller.main(Controller.java:87)
    Caused by: com.endeca.soleng.eac.toolkit.exception.AppControlException: Error executing valid BeanShell script.
                    at com.endeca.soleng.eac.toolkit.script.Script.runBeanShellScript(Script.java:132)
                    at com.endeca.soleng.eac.toolkit.script.Script.run(Script.java:80)
                    ... 7 more
    Caused by: com.endeca.soleng.eac.toolkit.exception.EacComponentControlException: Batch component  'Dgidx' failed. Refer to component logs in C:\Endeca\Apps\liveISMEen\config\script\..\..\.\logs\dgidxs\Dgidx on host ITLHost.
                    at com.endeca.soleng.eac.toolkit.component.BatchComponent.run(BatchComponent.java:77)
                    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
                    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
                    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
                    at java.lang.reflect.Method.invoke(Method.java:597)
                    at bsh.Reflect.invokeMethod(Unknown Source)
                    at bsh.Reflect.invokeObjectMethod(Unknown Source)
                    at bsh.Name.invokeMethod(Unknown Source)
                    at bsh.BSHMethodInvocation.eval(Unknown Source)
                    at bsh.BSHPrimaryExpression.eval(Unknown Source)
                    at bsh.BSHPrimaryExpression.eval(Unknown Source)
                    at bsh.BSHBlock.evalBlock(Unknown Source)
                    at bsh.BSHBlock.eval(Unknown Source)
                    at bsh.BSHBlock.eval(Unknown Source)
                    at bsh.BSHIfStatement.eval(Unknown Source)
                    at bsh.Interpreter.eval(Unknown Source)
                    at bsh.Interpreter.eval(Unknown Source)
                    at bsh.Interpreter.eval(Unknown Source)
                    at com.endeca.soleng.eac.toolkit.script.Script.runBeanShellScript(Script.java:118)
                    ... 8 more

  • Hyper-V host fails with "RPC Server unavailable" error when I try to promote Windows Server in virtual machine to a domain controller

    Host: Windows Server 2012 R2 with Hyper-V and RRAS (for Internet over NAT)
    VM: Windows Server 2012 R2 with installed Active Directory Domain Services
    When I open AD DS configuration window (“promote this server to a domain controller”) many services and programs on my host (include Hyper-V, RRAS & Server Manager) fails with RPC Server unavailable error.

    Hello Aleksandr,
    There wasn't any configuration information, ipconfig /all, network setup, etc. So it's difficult to tell.
    More importantly, are you trying to promote the host server? If yes, that is not advised, for one, because it's a Hyper-V server, (not suggested at all), and two, RRAS is installed. RRAS is problematic with any domain controller because it turns it into
    a multihomed domain controller.
    Active Directory communication fails on multihomed domain controllers
    http://support.microsoft.com/kb/272294/
    Multihomed DCs (with more than one unteamed NIC or multiple IPs) with DNS, RRAS, iSCSI, Clustering interfaces, management interfaces, backup interfaces, and/or PPPoE adapters - A multihomed DC is not a recommended configuration, however there are ways to
    configure a DC with registry mods:
    http://blogs.msmvps.com/acefekay/2009/08/17/multihomed-dcs-with-dns-rras-and-or-pppoe-adapters/
    7 Reasons not to Make Hyper-V a Domain Controller
    http://www.altaro.com/hyper-v/reasons-not-to-make-hyper-v-a-domain-controller/
    Domain Controller as Hyper-V host
    https://social.technet.microsoft.com/Forums/windowsserver/en-US/4ff14bec-a815-473b-8d2a-33e91e17197b/domain-controller-as-hyperv-host?forum=winserverhyperv
    Networking?
    I don't know how your networking is setup, whether there are multiple NICs on the host server, if they are teamed, if you have the host interface set to allow the operating system to share administration, or if there are separate interfaces for each. Can
    the host OS ping/communicate with the DC virtual machine?
    If there are more than one NIC, you have the choice to team the NICs and share the Teamed NICs for the Hyper-V OS and the VMs, or keep them separate where one is devoted for the Hyper-V OS, and one for the VMs.
    Hyper-V Server VLAN Network Configuration
    https://social.technet.microsoft.com/Forums/windowsserver/en-US/0aa71d2a-ebf9-4a3e-bbf5-94db55339fa2/hyperv-server-vlan-network-configuration?forum=winserverhyperv 
    Recommendation:
    Why not just create another VM DC?
    Ace Fekay
    MVP, MCT, MCSE 2012, MCITP EA & MCTS Windows 2008/R2, Exchange 2013, 2010 EA & 2007, MCSE & MCSA 2003/2000, MCSA Messaging 2003
    Microsoft Certified Trainer
    Microsoft MVP - Directory Services
    Complete List of Technical Blogs: http://www.delawarecountycomputerconsulting.com/technicalblogs.php
    This posting is provided AS-IS with no warranties or guarantees and confers no rights.

Maybe you are looking for

  • HT4623 I can't active the IP after update

    My IP is 3GS. After i update it to IOS 6.1.2, I can't active if although I have connected to Internet.

  • Auto detecting projector resolution?

    my wife teaches college and uses an overhead projector often. i'm trying to get her to use her macbook and keynote so she can use the remote (she takes her macbook to school anyway), but whenever she plugs it in, the projector shows the wrong resolut

  • Generating a blank document with custom code

    Is there a way I can generate a blank document with custom code in it?  I have been looking at several methods of doing this but so far I have been unsuccessful.  So any assistance here would be appreciated.  This is for an extension I am currently w

  • Best way to hide symbols when they're on the stage, but invisible?

    I have multiple symbols linked to buttons with .click events... The problem I'm having is that when I've animated the contents of the symbol with opacity down to zero, etc, but the symbol itself remains on the Stage, and it blocks other layers' text

  • IChart x-axis labels

    I'm having some issues with the x-axis labels on an iChart. The data I'm trying to display returns a date column I want to use as the x-axis labels. The data returned looks similar to the following: MY_DATE | project1 | project2 | project3 .... Where