Agent is ShutDown

Hi...
I have seen a few message about the Agent is shutdown. Why this is happened ?. Is it the ODI was down ? How to check this ?
The log as below:-
SnpsConnection.disconnet : Unable to close connection oracle.jdbc.driver.T4CConnection@ee0da83
SnpsConnection.disconnet : Unable to close connection oracle.jdbc.driver.T4CConnection@4c29d616
SnpsConnection.disconnet : Unable to close connection oracle.jdbc.driver.T4CConnection@4ea6656a
SnpsConnection.disconnet : Unable to close connection oracle.jdbc.driver.T4CConnection@e4c3a7d
SnpsConnection.disconnet : Unable to close connection oracle.jdbc.driver.T4CConnection@2e93ebe0
SnpsConnection.disconnet : Unable to close connection oracle.jdbc.driver.T4CConnection@7162d703
SnpsConnection.disconnet : Unable to close connection oracle.jdbc.driver.T4CConnection@1012401d
SnpsConnection.disconnet : Unable to close connection oracle.jdbc.driver.T4CConnection@1e2f3829
SnpsConnection.disconnet : Unable to close connection oracle.jdbc.driver.T4CConnection@2e101b3a
SnpsConnection.disconnet : Unable to close connection oracle.jdbc.driver.T4CConnection@236b9476
SnpsConnection.disconnet : Unable to close connection oracle.jdbc.driver.T4CConnection@6bdfe124
06/06/2010 12:30:16 PM(DwgCmdExecutionThread): DwgCmdNetworkCall : Command Preparion
06/06/2010 12:30:16 PM(DwgCmdExecutionThread): DwgCmdNetworkCall : Command Preparion OK
06/06/2010 12:30:16 PM(DwgCmdExecutionThread): DwgCmdNetworkCall : Before Prepare Prepare Command Ack
06/06/2010 12:30:16 PM(DwgCmdExecutionThread): DwgCmdNetworkCall : Prepare Prepare Command Ack sent !
06/06/2010 12:30:16 PM(DwgCmdExecutionThread): DwgCmdNetworkCall : Berfore Execute Command
Agent is ShutDown
Starting Oracle Data Integrator Agent...
Version : 10.1.3.4.4_02 - 23/07/2008 11:47
06/06/2010 12:32:26 PM(main): Server Launched
06/06/2010 12:33:30 PM(DwgCmdExecutionThread): DwgCmdNetworkCall : Command Preparion
06/06/2010 12:33:30 PM(DwgCmdExecutionThread): Creating session for scenario:TDC_WAIT_FOR_LUCENT_FILE - 001
06/06/2010 12:33:31 PM(DwgCmdExecutionThread): DwgCmdNetworkCall : Command Preparion OK
06/06/2010 12:33:31 PM(DwgCmdExecutionThread): DwgCmdNetworkCall : Before Prepare Prepare Command Ack
06/06/2010 12:33:31 PM(DwgCmdExecutionThread): DwgCmdNetworkCall : Prepare Prepare Command Ack sent !
06/06/2010 12:33:31 PM(DwgCmdExecutionThread): DwgCmdNetworkCall : Berfore Execute Command
06/06/2010 12:33:31 PM(DwgCmdExecutionThread): Session : 7755834231 is running

Hi..
I have run the command as below and its look the agent is running. But why the message displayed ?
ps -ef |grep age
nv2am 18688 1 0 Jun 6 ? 0:00 /bin/sh /acec/nv2am/bin/agent.sh -PORT=20911 -NAME=TdC_Agent -V=1
nv2am 18685 1 0 Jun 6 ? 0:00 /bin/sh /acec/nv2am/bin/agent.sh -PORT=20912 -NAME=TFM_Agent -V=1
nv2am 18691 1 0 Jun 6 ? 0:00 /bin/sh /acec/nv2am/bin/agent.sh -PORT=20913 -NAME=RND_Agent -V=1
nv2am 18696 1 0 Jun 6 ? 0:00 /bin/sh /acec/nv2am/bin/agent.sh -PORT=20923 -NAME=Neax_Agent -V=1
nv2am 18682 1 0 Jun 6 ? 0:00 /bin/sh /acec/nv2am/bin/agent.sh -NAME=NV2_Agent -V=1
Thank you,
Baharin

Similar Messages

  • Remote system shutdown

    Hi,
    I'll try to be as short as possible. I need a bacth or command file to shut a system down located in my network. The batch file needs to be opened by another program called PowerChute Business Edition use by APC for UPS systems.
    I have the following. I can make a batch and command file that will log me onto the remote device and then shut down the device.
    net use \\computername /user:administrator password
    shutdown.exe -s -m \\computername -t 60When I just double click on the batchfile, it runs and the remote device opens a window saying that it will be shut down in 60 seconds.
    Only when my program opens the file, the action doesn't happen.
    I tried several other things
    NET SEND
    opening a program with CALL and START
    time /t >> c:\timelog.logAll these work, only the shutdown command doesn't work. I tried several other versions like
    shutdown -s -m \\computername -t 60
    shutdown /s /m \\computername /t 60
    shutdown.exe -s -m \\computername -t 60
    shutdown.exe /s /m \\computername /t 60...
    Now I contacted APC and in their last mail they said:
    The command files must conform to a certain syntax because of java. This also causes problems sometimes.
    Now I thought I'd might be using the wrong code because of Java,so I thought of asking it in a Java forum.
    Best regards
    Peter

    The program itself is a program for my UPS. When power is cut off, the UPS will switch to batteries. Now the software can execute a command file or batch file before shutting the connected computer down.
    So I want this cmd-file or bat-file to shut a remote computer down. This can be done by NET USE (to log on) and the by SHUTDOWN (to shut it down)
    If I want to see what happens when the program opens the batch files I go to work like this:
    I write 2 files:
    CallShutdown.bat
    @START "" "C:\Program Files\APC\PowerChute Business Edition\agent\cmdfiles\shutdown.bat
    shutdown.bat
    NET USE \\computername /user:username password
    SHUTDOWN.EXE -s -m \\computername -t 60
    NET SEND computername TESTNow I can see on my own computer a DOS window and that gives me the following information:
    c:\PROGRA~1\APC\POWERC~1\agent\>net use \\computername /user:Administrator password
    The task is completed
    c:\PROGRA~1\APC\POWERC~1\agent\>shutdown.exe -s -m \\computername -t 60
    Access denied
    c:\PROGRA~1\APC\POWERC~1\agent\>net send computername TEST
    The message was send to COMPUTERNAMEAnd on the remote computer I can see a Messenger-Service window with the message TEST in it coming from my computer.
    First of all the NET USE command works, but the shutdown command fails because the access was denied.
    HOWEVER, when I double click on CallShutdown.bat in Windows Explorer everything works just fine. Logon, shutdown and Net Send.
    So I don't know why that shutdown command gets an access denied when I let the program execute it, but when I just use the double click action :o) everything works.
    Because I got a message from the helpdesk saying something about syntax for JAVA, I thought I'd give it a go on this forum.
    Hope I've been clear in my explanation. Two files, one calling the other. Second one logs on and shuts down the remote computer.

  • Agent service on Windows does not start

    Ok:
    Grid Control 10.2.0.1, repository 10.1.0.4, Linux Red hat 4
    Target node is a windows 2003 server (kinda, its on VMWare) with no service pack installed (don't ask). There is no oracle software on the target node except an oracle 10.2.0.3 agent. We just monitor the host up/down.
    Ok this was working until the windows server crashed. It was restarted but then the agent would not start. It complained about not being able to load files and after three attempts it crashed. I removed it from grid, deinstalled the agent then reinstalled it with no errors. The same thing then happened, start the agent ok, then try an upload and it would fail and crash the agent:
    2007-04-12 14:22:14 Thread-1820 ERROR upload: Failed to upload file A0000001.xml, ret =
    -6
    2007-04-12 14:22:14 Thread-1820 ERROR upload: 3 Failures in a row for A0000001.xml, we give up
    2007-04-12 14:22:14 Thread-1820 ERROR upload: Error in uploadXMLFiles. Trying again in 72.00 seconds or earlier.
    2007-04-12 14:22:16 Thread-2360 WARN upload: FxferSend: received fatal error in header from
    repository: https://<grid_host>:1159/em/upload
    FATAL_ERROR::500|ORA-20206: Target does not exist: Agent does not exist for
    https://<target_host.com>:3872/emd/main/
    ORA-06512: at "SYSMAN.EMD_LOADER", line 1700
    ORA-06512: at line 1
    2007-04-12 14:22:16 Thread-2360 ERROR upload: number of fatal error exceeds the limit 3
    2007-04-12 14:22:16 Thread-2360 ERROR upload: agent will shutdown now
    2007-04-12 14:22:16 Thread-2360 ERROR : Signalled to Exit with status 55
    2007-04-12 14:22:16 Thread-3776 ERROR main: EMAgent abnormal terminating
    Rebooted the box (its windows after all!!) but now its worse!
    The agent service refuses to start at all, when I try to start it via the services panel I get straightaway 'Error 1053 The service did not respond in a timely fashion'. An emctl start agent from the command prompt produces a 'The service is not responding to the control
    function'.
    In the logs:
    2007-04-13 09:03:32 Thread-1872 WARN http: snmehl_connect: connect failed to (<target_host.com>:3872): No connection could be made
    because the target machine actively refused it.
    (error = 10061)
    2007-04-13 09:03:32 Thread-1872 ERROR main: nmectla_agentctl: Error connecting to
    https://<target_host.com>:3872/emd/main/. Returning status code 1
    But nothing is grabbing the 3872 port on the target host for the agent. The target host can 'see' the grid control server. There is no firewall in between.
    I have an SR open, oracle are pointing the finger at a dodgy agent install (I've sent them the install logs to verify) or a firewall issue, but the target host certaintly does not have one.
    I'm a bit of a loss now to be honest, any thoughts anyone? Not really used the agent on windows much.

    If I clean out the logs and do:
    emctl start agent
    emctl status agent
    The only logs produced are emctl.log:
    4064 :: Fri Apr 13 09:38:28 2007::AgentLifeCycle.pm: Processing start agent
    4064 :: Fri Apr 13 09:38:28 2007::AgentLifeCycle.pm: EMHOME is c:\app\ora\product\agent\agent10g
    4064 :: Fri Apr 13 09:38:28 2007::AgentLifeCycle.pm:Exiting with 2
    3972 :: Fri Apr 13 09:39:03 2007::AgentLifeCycle.pm: Processing status agent
    3972 :: Fri Apr 13 09:39:03 2007::AgentStatus.pm:Processing status agent
    3972 :: Fri Apr 13 09:39:05 2007::AgentStatus.pm:emdctl status returned 1
    emdctl.log which is blank and emdctl.trc which is the output I posted earlier. Not very much to go on at all

  • Agent Config issue

    Hi all,
    I have central repository server where agent and other services are running. Where as on one of there agent running (target server) there was an issue with time zone. Which was corrected by me.
    But now issue I have removed that target from OEM, after resolving the issue I tried to configure through OEM it is asking I can not do this, target machine automatically visible on OEM when I finish agent installation or setup on target machine.
    If any one knows how to fix this issue with out reinstalling the agent can highly appreciate.
    Thanks in advance.
    Regards,
    RK.

    Thanks to both of you.
    I made changes and seems like agent going down after it has started.
    here are some log files
    Below is emdctl.trc
    2007-06-05 09:36:04 Thread-1 WARN http: snmehl_connect: connect failed to (ccdctmtu1.tnt:3872): Connection refused (error = 146)
    2007-06-05 09:36:04 Thread-1 ERROR main: nmectla_agentctl: Error connecting to http://ccdctmtu1.tnt:3872/emd/main/. Returning status code 1
    2007-06-05 09:38:03 Thread-1 WARN http: snmehl_connect: connect failed to (ccdctmtu1:3872): Connection refused (error = 146)
    2007-06-05 09:38:03 Thread-1 ERROR main: nmectla_agentctl: Error connecting to http://ccdctmtu1:3872/emd/main/. Returning status code 1
    2007-06-05 09:38:04 Thread-1 WARN http: snmehl_connect: connect failed to (ccdctmtu1:3872): Connection refused (error = 146)
    2007-06-05 09:38:04 Thread-1 ERROR main: nmectla_agentctl: Error connecting to http://ccdctmtu1:3872/emd/main/. Returning status code 1
    2007-06-05 09:39:53 Thread-1 WARN http: snmehl_connect: connect failed to (ccdctmtu1:3872): Connection refused (error = 146)
    2007-06-05 09:39:53 Thread-1 ERROR main: nmectla_agentctl: Error connecting to http://ccdctmtu1:3872/emd/main/. Returning status code 1
    Below is emagent.log
    007-06-05 09:38:05 Thread-1 Starting Agent 10.2.0.2.0 from /opt/oracle/dbms/agent10g (00701)
    2007-06-05 09:38:05 Thread-1 [E-Mail IMAP Server] InstanceProperty (imap_host) is marked OPTIONAL but is being used (00506)
    2007-06-05 09:38:06 Thread-1 [Database Instance] InstanceProperty (DBVersion) is marked OPTIONAL but is being used (00506)
    2007-06-05 09:38:08 Thread-1 [E-Mail POP Server] InstanceProperty (pop_host) is marked OPTIONAL but is being used (00506)
    2007-06-05 09:38:08 Thread-1 [Cluster Database] InstanceProperty (DBVersion) is marked OPTIONAL but is being used (00506)
    2007-06-05 09:38:08 Thread-1 [Load Balancer Switch] InstanceProperty (snmpTimeout) is marked OPTIONAL but is being used (00506)
    2007-06-05 09:38:08 Thread-1 [E-Mail SMTP Inbound Server] InstanceProperty (smtp_host) is marked OPTIONAL but is being used (00506)
    2007-06-05 09:38:08 Thread-1 [E-Mail SMTP Outbound Server] InstanceProperty (smtp_host) is marked OPTIONAL but is being used (00506)
    2007-06-05 09:38:10 Thread-1 Skipping target {documtm, oracle_database}: Missing properties - password (00151)
    2007-06-05 09:38:10 Thread-1 Skipping target {dctmctrl, oracle_database}: Missing properties - password (00151)
    2007-06-05 09:38:10 Thread-1 Skipping target {regdctm, oracle_database}: Missing properties - password (00151)
    2007-06-05 09:38:19 Thread-1 EMAgent started successfully (00702)
    2007-06-05 09:38:19 Thread-21 <Upload Manager> Exceeded Max allowed Upload data - No of files: 151, Size of upload data: 81.337722MB, Pct() of Disk used: 39
    .14%, Disabling collections (00852)
    2007-06-05 09:38:19 Thread-21 Disable collector (00406)
    2007-06-05 09:39:51 Thread-33 <Upload Manager> Unsuccessful Upload attempts for XML file exceeds specified limit=3, Agent will shutdown (00851)
    2007-06-05 09:39:51 Thread-1 EMAgent abnormal terminating (00704)
    Let me know if I should check some thing else

  • Web Agent - MEDIAPUT ORA-3113

    Hi,
    I'm running an 8.1.6 db and using WebAgent on Redhat 6.1.
    I have a running application to upload files into blob columns that usually works well except that from time to time the following error message appears:
    "Oracle interMedia Web Agent
    An error occurred processing your MEDIAGET or MEDIAPUT request
    Error while trying to retrieve text for error ORA-03113"
    I have no idea why I'm getting this error, if I refresh the page then I get the normal MEDIAPUT succeeded message and the document is loaded.
    This is a little disconcerting for my end-users. Does anyone know what is causing this error or where to start looking?
    Many Thanks.
    Niall.
    null

    Hi Niall,
    Unfortunately, the fact that you're not seeing any trace files or
    anything in the alert log isn't giving us much to go on. I'll answer
    your questions first, then list some ideas at the end.
    The error message you are seeing, "MWM-00608: error executing a SQL
    statement", indicates that the Web Agent really is executing a
    statement - its pretty specific about what its doing when it has to
    write an error message. For example, if the error were occuring when
    it was trying to connect to the server or start a new database
    session, then you'd see something like "MWM-00546: OCI error attaching
    to database server using service name '%s'" or "MWM-00548: OCI error
    beginning database session using service name '%s'".
    Are there any delay / timeout parameters that should be examined or
    changed ?The Web Agent doesn't use any timers. It simply issues calls to OCI and
    waits for the response.
    Does the Web Agnet try to keep it's connection alive from the previous
    upload ?Yes it does. For database agents defined with a fixed user name and
    password, the Web Agent keeps both the server connection and database
    session active for use in subsequest requests. For database agents
    that do not specify a password, the Web Agent keeps only the server
    connection active between requests. It does this to avoid the overhead
    of creating a new server connection/database session for every
    request, something which would result in a noticeable in servicing
    requests.
    The fact that the MEDIAPUT request works immediately after the error
    (upon page refresh) makes me wonder if the server process is not
    coming up fast enough for the Web Agent? A page refresh should result in the browser resending the same request
    to the web server. When the web agent gets the request, it will simply
    create a new server connection/database session with which to execute
    the necessary SQL. That is, assuming the request goes to the same
    process. If it goes to a different process, then there may already be
    an existing connection that can be used, or a new connection may be
    created.
    Here are some thoughts as to what might be causing the problem, plus
    some suggestions where I can make any:
    1. The database is being shutdown and restarted without restarting the
    web agent and/or web server. This will cause the error you are
    seeing, because the Web Agent doesn't know the database has gone
    down and will try to use existing sessions when new requests
    arrive.
    If you're using Apache, then you'll need to restart Apache in order
    to restart the Web Agent. If you're using iPlanet Web Server in
    single-process mode, then you can use the Web Agent's on-line admin
    interface to reload the configuration, which will cause the Web
    Agent to shutdown any existing database sessions and server
    connections, then re-read the configuration file. As new requests
    are received, new connections will be established.
    2. Individual database sessions are being killed by something and/or
    someone. Although some documentation I read says that clients
    should get an ORA-00028 error message, when I tried it, I got
    ORA-03113. I didn't see anything in my alert log when I was trying
    it, but there may be settings you can use to enable the logging of
    such actions.
    3. Individual TCP/IP network connections are being killed by something
    and/or someone. I don't know how you're web server and database
    server are configured, or what transport they're using, but this
    sort of thing will result in the error you are seeing.
    4. There's some sort of bug in the 8.1.6 server on Linux which results
    in the server consuming virtual memory or some other resource to the
    point that when the resource runs out, it doesn't have enough resource
    to write a trace dump file.
    If this is happening, then its going to be a case for the support
    folks to look at. One possible way of proving this would be to
    periodically restart the web server or reload the Web Agent
    configuration, so re-initializing all the connections.
    Some other questions that may or may not have a bearing on the issue.
    - How often does this occur? Once a day, once a week, or multiple
    times per day to different users?
    - Which web server are you using?
    - Does it always happen to the empentblobs.empent_doc procedure or
    do other procedures experience problems?
    - What does the empentblobs.empent_doc procedure do, and can it be
    simplified in any way to narrow down the problem?
    That's all I can think of for now. Please let us know if any of this
    helps, or at least helps to point in the right directory.
    Regards,
    Simon
    null

  • Intelligent agent won't start

    We renamed the windows 2000 host on which Oracle lives and now the intelligent agent won't start. I cleared snmp_rw etc and rebooted but still no go any ideas?
    thx in advance.

    Thx Pete but the emca will effect the OEM repository I am looking for reconfig of the intelligent agent to reflect the new hostname.
    Daryl thx for the reminder. My DB is 9.2.0.1 on XP but the same rules apply as Unix. It turns out I missed deletion of one of the .q files which was enough to block auto-create on atleast one .q file and leave me hanging.
    These are the steps I took to fixit:
    1) shutdown the agent
    2) shutdown the listener
    3) delete snmp* files under network/admin
    4) delete .q files and services.ora under network/agent
    5) restart listener
    6) restart agent
    7) re-acquire DB through OEM discovery (success)
    Obviously the change of hostname has to be picked up by the IA's files. If the files do not exist at IA startup the IA creates them using current information from the host.
    thx to all.

  • TimeZone issues when starting the OEM Agent since summertime switch Germany

    Hello gurus,
    since yesterday when the system time has swithched to summer time in Germany I have below errors when starting the agents on our systems:
    ****@*****: /oracle > su - ora*** -c /oracle/product/agent10g/bin/emctl start agent
    Oracle Enterprise Manager 10g Release 3 Grid Control 10.2.0.3.0.
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    Starting agent ....... failed.
    The agentTZRegion value in /oracle/product/agent10g/sysman/config/emd.properties is not in agreement with what agent thinks it should be.Please verify your environment to make sure that TZ setting has not changed since the last start of the agent.
    If you modified the timezone setting in the environment, please stop the agent and exectute 'emctl resetTZ agent' and also execute the script mgmt_target.set_agent_tzrgn(<agent_name>, <new_tz_rgn>) to get the value propagated to repository.
    Consult the log files in: /oracle/product/agent10g/sysman/log
    So I tryed the suggested resetTZ, but get below errors:
    root@******: /oracle/product/agent10g/sysman/log > su - oradeu -c /oracle/product/agent10g/bin/emctl resetTZ agent
    Oracle Enterprise Manager 10g Release 3 Grid Control 10.2.0.3.0.
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    Updating /oracle/product/agent10g/sysman/config/emd.properties...
    ----- Mon Mar 31 10:18:48 2008::tzOffset for +01:00 is 60(min), but agent is runnning with tzOffset 120(min)
    ----- Mon Mar 31 10:18:48 2008::trying again after waiting for 1 sec to account for daylight transition
    ----- Mon Mar 31 10:18:48 2008::tzOffset for +01:00 is 60(min), but agent is runnning with tzOffset 120(min)
    resetTZ failed.
    The agentTZRegion in:
    /oracle/product/agent10g/sysman/config/emd.properties
    is not in agreement with what the agent thinks it should be.
    Fix your environment.
    Pick a TZ value that corresponds to time zone settings listed in:
    /oracle/product/agent10g/sysman/admin/supportedtzs.lst
    I checked the TZ settings:
    *****> echo $TZ
    MEZ-1MSZ,M3.5.0/02:00:00,M10.5.0/03:00:00
    *****: /oracle/product/agent10g/sysman/config > more emd.properties|grep agentTZ
    agentTZRegion=+01:00
    which is the reason for the difference of 120min as shown by the resetTZ I assume because AIX system time says MEZ -1 and emd.properties finds GMT+1 which gives a difference of 120min.
    I already applied the patch 5632264 to the agent, but the issue still exists.
    When I manipulate the envirement TZ to GMT+01:00 the agent starts again, but this is no solution. Also patching the TZ of UNIX/AIX is no solution because this will cause other issues.
    Any ideas how I can get the agent working again?
    ps. I already tried a reinstallation of the Agent, but the issue still exists.
    Thank you
    F.Wittmann

    Hello,
    I already installed the DST patch v4. see my first post.
    Below I attached the logs from starting the agenent since crash:
    emctl.log (since start until crash)=
    1310886 :: Thu Apr 3 10:29:31 2008::AgentLifeCycle.pm: Processing status agent
    1310886 :: Thu Apr 3 10:29:31 2008::AgentStatus.pm:Processing status agent
    1310886 :: Thu Apr 3 10:29:31 2008::AgentStatus.pm:emdctl status returned 1
    1462412 :: Thu Apr 3 10:29:41 2008::AgentLifeCycle.pm: Processing start agent
    1462412 :: Thu Apr 3 10:29:41 2008::AgentLifeCycle.pm: EMHOME is /oracle/product/agent10g
    1462412 :: Thu Apr 3 10:29:41 2008::AgentLifeCycle.pm:status agent returned with retCode=1
    1462412 :: Thu Apr 3 10:30:37 2008::AgentLifeCycle.pm: Exited loop with retCode=4
    1003654 :: Thu Apr 3 10:35:00 2008::AgentLifeCycle.pm: Processing status agent
    1003654 :: Thu Apr 3 10:35:00 2008::AgentStatus.pm:Processing status agent
    1003654 :: Thu Apr 3 10:35:02 2008::AgentStatus.pm:emdctl status returned 3
    1536132 :: Thu Apr 3 10:38:26 2008::AgentLifeCycle.pm: Processing status agent
    1536132 :: Thu Apr 3 10:38:26 2008::AgentStatus.pm:Processing status agent
    1536132 :: Thu Apr 3 10:38:26 2008::AgentStatus.pm:emdctl status returned 1
    emdctl.trc (since start until crash)=
    2008-04-03 10:29:41 Thread-1 WARN http: snmehl_connect: connect failed to (sat141:3872): A remote host refused an attempted connect operation. (error = 79)
    2008-04-03 10:29:41 Thread-1 ERROR main: nmectla_agentctl: Error connecting to https://*****:3872/emd/main/. Returning status code 1
    2008-04-03 10:37:05 Thread-1 WARN http: snmehl_connect: connect failed to (sat141:3872): A remote host refused an attempted connect operation. (error = 79)
    2008-04-03 10:37:05 Thread-1 ERROR main: nmectla_agentctl: Error connecting to https://*****:3872/emd/main/. Returning status code 1
    2008-04-03 10:38:26 Thread-1 WARN http: snmehl_connect: connect failed to (sat141:3872): A remote host refused an attempted connect operation. (error = 79)
    2008-04-03 10:38:26 Thread-1 ERROR main: nmectla_agentctl: Error connecting to https://*****:3872/emd/main/. Returning status code 1
    emagent.log (since start until crash)=
    2008-04-03 10:31:13 Thread-1 EMAgent started successfully (00702)
    2008-04-03 10:37:04 Thread-1670 <Upload Manager> Unsuccessful Upload attempts for XML file exceeds specified limit=3, Agent will shutdown (00851)
    2008-04-03 10:37:04 Thread-1 EMAgent abnormal terminating (00704)
    emagent.trc (since start until crash)=
    2008-04-03 10:35:16 Thread-1076 WARN TargetManager: Regenerating all Metadata
    2008-04-03 10:36:48 Thread-1076 DEBUG TargetManager: In getTypeAndNameForHostTarget
    2008-04-03 10:36:48 Thread-1076 DEBUG TargetManager: getTypeAndNameForHostTarget found host, sat141
    2008-04-03 10:36:48 Thread-1076 DEBUG TargetManager: In getTypeAndNameForHostTarget
    2008-04-03 10:36:48 Thread-1076 DEBUG TargetManager: getTypeAndNameForHostTarget found host, sat141
    2008-04-03 10:36:48 Thread-1076 DEBUG TargetManager: In getTypeAndNameForHostTarget
    2008-04-03 10:36:48 Thread-1076 DEBUG TargetManager: getTypeAndNameForHostTarget found host, sat141
    2008-04-03 10:36:48 Thread-1076 DEBUG TargetManager: In getTypeAndNameForHostTarget
    2008-04-03 10:36:48 Thread-1076 DEBUG TargetManager: getTypeAndNameForHostTarget found host, sat141
    2008-04-03 10:36:48 Thread-1076 WARN collector: Regenerating all DefaultColls
    2008-04-03 10:36:58 Thread-1076 ERROR upload: Failed to upload file A0000003.xml, ret = -6
    2008-04-03 10:36:58 Thread-1076 ERROR upload: 3 Failures in a row for A0000003.xml, we give up
    2008-04-03 10:36:58 Thread-1076 ERROR upload: Error in uploadXMLFiles. Trying again in 72.00 seconds or earlier.
    2008-04-03 10:37:04 Thread-1670 WARN upload: FxferSend: received fatal error in header from repository: https://stloem2:1159/em/upload
    FATAL_ERROR::500|ORA-20603: Updating timezone region of a target is not supported. Use mgmt_target.set_agent_tzrgn() API to modify the timezone region.(target name = sat141:3872)(target type = oracle_emd)(new tzrgn = MET)(old tzrgn = +01:00)
    ORA-06512: at "SYSMAN.CHECK_DUPLICATE_TARGETS", line 92
    ORA-04088: error during execution of trigger 'SYSMAN.CHECK_DUPLICATE_TARGETS'
    2008-04-03 10:37:04 Thread-1670 ERROR upload: number of fatal error exceeds the limit 3
    2008-04-03 10:37:04 Thread-1670 ERROR upload: agent will shutdown now
    2008-04-03 10:37:04 Thread-1670 ERROR : Signalled to Exit with status 55
    2008-04-03 10:37:04 Thread-1 ERROR main: EMAgent abnormal terminating
    =======================================================
    when I run emctl config agent getTZ it returns me GMT+01:00,
    but with this value the agent does not start, oly with MEZ....
    root@******: /oracle/product/agent10g/oracore/zoneinfo > su - oradeu -c /oracle/product/agent10g/bin/emctl config agent getTZ
    Oracle Enterprise Manager 10g Release 3 Grid Control 10.2.0.3.0.
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    GMT+01:00
    Kind regards
    F.Wittmann

  • Windows Update Agent rebooting systems after Software Update deployment

    I have a software update deployment that is configured to install software updates on a collection of servers at 4:00 AM with a suppressed reboot. The updates get deployed and no reboot occurs as expected.  Then ~8 hours later WUA starts up and the
    servers get rebooted.
    There is a maintenance window applied to the collection from 4:00 AM to 6:00 AM to allow the updates to install.
    I've read a few forum and blog posts on this issue and have implemented some settings via GPO, but the reboots are still occurring.  The settings that were applied are referenced in the link below.
    https://support.microsoft.com/kb/2476479?wa=wsignin1.0
    Here is a snippet from the WindowsUpdate.log:
    2014-10-22 12:00:26:153 1428 8a88 AU Received AU Resume timeout
    2014-10-22 12:00:26:153 1428 8a88 AU Additional Service {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782} with Approval type {Pre-install notify} added to AU services list
    2014-10-22 12:00:26:153 1428 8a88 AU Can not perform non-interactive scan if AU is interactive-only
    2014-10-22 12:02:08:512 1428 8a88 AU AU received policy change subscription event
    2014-10-22 12:16:43:463 1428 8a88 AU ###########  AU: Uninitializing Automatic Updates  ###########
    2014-10-22 12:16:43:479 1428 8a88 WuTask Uninit WU Task Manager
    2014-10-22 12:16:43:697 1428 8a88 Service *********
    2014-10-22 12:16:43:697 1428 8a88 Service **  END  **  Service: Service exit [Exit code = 0x240001]
    2014-10-22 12:16:43:697 1428 8a88 Service *************
    2014-10-22 12:19:29:728 1428 e584 Misc ===========  Logging initialized (build: 7.8.9200.16604, tz: -0400)  ===========
    2014-10-22 12:19:29:728 1428 e584 Misc   = Process: C:\WINDOWS\system32\svchost.exe
    2014-10-22 12:19:29:728 1428 e584 Misc   = Module: c:\windows\system32\wuaueng.dll
    2014-10-22 12:19:29:728 1428 e584 Service *************
    2014-10-22 12:19:29:728 1428 e584 Service ** START **  Service: Service startup
    2014-10-22 12:19:29:728 1428 e584 Service *********
    2014-10-22 12:19:29:744 1428 e584 Agent   * WU client version 7.8.9200.16604
    2014-10-22 12:19:29:744 1428 e584 Agent   * Base directory: C:\WINDOWS\SoftwareDistribution
    2014-10-22 12:19:29:744 1428 e584 Agent   * Access type: No proxy
    2014-10-22 12:19:29:744 1428 e584 Service UpdateNetworkState Ipv6, cNetworkInterfaces = 2.
    2014-10-22 12:19:29:744 1428 e584 Service UpdateNetworkState Ipv4, cNetworkInterfaces = 2.
    2014-10-22 12:19:29:744 1428 e584 Agent   * Network state: Connected
    2014-10-22 12:19:29:744 1428 e584 Service UpdateNetworkState Ipv6, cNetworkInterfaces = 2.
    2014-10-22 12:19:29:744 1428 e584 Service UpdateNetworkState Ipv4, cNetworkInterfaces = 2.
    2014-10-22 12:19:29:791 1428 e584 Agent ***********  Agent: Initializing global settings cache  ***********
    2014-10-22 12:19:29:791 1428 e584 Agent   * Endpoint Provider: 00000000-0000-0000-0000-000000000000
    2014-10-22 12:19:29:791 1428 e584 Agent   * WSUS server:
    http://Internal-WSUS.Domain:8530
    2014-10-22 12:19:29:791 1428 e584 Agent   * WSUS status server:
    http://Internal-WSUS.Domain:8530
    2014-10-22 12:19:29:791 1428 e584 Agent   * Target group: (Unassigned Computers)
    2014-10-22 12:19:29:791 1428 e584 Agent   * Windows Update access disabled: No
    2014-10-22 12:19:29:791 1428 e584 Misc WARNING: Network Cost is assumed to be not supported as something failed with trying to get handles to wcmapi.dll
    2014-10-22 12:19:29:806 1428 e584 WuTask WuTaskManager delay initialize completed successfully..
    2014-10-22 12:19:29:822 1428 e584 Report CWERReporter::Init succeeded
    2014-10-22 12:19:29:822 1428 e584 Agent ***********  Agent: Initializing Windows Update Agent  ***********
    2014-10-22 12:19:29:822 1428 e584 DnldMgr Download manager restoring 0 downloads
    2014-10-22 12:19:29:838 1428 e584 AU ###########  AU: Initializing Automatic Updates  ###########
    2014-10-22 12:19:29:838 1428 e584 AU Additional Service {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782} with Approval type {Pre-install notify} added to AU services list
    2014-10-22 12:19:29:838 1428 e584 AU AIR Mode is disabled
    2014-10-22 12:19:29:838 1428 e584 AU   # Policy Driven Provider:
    http://Internal-WSUS.Domain:8530
    2014-10-22 12:19:29:838 1428 e584 AU   # Detection frequency: 22
    2014-10-22 12:19:29:838 1428 e584 AU   # Approval type: Disabled (User preference)
    2014-10-22 12:19:29:838 1428 e584 AU   # Auto-install minor updates: No (User preference)
    2014-10-22 12:19:29:838 1428 e584 AU   # ServiceTypeDefault: Service 117CAB2D-82B1-4B5A-A08C-4D62DBEE7782 Approval type: (Pre-install notify)
    2014-10-22 12:19:29:838 1428 e584 AU   # Will interact with non-admins (Non-admins are elevated (User preference))
    2014-10-22 12:19:29:838 1428 e584 AU WARNING: Failed to get Wu Exemption info from NLM, assuming not exempt, error = 0x80240037
    2014-10-22 12:19:29:853 1428 e584 AU AU finished delayed initialization
    2014-10-22 12:19:29:884 1428 e584 AU #############
    2014-10-22 12:19:29:884 1428 e584 AU ## START ##  AU: Search for updates
    2014-10-22 12:19:29:884 1428 e584 AU #########
    2014-10-22 12:19:29:884 1428 e584 Agent SkipSelfUpdateCheck search flag set for serverId: 117CAB2D-82B1-4B5A-A08C-4D62DBEE7782
    2014-10-22 12:19:30:416 1428 e584 Report ***********  Report: Initializing static reporting data  ***********
    2014-10-22 12:19:30:416 1428 e584 Report   * OS Version = 6.2.9200.0.0.197008
    2014-10-22 12:19:30:416 1428 e584 Report   * OS Product Type = 0x00000008
    2014-10-22 12:19:30:416 1428 e584 Report   * Computer Brand = HP
    2014-10-22 12:19:30:416 1428 e584 Report   * Computer Model = ProLiant BL460c Gen8
    2014-10-22 12:19:30:416 1428 e584 Report   * Platform Role = 1
    2014-10-22 12:19:30:416 1428 e584 Report   * AlwaysOn/AlwaysConnected (AOAC) = 0
    2014-10-22 12:19:30:431 1428 e584 Report   * Bios Revision = I31
    2014-10-22 12:19:30:431 1428 e584 Report   * Bios Name = Default System BIOS
    2014-10-22 12:19:30:431 1428 e584 Report   * Bios Release Date = 2014-02-10T00:00:00
    2014-10-22 12:19:30:431 1428 e584 Report   * Bios Sku Number = 641016-B21     
    2014-10-22 12:19:30:431 1428 e584 Report   * Bios Vendor = HP
    2014-10-22 12:19:30:431 1428 e584 Report   * Bios Family = ProLiant
    2014-10-22 12:19:30:431 1428 e584 Report   * Bios Major Release = 255
    2014-10-22 12:19:30:431 1428 e584 Report   * Bios Minor Release = 255
    2014-10-22 12:19:30:431 1428 e584 Report   * Locale ID = 1033
    2014-10-22 12:19:30:431 1428 e584 AU <<## SUBMITTED ## AU: Search for updates  [CallId = {2787252C-D4B8-46B5-BB42-0C616042113C} ServiceId = {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}]
    2014-10-22 12:19:30:431 1428 dae0 Agent *************
    2014-10-22 12:19:30:431 1428 dae0 Agent ** START **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2014-10-22 12:19:30:431 1428 dae0 Agent *********
    2014-10-22 12:19:30:431 1428 dae0 Agent   * Online = No; Ignore download priority = No
    2014-10-22 12:19:30:431 1428 dae0 Agent   * Criteria = "IsInstalled=0 and DeploymentAction='Installation' or IsPresent=1 and DeploymentAction='Uninstallation' or IsInstalled=1 and DeploymentAction='Installation' and RebootRequired=1
    or IsInstalled=0 and DeploymentAction='Uninstallation' and RebootRequired=1"
    2014-10-22 12:19:30:431 1428 dae0 Agent   * ServiceID = {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782} Third party service
    2014-10-22 12:19:30:431 1428 dae0 Agent   * Search Scope = {Machine & All Users}
    2014-10-22 12:19:30:431 1428 dae0 Agent   * Caller SID for Applicability: S-1-5-18
    2014-10-22 12:19:30:494 1428 dae0 Agent   * Found 0 updates and 0 categories in search; evaluated appl. rules of 0 out of 0 deployed entities
    2014-10-22 12:19:30:494 1428 dae0 Agent *********
    2014-10-22 12:19:30:494 1428 dae0 Agent **  END  **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2014-10-22 12:19:30:494 1428 dae0 Agent *************
    2014-10-22 12:19:30:509 1428 d158 AU >>##  RESUMED  ## AU: Search for updates [CallId = {2787252C-D4B8-46B5-BB42-0C616042113C} ServiceId = {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}]
    2014-10-22 12:19:30:509 1428 d158 AU   # 0 updates detected
    2014-10-22 12:19:30:509 1428 d158 AU #########
    2014-10-22 12:19:30:509 1428 d158 AU ##  END  ##  AU: Search for updates  [CallId = {2787252C-D4B8-46B5-BB42-0C616042113C} ServiceId = {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}]
    2014-10-22 12:19:30:509 1428 d158 AU #############
    2014-10-22 12:19:30:509 1428 d158 AU All AU searches complete.
    2014-10-22 12:19:30:525 1428 e584 AU #############
    2014-10-22 12:19:30:525 1428 e584 AU ## START ##  AU: Search for updates
    2014-10-22 12:19:30:525 1428 e584 AU #########
    2014-10-22 12:19:30:525 1428 e584 AU Additional Service {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782} with Approval type {Pre-install notify} added to AU services list
    2014-10-22 12:19:30:525 1428 e584 Agent SkipSelfUpdateCheck search flag set for serverId: 117CAB2D-82B1-4B5A-A08C-4D62DBEE7782
    2014-10-22 12:19:30:525 1428 e584 AU <<## SUBMITTED ## AU: Search for updates  [CallId = {A3E41A4C-E9CB-4172-B6B0-99D556FB9102} ServiceId = {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}]
    2014-10-22 12:19:30:525 1428 dae0 Agent *************
    2014-10-22 12:19:30:525 1428 dae0 Agent ** START **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2014-10-22 12:19:30:525 1428 dae0 Agent *********
    2014-10-22 12:19:30:525 1428 dae0 Agent   * Online = Yes; Ignore download priority = No
    2014-10-22 12:19:30:525 1428 dae0 Agent   * Criteria = "IsInstalled=0 and DeploymentAction='Installation' or IsPresent=1 and DeploymentAction='Uninstallation' or IsInstalled=1 and DeploymentAction='Installation' and RebootRequired=1
    or IsInstalled=0 and DeploymentAction='Uninstallation' and RebootRequired=1"
    2014-10-22 12:19:30:525 1428 dae0 Agent   * ServiceID = {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782} Third party service
    2014-10-22 12:19:30:525 1428 dae0 Agent   * Search Scope = {Machine & All Users}
    2014-10-22 12:19:30:525 1428 dae0 Agent   * Caller SID for Applicability: S-1-5-18
    2014-10-22 12:19:30:525 1428 dae0 Misc Validating signature for C:\WINDOWS\SoftwareDistribution\WuRedir\9482F4B4-E343-43B6-B170-9A65BC822C77\wuredir.cab:
    2014-10-22 12:19:30:541 1428 dae0 Misc  Microsoft signed: Yes
    2014-10-22 12:19:30:541 1428 dae0 Misc  Infrastructure signed: Yes
    2014-10-22 12:19:30:556 1428 dae0 EP Got 9482F4B4-E343-43B6-B170-9A65BC822C77 redir SecondaryServiceAuth URL: "http://fe2.ws.microsoft.com/w81/2/redir/v2-storeauth.cab"
    2014-10-22 12:19:30:588 1428 dae0 Agent Checking for updated auth cab for service 117cab2d-82b1-4b5a-a08c-4d62dbee7782 at
    http://fe2.ws.microsoft.com/w81/2/redir/v2-storeauth.cab
    2014-10-22 12:19:30:588 1428 dae0 Misc Validating signature for C:\WINDOWS\SoftwareDistribution\AuthCabs\Downloaded\117cab2d-82b1-4b5a-a08c-4d62dbee7782.cab:
    2014-10-22 12:19:30:603 1428 dae0 Misc  Microsoft signed: Yes
    2014-10-22 12:19:30:603 1428 dae0 Misc  Infrastructure signed: Yes
    2014-10-22 12:19:30:775 1428 dae0 Misc Validating signature for C:\WINDOWS\SoftwareDistribution\AuthCabs\Downloaded\117cab2d-82b1-4b5a-a08c-4d62dbee7782.cab:
    2014-10-22 12:19:30:791 1428 dae0 Misc  Microsoft signed: Yes
    2014-10-22 12:19:30:791 1428 dae0 Misc  Infrastructure signed: Yes
    2014-10-22 12:19:30:791 1428 dae0 Misc Validating signature for C:\WINDOWS\SoftwareDistribution\WuRedir\117CAB2D-82B1-4B5A-A08C-4D62DBEE7782\wuredir.cab:
    2014-10-22 12:19:30:806 1428 dae0 Misc  Microsoft signed: Yes
    2014-10-22 12:19:30:806 1428 dae0 Misc  Infrastructure signed: Yes
    2014-10-22 12:19:30:822 1428 dae0 EP Got 117CAB2D-82B1-4B5A-A08C-4D62DBEE7782 redir Client/Server URL: "https://fe2.ws.microsoft.com/v6/ClientWebService/client.asmx"
    2014-10-22 12:19:30:978 1428 dae0 PT +++++++++++  PT: Synchronizing server updates  +++++++++++
    2014-10-22 12:19:30:978 1428 dae0 PT   + ServiceId = {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}, Server URL =
    https://fe2.ws.microsoft.com/v6/ClientWebService/client.asmx
    2014-10-22 12:19:31:025 1428 dae0 Agent   * Found 0 updates and 0 categories in search; evaluated appl. rules of 0 out of 0 deployed entities
    2014-10-22 12:19:31:025 1428 dae0 Agent *********
    2014-10-22 12:19:31:025 1428 dae0 Agent **  END  **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2014-10-22 12:19:31:025 1428 dae0 Agent *************
    2014-10-22 12:19:31:025 1428 d158 AU >>##  RESUMED  ## AU: Search for updates [CallId = {A3E41A4C-E9CB-4172-B6B0-99D556FB9102} ServiceId = {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}]
    2014-10-22 12:19:31:025 1428 d158 AU   # 0 updates detected
    2014-10-22 12:19:31:025 1428 d158 AU #########
    2014-10-22 12:19:31:025 1428 d158 AU ##  END  ##  AU: Search for updates  [CallId = {A3E41A4C-E9CB-4172-B6B0-99D556FB9102} ServiceId = {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}]
    2014-10-22 12:19:31:025 1428 d158 AU #############
    2014-10-22 12:19:31:025 1428 d158 AU All AU searches complete.
    2014-10-22 12:19:31:025 1428 d158 AU AU setting next detection timeout to 2014-10-23 14:19:28
    2014-10-22 12:19:36:025 1428 e214 Report REPORT EVENT: {E04012FD-8FFD-4259-96D5-A5A34127F0A0} 2014-10-22 12:19:31:025-0400 1 147 [AGENT_DETECTION_FINISHED] 101 {00000000-0000-0000-0000-000000000000} 0 0 AutomaticUpdates Success Software
    Synchronization Windows Update Client successfully detected 0 updates.
    2014-10-22 12:19:36:025 1428 e214 Report CWERReporter finishing event handling. (00000000)
    2014-10-22 12:29:29:914 1428 e584 AU AU invoking RebootSystem (OnRebootNow)
    2014-10-22 12:29:30:055 1428 e584 AU Allowing auto firmware installs at next shutdown
    2014-10-22 12:29:30:102 1428 e584 Misc WARNING: SUS Client is rebooting system.
    2014-10-22 12:29:30:102 1428 e584 AU AU invoking RebootSystem (OnRebootRetry)
    2014-10-22 12:29:30:367 1428 e584 Shutdwn Checking to see whether install at shutdown is appropriate
    2014-10-22 12:29:30:367 1428 e584 Shutdwn user declined update at shutdown
    2014-10-22 12:29:30:367 1428 e584 AU AU initiates service shutdown
    2014-10-22 12:29:30:367 1428 e584 AU ###########  AU: Uninitializing Automatic Updates  ###########
    2014-10-22 12:29:30:399 1428 e584 WuTask Uninit WU Task Manager
    2014-10-22 12:29:30:445 1428 e584 Agent Sending shutdown notification to client
    2014-10-22 12:29:30:445 5788 8084 COMAPI WARNING: Received service shutdown/self-update notification.
    2014-10-22 12:29:30:461 1428 e584 Report CWERReporter finishing event handling. (00000000)
    2014-10-22 12:29:30:539 1428 e584 Service *********
    2014-10-22 12:29:30:539 1428 e584 Service **  END  **  Service: Service exit [Exit code = 0x240001]
    2014-10-22 12:29:30:539 1428 e584 Service *************
    Any assistance is appreciated.
    -Tim

    Hi,
    Any update?
    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.

  • Server 2012 R2 - WSUS - Win 7 reporting status, Win 8 not

    Hi,
    We have WSUS running in Server 2012 R2 standard. I have a handful of Win 7 PCs reporting status successfully. All other Win 7 and Win 8/8.1 have "not yet reported".
    Looked at the windowsupdate.txt to compare a Win 7 working PC to a Win 8.1 non-working PC. Found this difference: Win7 is using
    http://hccsus01:8530/ClientWebService/client.asmx and Win 8.1 is using
    https://fe2.ws.microsoft.com/v6/ClientWebService/client.asmx 
    Windows 7
    2014-08-13 12:35:25:886  452 c64 Agent *************
    2014-08-13 12:35:25:886  452 c64 Agent ** START **  Agent: Finding updates [CallerId = System Center Endpoint Protection (DDEFDD14-250E-4DC8-A0B3-9D667EC5D8EB)]
    2014-08-13 12:35:25:886  452 c64 Agent *********
    2014-08-13 12:35:25:886  452 c64 Agent   * Online = Yes; Ignore download priority = No
    2014-08-13 12:35:25:886  452 c64 Agent   * Criteria = "(IsInstalled = 0 and IsHidden = 0 and CategoryIDs contains 'a38c835c-2950-4e87-86cc-6911a52c34a3' and CategoryIDs contains 'e0789628-ce08-4437-be74-2495b842f43b')"
    2014-08-13 12:35:25:886  452 c64 Agent   * ServiceID = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7} Managed
    2014-08-13 12:35:25:886  452 c64 Agent   * Search Scope = {Machine}
    2014-08-13 12:35:26:369  452 c64 PT +++++++++++  PT: Starting category scan  +++++++++++
    2014-08-13 12:35:26:369  452 c64 PT   + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL =
    http://hccsus01:8530/ClientWebService/client.asmx
    2014-08-13 12:35:27:085  452 c64 PT +++++++++++  PT: Synchronizing server updates  +++++++++++
    2014-08-13 12:35:27:085  452 c64 PT   + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL =
    http://hccsus01:8530/ClientWebService/client.asmx
    2014-08-13 12:35:27:101  452 c64 PT WARNING: Cached cookie has expired or new PID is available
    2014-08-13 12:35:27:101  452 c64 PT Initializing simple targeting cookie, clientId = f1921f0f-c420-4d01-b0f3-24c64a786102, target group = , DNS name = snbk-t13-04.hillcrest.qld.edu.au
    2014-08-13 12:35:27:101  452 c64 PT   Server URL =
    http://hccsus01:8530/SimpleAuthWebService/SimpleAuth.asmx
    2014-08-13 12:35:27:677  452 c64 PT +++++++++++  PT: Synchronizing extended update info  +++++++++++
    2014-08-13 12:35:27:677  452 c64 PT   + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL =
    http://hccsus01:8530/ClientWebService/client.asmx
    2014-08-13 12:35:27:927  452 c64 Agent   * Found 0 updates and 4 categories in search; evaluated appl. rules of 64 out of 80 deployed entities
    2014-08-13 12:35:27:942  452 c64 Agent *********
    2014-08-13 12:35:27:942  452 c64 Agent **  END  **  Agent: Finding updates [CallerId = System Center Endpoint Protection (DDEFDD14-250E-4DC8-A0B3-9D667EC5D8EB)]
    2014-08-13 12:35:27:942  452 c64 Agent *************
    2014-08-13 12:35:27:942  452 c64 Report REPORT EVENT: {31C51F1C-F783-4DF0-A59D-B1DEFC6E91EF} 2014-08-13 12:35:21:646+1000 1 190 101 {ACF78076-4EB1-4AA2-B7A8-1FD495789486} 200 0 AutomaticUpdates Success Content
    Install Installation Successful: Windows successfully installed the following update: Update for Windows 7 for x64-based Systems (KB2846960)
    2014-08-13 12:35:27:942  452 c64 Report REPORT EVENT: {165FE843-CA58-43B1-BAFC-F3EDDBF1D624} 2014-08-13 12:35:21:662+1000 1 190 101 {1A4BBD72-9048-4E79-842F-4AD9A6114195} 200 0 AutomaticUpdates Success Content
    Install Installation Successful: Windows successfully installed the following update: Security Update for Windows 7 for x64-based Systems (KB2862973)
    2014-08-13 12:35:27:942  452 c64 Report REPORT EVENT: {C3FAA8E2-AAF2-469C-900A-9824B6EBB36C} 2014-08-13 12:35:21:677+1000 1 190 101 {55028D69-EF9F-4949-8C2A-8FDEFBBC754F} 200 0 AutomaticUpdates Success Content
    Install Installation Successful: Windows successfully installed the following update: Security Update for Windows 7 for x64-based Systems (KB2871997)
    2014-08-13 12:35:27:942  452 c64 Report REPORT EVENT: {A460D377-1182-4784-9E98-921FC7A7AD97} 2014-08-13 12:35:21:693+1000 1 190 101 {CED3293C-2613-41FF-BD6A-D8525504C035} 201 0 AutomaticUpdates Success Content
    Install Installation Successful: Windows successfully installed the following update: Security Update for Windows 7 for x64-based Systems (KB2957503)
    2014-08-13 12:35:27:942  452 c64 Report REPORT EVENT: {A6D60884-0AFD-483A-A9CF-273892E5D2F1} 2014-08-13 12:35:21:693+1000 1 195 101 {6C60D018-A24B-46E0-820A-3C317F085D41} 201 80242016 AutomaticUpdates Failure Content
    Install Installation Failure: Windows failed to install the following update with error 0x80242016: Cumulative Security Update for Internet Explorer 9 for Windows 7 for x64-based Systems (KB2962872).
    2014-08-13 12:35:27:942 1236 5c4 COMAPI >>--  RESUMED  -- COMAPI: Search [ClientId = System Center Endpoint Protection (DDEFDD14-250E-4DC8-A0B3-9D667EC5D8EB)]
    2014-08-13 12:35:27:942 1236 5c4 COMAPI   - Updates found = 0
    2014-08-13 12:35:27:942 1236 5c4 COMAPI ---------
    2014-08-13 12:35:27:942 1236 5c4 COMAPI --  END  --  COMAPI: Search [ClientId = System Center Endpoint Protection (DDEFDD14-250E-4DC8-A0B3-9D667EC5D8EB)]
    2014-08-13 12:35:27:942 1236 5c4 COMAPI -------------
    Windows 8.1
    2014-10-07 15:33:23:740  936 186c Agent ** START **  Agent: Finding updates [CallerId = Windows Update Command Line  Id = 70]
    2014-10-07 15:33:23:740  936 bfc Agent   * Caller SID for Applicability: S-1-5-18
    2014-10-07 15:33:23:740  936 186c Agent *********
    2014-10-07 15:33:23:740  936 bfc Agent   * RegisterService is set
    2014-10-07 15:33:23:740  936 186c Agent   * Online = Yes; Ignore download priority = No
    2014-10-07 15:33:23:741  936 186c Agent   * Criteria = "IsInstalled=0 and DeploymentAction='Installation' or IsPresent=1 and DeploymentAction='Uninstallation' or IsInstalled=1 and DeploymentAction='Installation' and RebootRequired=1
    or IsInstalled=0 and DeploymentAction='Uninstallation' and RebootRequired=1"
    2014-10-07 15:33:23:741  936 186c Agent   * ServiceID = {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782} Third party service
    2014-10-07 15:33:23:741  936 186c Agent   * Search Scope = {Machine & All Users}
    2014-10-07 15:33:23:741  936 186c Agent   * Caller SID for Applicability: S-1-5-18
    2014-10-07 15:33:23:741  936 186c Agent   * RegisterService is set
    2014-10-07 15:33:23:741  936 bfc EP Got WSUS Client/Server URL: "http://hccsus01:8530/ClientWebService/client.asmx"
    2014-10-07 15:33:23:743  936 186c EP Got 9482F4B4-E343-43B6-B170-9A65BC822C77 redir SecondaryServiceAuth URL: "117cab2d-82b1-4b5a-a08c-4d62dbee7782"
    2014-10-07 15:33:23:747  936 186c EP Got 117CAB2D-82B1-4B5A-A08C-4D62DBEE7782 redir Client/Server URL: "https://fe2.ws.microsoft.com/v6/ClientWebService/client.asmx"
    2014-10-07 15:33:23:755  936 186c PT +++++++++++  PT: Synchronizing server updates  +++++++++++
    2014-10-07 15:33:23:755  936 186c PT   + ServiceId = {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}, Server URL =
    https://fe2.ws.microsoft.com/v6/ClientWebService/client.asmx
    2014-10-07 15:33:23:756  936 186c Agent Reading cached app categories using lifetime 604800 seconds
    2014-10-07 15:33:23:756  936 186c Agent Read 0 cached app categories
    2014-10-07 15:33:23:756  936 186c Agent SyncUpdates adding 0 visited app categories
    2014-10-07 15:33:24:021  936 186c IdleTmr WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 10001; does use network; is at background priority
    2014-10-07 15:33:24:483  936 bfc PT +++++++++++  PT: Synchronizing server updates  +++++++++++
    2014-10-07 15:33:24:483  936 bfc PT   + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL =
    http://hccsus01:8530/ClientWebService/client.asmx
    2014-10-07 15:33:24:491  936 bfc Agent Reading cached app categories using lifetime 604800 seconds
    2014-10-07 15:33:24:491  936 bfc Agent Read 0 cached app categories
    2014-10-07 15:33:24:491  936 bfc Agent SyncUpdates adding 0 visited app categories
    2014-10-07 15:33:25:038  936 186c IdleTmr WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 10001) stopped; does use network; is at background priority
    2014-10-07 15:33:25:038  936 186c Agent Reading cached app categories using lifetime 604800 seconds
    2014-10-07 15:33:25:038  936 186c Agent Read 0 cached app categories
    2014-10-07 15:33:25:038  936 186c Agent SyncUpdates adding 0 visited app categories
    2014-10-07 15:33:25:056  936 186c PT   + SyncUpdates round trips: 1
    2014-10-07 15:33:25:142  936 bfc IdleTmr WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 10002; does use network; is at background priority
    2014-10-07 15:33:25:193  936 bfc IdleTmr WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 10002) stopped; does use network; is at background priority
    2014-10-07 15:33:25:193  936 bfc Agent Reading cached app categories using lifetime 604800 seconds
    2014-10-07 15:33:25:193  936 bfc Agent Read 0 cached app categories
    2014-10-07 15:33:25:193  936 bfc Agent SyncUpdates adding 0 visited app categories
    2014-10-07 15:33:25:221  936 bfc IdleTmr WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover) started; operation # 10003; does use network; is at background priority
    2014-10-07 15:33:25:235  936 bfc IdleTmr WU operation (CAgentProtocolTalker::SyncUpdates_WithRecover, operation # 10003) stopped; does use network; is at background priority
    2014-10-07 15:33:25:235  936 bfc PT   + SyncUpdates round trips: 2
    2014-10-07 15:33:29:220  936 186c Agent   * Added update {3F0C7A2A-336A-4D59-B38A-0C36D63B0DB2}.1 to search result
    2014-10-07 15:33:29:220  936 186c Agent   * Added update {EC9994ED-440F-4AFC-A0FA-CB90285A1226}.1 to search result
    2014-10-07 15:33:29:220  936 186c Agent   * Added update {DE323AF5-28CA-4BAB-A85B-B074001783BF}.1 to search result
    2014-10-07 15:33:29:220  936 186c Agent   * Added update {E44E8654-728E-49D5-A3A3-4BCFCBEF56C0}.1 to search result
    2014-10-07 15:33:29:220  936 186c Agent   * Added update {B7E8218C-20B2-4F04-B7E8-D3228A9B8546}.1 to search result
    2014-10-07 15:33:29:220  936 186c Agent   * Added update {2DDF83CB-B38E-443E-8BD9-A92D564A2851}.1 to search result
    2014-10-07 15:33:29:220  936 186c Agent   * Added update {E94B5DA8-C4D4-48BE-A54F-76AFB13A318F}.1 to search result
    2014-10-07 15:33:29:220  936 186c Agent   * Added update {B3411B62-63F7-44F2-999B-BCDFF13306B9}.1 to search result
    2014-10-07 15:33:29:220  936 186c Agent   * Added update {D87FA2B6-A04D-4920-92AE-7C6586F98ED4}.1 to search result
    2014-10-07 15:33:29:220  936 186c Agent   * Added update {00563009-B9BF-43A4-8B4E-5ACE3172912B}.2 to search result
    2014-10-07 15:33:29:220  936 186c Agent   * Added update {D73327BD-8697-4486-9AFC-70C59746203D}.1 to search result
    2014-10-07 15:33:29:220  936 186c Agent   * Added update {CE28408E-E7D6-4846-A8EA-A195793146B2}.1 to search result
    2014-10-07 15:33:29:220  936 186c Agent   * Added update {2FA08060-64AE-4346-AC95-242853B9F810}.1 to search result
    2014-10-07 15:33:29:220  936 186c Agent   * Added update {ED11C6E2-F7CB-4A7F-8802-7EE5133526A9}.1 to search result
    2014-10-07 15:33:29:220  936 186c Agent   * Added update {9E03B879-90B1-48D6-9865-5595F857EE9F}.1 to search result
    2014-10-07 15:33:29:220  936 186c Agent   * Added update {A281593D-85FC-43C1-B66C-8D7031952489}.1 to search result
    2014-10-07 15:33:29:220  936 186c Agent   * Added update {EEEC4FAF-41B2-467D-BE87-7617505E92B6}.1 to search result
    2014-10-07 15:33:29:220  936 186c Agent   * Added update {57D48F6B-2C9E-468C-9BFC-4D3E090A0BC6}.1 to search result
    2014-10-07 15:33:29:220  936 186c Agent   * Added update {63872F34-415D-4C31-BD17-013E892F1358}.1 to search result
    2014-10-07 15:33:29:220  936 186c Agent   * Added update {EA8829A8-226D-409A-A17C-1A2E2BF0BF2D}.1 to search result
    2014-10-07 15:33:29:220  936 186c Agent   * Added update {65BC05C5-944E-4685-B961-91B8ED14E09E}.1 to search result
    2014-10-07 15:33:29:220  936 186c Agent   * Added update {B8AA2946-F586-47B1-A953-07D15B64446F}.1 to search result
    2014-10-07 15:33:29:220  936 186c Agent   * Added update {BD56C6B6-5467-42ED-A1A3-75FD751815B0}.1 to search result
    2014-10-07 15:33:29:220  936 186c Agent   * Added update {BB57D17A-B3DC-4D85-BF6C-EE3D304D5737}.1 to search result
    2014-10-07 15:33:29:220  936 186c Agent   * Found 24 updates and 40 categories in search; evaluated appl. rules of 105 out of 137 deployed entities
    2014-10-07 15:33:29:221  936 186c Agent *********
    2014-10-07 15:33:29:221  936 186c Agent **  END  **  Agent: Finding updates [CallerId = Windows Update Command Line  Id = 70]

    Sorry if I am posting too much of the log file:
    2014-10-23 09:34:35:207  936 1ff4 Agent *************
    2014-10-23 09:34:35:207  936 1ff4 Agent ** START **  Agent: Finding updates [CallerId = AutomaticUpdates  Id = 25]
    2014-10-23 09:34:35:207  936 1ff4 Agent *********
    2014-10-23 09:34:35:207  936 1ff4 Agent   * Online = No; Ignore download priority = No
    2014-10-23 09:34:35:207  936 1ff4 Agent   * Criteria = "IsInstalled=0 and DeploymentAction='Installation' or IsPresent=1 and DeploymentAction='Uninstallation' or IsInstalled=1 and DeploymentAction='Installation' and RebootRequired=1
    or IsInstalled=0 and DeploymentAction='Uninstallation' and RebootRequired=1"
    2014-10-23 09:34:35:207  936 1ff4 Agent   * ServiceID = {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782} Third party service
    2014-10-23 09:34:35:207  936 1ff4 Agent   * Search Scope = {Current User}
    2014-10-23 09:34:35:207  936 1ff4 Agent   * Caller SID for Applicability: S-1-5-21-2026328644-1534031742-38565284-21128
    2014-10-23 09:34:35:821  936 1ff4 Agent   * Added update {C21E26AB-BFEE-425B-BD0B-C0043B81B034}.1 to search result
    2014-10-23 09:34:35:821  936 1ff4 Agent   * Added update {F944750C-BED6-4116-BFC4-91361F87CE97}.1 to search result
    2014-10-23 09:34:35:821  936 1ff4 Agent   * Added update {AE53F50B-1F53-4E10-93A2-7005AD671608}.100 to search result
    2014-10-23 09:34:35:821  936 1ff4 Agent   * Added update {17A599BB-6485-4405-89C1-77A260C078D9}.100 to search result
    2014-10-23 09:34:35:821  936 1ff4 Agent   * Added update {1E536662-7256-42FA-9373-7A009A14400B}.100 to search result
    2014-10-23 09:34:35:821  936 1ff4 Agent   * Added update {BB8EED48-5EB9-481D-A043-D8BE51942055}.1 to search result
    2014-10-23 09:34:35:821  936 1ff4 Agent   * Added update {4849182B-70A4-4A3F-9FF9-054D8BCDCDDD}.1 to search result
    2014-10-23 09:34:35:821  936 1ff4 Agent   * Found 7 updates and 40 categories in search; evaluated appl. rules of 95 out of 158 deployed entities
    2014-10-23 09:34:35:821  936 1ff4 Agent *********
    2014-10-23 09:34:35:821  936 1ff4 Agent **  END  **  Agent: Finding updates [CallerId = AutomaticUpdates  Id = 25]
    2014-10-23 09:34:35:821  936 1ff4 Agent *************
    2014-10-23 09:34:35:821  936 1ff4 Agent Removing per user update {EC9994ED-440F-4AFC-A0FA-CB90285A1226} from search result since it applies to no users
    2014-10-23 09:34:35:821  936 1ff4 IdleTmr WU operation (CSearchCall::Init ID 25, operation # 179) stopped; does not use network; is at background priority
    2014-10-23 09:34:35:821  936 1ff4 IdleTmr WU operation (CSearchCall::Init ID 4, operation # 153) stopped; does not use network; is at background priority
    2014-10-23 09:34:35:837  936 1db0 AU >>##  RESUMED  ## AU: Search for updates [CallId = {FD3E1275-77A9-486E-966C-356F504EECA3} ServiceId = {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}]
    2014-10-23 09:34:35:837  936 1db0 AU   # 25 updates detected
    2014-10-23 09:34:35:837  936 1db0 AU #########
    2014-10-23 09:34:35:837  936 1db0 AU ##  END  ##  AU: Search for updates  [CallId = {FD3E1275-77A9-486E-966C-356F504EECA3} ServiceId = {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}]
    2014-10-23 09:34:35:837  936 1db0 AU #############
    2014-10-23 09:34:35:837  936 1db0 AU All AU searches complete.
    2014-10-23 09:34:35:837  936 1db0 AU Adding timer:
    2014-10-23 09:34:35:837  936 1db0 AU     Timer: 31DA7559-FE27-4810-8FF6-987195B1FD98, Expires 2014-10-23 15:43:33, not idle-only, not network-only
    2014-10-23 09:34:35:837  936 1db0 AU   # Publishing WNF Per user update count event Count: 20 SID {S-1-5-21-2944061896-1139597750-3336218179-1001} Service {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}
    2014-10-23 09:34:35:837  936 1db0 AU   # Publishing WNF Per user update count event Count: 14 SID {S-1-5-21-2026328644-1534031742-38565284-31239} Service {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}
    2014-10-23 09:34:35:837  936 1db0 AU   # Publishing WNF Per user update count event Count: 11 SID {S-1-5-21-2026328644-1534031742-38565284-2061} Service {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}
    2014-10-23 09:34:35:837  936 1db0 AU   # Publishing WNF Per user update count event Count: 14 SID {S-1-5-21-2026328644-1534031742-38565284-2065} Service {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}
    2014-10-23 09:34:35:837  936 1db0 AU   # Publishing WNF Per user update count event Count: 13 SID {S-1-5-21-2026328644-1534031742-38565284-8465} Service {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}
    2014-10-23 09:34:35:837  936 1db0 AU   # Publishing WNF Per user update count event Count: 15 SID {S-1-5-21-2026328644-1534031742-38565284-11034} Service {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}
    2014-10-23 09:34:35:837  936 1db0 AU   # Publishing WNF Per user update count event Count: 11 SID {S-1-5-21-2026328644-1534031742-38565284-13341} Service {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}
    2014-10-23 09:34:35:837  936 1db0 AU   # Publishing WNF Per user update count event Count: 14 SID {S-1-5-21-2026328644-1534031742-38565284-24355} Service {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}
    2014-10-23 09:34:35:837  936 1db0 AU   # Publishing WNF Per user update count event Count: 0 SID {S-1-5-21-2026328644-1534031742-38565284-18802} Service {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}
    2014-10-23 09:34:35:837  936 1db0 AU   # Publishing WNF Per user update count event Count: 15 SID {S-1-5-21-2026328644-1534031742-38565284-14209} Service {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}
    2014-10-23 09:34:35:837  936 1db0 AU   # Publishing WNF Per user update count event Count: 14 SID {S-1-5-21-2026328644-1534031742-38565284-20353} Service {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}
    2014-10-23 09:34:35:837  936 1db0 AU   # Publishing WNF Per user update count event Count: 14 SID {S-1-5-21-2026328644-1534031742-38565284-10627} Service {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}
    2014-10-23 09:34:35:837  936 1db0 AU   # Publishing WNF Per user update count event Count: 1 SID {S-1-5-21-2026328644-1534031742-38565284-22425} Service {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}
    2014-10-23 09:34:35:837  936 1db0 AU   # Publishing WNF Per user update count event Count: 15 SID {S-1-5-21-2026328644-1534031742-38565284-24256} Service {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}
    2014-10-23 09:34:35:837  936 1db0 AU   # Publishing WNF Per user update count event Count: 13 SID {S-1-5-21-2026328644-1534031742-38565284-13251} Service {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}
    2014-10-23 09:34:35:837  936 1db0 AU   # Publishing WNF Per user update count event Count: 14 SID {S-1-5-21-2026328644-1534031742-38565284-14279} Service {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}
    2014-10-23 09:34:35:853  936 1db0 AU   # Publishing WNF Per user update count event Count: 14 SID {S-1-5-21-2026328644-1534031742-38565284-30666} Service {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}
    2014-10-23 09:34:35:853  936 1db0 AU   # Publishing WNF Per user update count event Count: 11 SID {S-1-5-21-2026328644-1534031742-38565284-500} Service {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}
    2014-10-23 09:34:35:853  936 1db0 AU   # Publishing WNF Per user update count event Count: 14 SID {S-1-5-21-2944061896-1139597750-3336218179-500} Service {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}
    2014-10-23 09:34:35:853  936 1db0 AU   # Publishing WNF Per user update count event Count: 2 SID {S-1-5-21-2026328644-1534031742-38565284-30713} Service {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}
    2014-10-23 09:34:35:853  936 1db0 AU   # Publishing WNF Per user update count event Count: 0 SID {S-1-5-21-2026328644-1534031742-38565284-21128} Service {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}
    2014-10-23 09:36:57:217  936 1b6c Misc WARNING:     IsSessionRemote: WinStationQueryInformationW(WTSIsRemoteSession) failed for session 1, GetLastError=2250
    2014-10-23 09:36:57:999  936 1b6c Misc WARNING:     IsSessionRemote: WinStationQueryInformationW(WTSIsRemoteSession) failed for session 1, GetLastError=2250
    2014-10-23 09:36:58:233  936 1b6c Misc WARNING:     IsSessionRemote: WinStationQueryInformationW(WTSIsRemoteSession) failed for session 1, GetLastError=2250
    2014-10-23 09:37:05:023  936 1b6c Misc WARNING:     IsSessionRemote: WinStationQueryInformationW(WTSIsRemoteSession) failed for session 1, GetLastError=2250
    2014-10-23 09:43:11:935  936 151c SLS Retrieving SLS response from server using ETAG "rb8COOsTDgXFc0zxoL6zacOQpaa9aiTtEjb2yq2aUaA=_1440"...
    2014-10-23 09:43:11:998  936 151c SLS Making request with URL
    HTTPS://sls.update.microsoft.com/SLS/{117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}/x64/6.3.9600.0/0?CH=454&L=en-US&P=&PT=0x4&WUA=7.9.9600.17336&AM=0&SCV=788
    2014-10-23 09:43:16:243  936 151c EP Got 117CAB2D-82B1-4B5A-A08C-4D62DBEE7782 redir Client/Server URL: "https://fe2.ws.microsoft.com/v6/ClientWebService/client.asmx"
    2014-10-23 09:43:16:321  936 151c EP Got 117CAB2D-82B1-4B5A-A08C-4D62DBEE7782 redir Reporting URL: "http://statsfe2.ws.microsoft.com/ReportingWebService/ReportingWebService.asmx"
    2014-10-23 09:43:16:321  936 151c Report OpenReportingWebServiceConnection, reporting URL =
    http://statsfe2.ws.microsoft.com/ReportingWebService/ReportingWebService.asmx
    2014-10-23 09:43:16:321  936 151c IdleTmr WU operation (CLegacyEventUploader::HandleEvents) started; operation # 290; does use network; is at background priority
    2014-10-23 09:43:16:321  936 151c Report Uploading 1 events using cached cookie.
    2014-10-23 09:43:16:947  936 151c Report Reporter successfully uploaded 1 events.
    2014-10-23 09:43:16:947  936 151c IdleTmr WU operation (CLegacyEventUploader::HandleEvents, operation # 290) stopped; does use network; is at background priority
    2014-10-23 09:51:16:954  936 151c Report WARNING: CSerializationHelper:: InitSerialize failed : 0x80070002
    2014-10-23 09:53:16:960  936 1108 AU Earliest future timer found:
    2014-10-23 09:53:16:960  936 1108 AU     Timer: 31DA7559-FE27-4810-8FF6-987195B1FD98, Expires 2014-10-23 15:43:33, not idle-only, not network-only
    2014-10-23 09:53:17:960  936 1b6c AU ###########  AU: Uninitializing Automatic Updates  ###########
    2014-10-23 09:53:18:960  936 1b6c WuTask Uninit WU Task Manager
    2014-10-23 09:53:19:288  936 1b6c WuTask WARNING: SessionConnectHandler, could not validate and register task, error = 0x80070534
    2014-10-23 09:53:19:288  936 1b6c Agent Sending shutdown notification to client
    2014-10-23 09:53:19:288  936 1b6c AU Earliest future timer found:
    2014-10-23 09:53:19:288  936 1b6c AU     Timer: 31DA7559-FE27-4810-8FF6-987195B1FD98, Expires 2014-10-23 15:43:33, not idle-only, not network-only
    2014-10-23 09:53:19:491  936 1b6c AU Earliest future timer found:
    2014-10-23 09:53:19:491  936 1b6c AU     Timer: 31DA7559-FE27-4810-8FF6-987195B1FD98, Expires 2014-10-23 15:43:33, not idle-only, not network-only
    2014-10-23 09:53:19:788  936 1b6c Service *********
    2014-10-23 09:53:19:788  936 1b6c Service **  END  **  Service: Service exit [Exit code = 0x240001]
    2014-10-23 09:53:19:788  936 1b6c Service *************
    2014-10-23 11:49:51:818  936 1dac Misc ===========  Logging initialized (build: 7.9.9600.17336, tz: +1000)  ===========
    2014-10-23 11:49:51:818  936 1dac Misc   = Process: C:\Windows\system32\svchost.exe
    2014-10-23 11:49:51:818  936 1dac Misc   = Module: c:\windows\system32\wuaueng.dll
    2014-10-23 11:49:51:818  936 1dac Service *************
    2014-10-23 11:49:51:818  936 1dac Service ** START **  Service: Service startup
    2014-10-23 11:49:51:818  936 1dac Service *********
    2014-10-23 11:49:51:833  936 1dac IdleTmr Non-AoAc machine.  Aoac operations will be ignored.
    2014-10-23 11:49:51:833  936 1dac Agent   * WU client version 7.9.9600.17336
    2014-10-23 11:49:51:833  936 1dac Agent WARNING: SleepStudyTracker: Machine is non-AOAC. Sleep study tracker disabled.
    2014-10-23 11:49:51:833  936 1dac Agent   * Base directory: C:\Windows\SoftwareDistribution
    2014-10-23 11:49:51:833  936 1dac Agent   * Access type: No proxy
    2014-10-23 11:49:51:833  936 1dac Service UpdateNetworkState Ipv6, cNetworkInterfaces = 1.
    2014-10-23 11:49:51:833  936 1dac Service UpdateNetworkState Ipv4, cNetworkInterfaces = 1.
    2014-10-23 11:49:51:833  936 1dac Agent   * Network state: Connected
    2014-10-23 11:49:51:833  936 1dac Service UpdateNetworkState Ipv6, cNetworkInterfaces = 1.
    2014-10-23 11:49:51:833  936 1dac Service UpdateNetworkState Ipv4, cNetworkInterfaces = 1.
    2014-10-23 11:49:51:849  936 1dac Agent ***********  Agent: Initializing global settings cache  ***********
    2014-10-23 11:49:51:849  936 1dac Agent   * Endpoint Provider: 00000000-0000-0000-0000-000000000000
    2014-10-23 11:49:51:849  936 1dac Agent   * WSUS server:
    http://hccsus01:8530/
    2014-10-23 11:49:51:849  936 1dac Agent   * WSUS status server:
    http://hccsus01:8530/
    2014-10-23 11:49:51:849  936 1dac Agent   * Target group: (Unassigned Computers)
    2014-10-23 11:49:51:849  936 1dac Agent   * Windows Update access disabled: No
    2014-10-23 11:49:51:849  936 1dac WuTask WuTaskManager delay initialize completed successfully..
    2014-10-23 11:49:51:849  936 1dac AU     Timer: 31DA7559-FE27-4810-8FF6-987195B1FD98, Expires 2014-10-23 15:43:33, not idle-only, not network-only
    2014-10-23 11:49:51:849  936 1dac AU     Timer: CF1ABEC6-7887-4964-BB93-B2E21B31CEC1, Expires 2014-10-23 21:44:50, not idle-only, not network-only
    2014-10-23 11:49:51:849  936 1dac AU     Timer: 29A863E7-8609-4D1E-B7CD-5668F857F1DB, Expires 2014-10-23 21:44:46, not idle-only, not network-only
    2014-10-23 11:49:51:849  936 1dac AU     Timer: E25CADF6-86A6-4569-BCDF-89BE66B0CA66, Expires 2014-10-24 21:33:11, not idle-only, not network-only
    2014-10-23 11:49:51:849  936 1dac Report WARNING: CSerializationHelper:: InitSerialize failed : 0x80070002
    2014-10-23 11:49:51:849  936 1dac Report CWERReporter::Init succeeded
    2014-10-23 11:49:51:849  936 1dac Agent ***********  Agent: Initializing Windows Update Agent  ***********
    2014-10-23 11:49:51:849  936 1dac DnldMgr Download manager restoring 0 downloads
    2014-10-23 11:49:51:849  936 1dac AU ###########  AU: Initializing Automatic Updates  ###########
    2014-10-23 11:49:51:849  936 1dac AU Additional Service {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782} with Approval type {Scheduled} added to AU services list
    2014-10-23 11:49:51:849  936 1dac AU AIR Mode is disabled
    2014-10-23 11:49:51:849  936 1dac AU   # Policy Driven Provider:
    http://hccsus01:8530/
    2014-10-23 11:49:51:849  936 1dac AU   # Detection frequency: 22
    2014-10-23 11:49:51:849  936 1dac AU   # Approval type: Scheduled (Policy)
    2014-10-23 11:49:51:849  936 1dac AU   # Auto-install minor updates: Yes (User preference)
    2014-10-23 11:49:51:849  936 1dac AU   # ServiceTypeDefault: Service 117CAB2D-82B1-4B5A-A08C-4D62DBEE7782 Approval type: (Scheduled)
    2014-10-23 11:49:51:849  936 1dac AU   # Will interact with non-admins (Non-admins are elevated (User preference))
    2014-10-23 11:49:51:865  936 1dac AU WARNING: Failed to get Wu Exemption info from NLM, assuming not exempt, error = 0x80070032
    2014-10-23 11:49:51:974  936 1dac AU AU finished delayed initialization
    2014-10-23 11:49:52:287  936 2340 DnldMgr Asking handlers to reconcile their sandboxes
    2014-10-23 11:59:52:061  936 2338 AU Earliest future timer found:
    2014-10-23 11:59:52:061  936 2338 AU     Timer: 31DA7559-FE27-4810-8FF6-987195B1FD98, Expires 2014-10-23 15:43:33, not idle-only, not network-only
    2014-10-23 11:59:53:061  936 1dac AU ###########  AU: Uninitializing Automatic Updates  ###########
    2014-10-23 11:59:53:123  936 1dac WuTask Uninit WU Task Manager
    2014-10-23 11:59:53:232  936 1dac WuTask WARNING: SessionConnectHandler, could not validate and register task, error = 0x80070534
    2014-10-23 11:59:53:232  936 1dac AU Earliest future timer found:
    2014-10-23 11:59:53:232  936 1dac AU     Timer: 31DA7559-FE27-4810-8FF6-987195B1FD98, Expires 2014-10-23 15:43:33, not idle-only, not network-only
    2014-10-23 11:59:53:311  936 1dac AU Earliest future timer found:
    2014-10-23 11:59:53:311  936 1dac AU     Timer: 31DA7559-FE27-4810-8FF6-987195B1FD98, Expires 2014-10-23 15:43:33, not idle-only, not network-only
    2014-10-23 11:59:53:436  936 1dac Service *********
    2014-10-23 11:59:53:436  936 1dac Service **  END  **  Service: Service exit [Exit code = 0x240001]
    2014-10-23 11:59:53:436  936 1dac Service *************

  • Error while joining server to Srv Pool. Visible only on 1 server out of 9

    Hello,
    I am hiaving issues with joining a server to the server pool
    I have checked the 02cb ond ocfs2 config and they seem to be fine and in line with the other VM servers which are already added to the pool...
    I have checked the DMESG and ovs-operation log and found the below errors.
    The error logs are as follows..
    DMESG
    o2net: accepted connection from node vmclkxtt3bvms09.esptest.aurtest.national.com.au (num 8) at 10.12.72.89:7777
    o2net: accepted connection from node vmclkxtt3bvms07.esptest.aurtest.national.com.au (num 6) at 10.12.72.87:7777
    OCFS2 1.4.4
    o2dlm: Nodes in domain 55465DB6F3604834910621BF4D229455: 0 1 2 3 4 5 6 7 8
    (mount.ocfs2,11035,0):ocfs2_find_slot:243 ERROR: no free slots available!
    (mount.ocfs2,11035,0):ocfs2_mount_volume:1461 ERROR: status = -22
    ocfs2: Unmounting device (253,12) on (node 4)
    o2net: no longer connected to node vmclkxtt3bvms01.esptest.aurtest.national.com.au (num 0) at 10.12.72.81:7777
    o2net: no longer connected to node vmclkxtt3bvms02.esptest.aurtest.national.com.au (num 1) at 10.12.72.82:7777
    o2net: no longer connected to node vmclkxtt3bvms03.esptest.aurtest.national.com.au (num 2) at 10.12.72.83:7777
    ovs-operation.log
    "2011-08-15 11:52:40" INFO=> ha_set_shutdown_mode: inform master agent, leave shutdown mode.
    "2011-08-15 11:52:40" DEBUG=> ha_set_shutdown_mode: no master access information available.
    "2011-08-15 11:52:40" INFO=> ha_set_shutdown_mode: remove shutdown mode flag.
    "2011-08-15 12:14:36" INFO=> registered_hostname: hostname=10.12.72.85 => {"status": "SUCC"}
    "2011-08-15 12:14:39" INFO=> clusterm_start_o2cb_service: reloading config from /etc/ocfs2/cluster.conf ...
    "2011-08-15 12:14:40" INFO=> clusterm_start_o2cb_service: => {"status": "SUCC"}
    "2011-08-15 12:14:48" INFO=> ha_get_hostname_ip: hostname=vmclkxtt3bvms05.esptest.aurtest.national.com.au;ip=10.12.72.85
    "2011-08-15 12:14:49" INFO=> ha_check_ovs_mount: success.
    "2011-08-15 12:14:50" INFO=> ha_get_ocfs2_config: success. nodes=ocfs2:8:10.12.72.89:7777,ocfs2:7:10.12.72.88:7777,ocfs2:6:10.12.7
    2.87:7777,ocfs2:5:10.12.72.86:7777,ocfs2:4:10.12.72.85:7777,ocfs2:3:10.12.72.84:7777,ocfs2:2:10.12.72.83:7777,ocfs2:1:10.12.72.82:
    7777,ocfs2:0:10.12.72.81:7777
    "2011-08-15 12:15:05" ERROR=> clusterm_init_root_sr: <Exception: mount.ocfs2: Invalid argument while mounting /dev/mapper/mpath1p1
    on /var/ovs/mount/DD741D59C40B42E797C193A6B8442B21. Check 'dmesg' for more information on this error.StackTrace:
    File "/opt/ovs-agent-2.3/OVSXCluster.py", line 115, in clusterm_init_root_sr
    sr.initialize()
    File "/opt/ovs-agent-2.3/_storage/OVSFileSR.py", line 127, in initialize
    self.sp.mount(mp)
    File "/opt/ovs-agent-2.3/_storage/plugins/OVSFileSP.py", line 237, in mount
    raise Exception(output)
    "2011-08-15 12:15:33" INFO=> unregister_hostname: success.
    "2011-08-15 12:15:33" INFO=> clusterm_teardown: success.
    "2011-08-15 12:26:33" INFO=> ha_set_shutdown_mode: inform master agent, leave shutdown mode.
    "2011-08-15 12:26:33" DEBUG=> ha_set_shutdown_mode: no master access information available.
    "2011-08-15 12:26:33" INFO=> ha_set_shutdown_mode: remove shutdown mode flag.
    "2011-08-15 12:39:50" INFO=> registered_hostname: hostname=10.12.72.85 => {"status": "SUCC"}
    "2011-08-15 12:39:54" INFO=> clusterm_start_o2cb_service: reloading config from /etc/ocfs2/cluster.conf ...
    "2011-08-15 12:39:55" INFO=> clusterm_start_o2cb_service: => {"status": "SUCC"}
    "2011-08-16 12:35:20" INFO=> clusterm_init_sr: success.
    "2011-08-16 12:35:34" ERROR=> clusterm_init_root_sr: <Exception: mount.ocfs2: Invalid argument while mounting /dev/mapper/OVS1p1 o
    /var/ovs/mount/DD741D59C40B42E797C193A6B8442B21. Check 'dmesg' for more information on this error.StackTrace:
    File "/opt/ovs-agent-2.3/OVSXCluster.py", line 115, in clusterm_init_root_sr
    sr.initialize()
    File "/opt/ovs-agent-2.3/_storage/OVSFileSR.py", line 127, in initialize
    self.sp.mount(mp)
    File "/opt/ovs-agent-2.3/_storage/plugins/OVSFileSP.py", line 237, in mount
    raise Exception(output)
    "2011-08-16 12:35:34" INFO=> ha_set_shutdown_mode: inform master agent, leave shutdown mode.
    "2011-08-16 12:35:34" DEBUG=> ha_set_shutdown_mode: no master access information available.
    "2011-08-16 12:35:34" INFO=> ha_set_shutdown_mode: remove shutdown mode flag.
    "2011-08-17 10:57:43" INFO=> unregister_hostname: success.
    "2011-08-17 10:57:43" INFO=> clusterm_teardown: success.
    "2011-08-17 11:02:54" INFO=> registered_hostname: hostname=10.12.72.85 => {"status": "SUCC"}
    "2011-08-17 11:02:57" INFO=> clusterm_start_o2cb_service: reloading config from /etc/ocfs2/cluster.conf ...
    "2011-08-17 11:02:58" INFO=> clusterm_start_o2cb_service: => {"status": "SUCC"}
    "2011-08-17 11:03:06" INFO=> ha_get_hostname_ip: hostname=vmclkxtt3bvms05.esptest.aurtest.national.com.au;ip=10.12.72.85
    "2011-08-17 11:03:07" INFO=> ha_check_ovs_mount: success.
    "2011-08-17 11:03:07" INFO=> ha_get_ocfs2_config: success. nodes=ocfs2:8:10.12.72.89:7777,ocfs2:7:10.12.72.88:7777,ocfs2:6:10.12.7
    2.87:7777,ocfs2:5:10.12.72.86:7777,ocfs2:4:10.12.72.85:7777,ocfs2:3:10.12.72.84:7777,ocfs2:2:10.12.72.83:7777,ocfs2:1:10.12.72.82:
    7777,ocfs2:0:10.12.72.81:7777
    "2011-08-17 11:03:22" ERROR=> clusterm_init_root_sr: <Exception: mount.ocfs2: Invalid argument while mounting /dev/mapper/OVS1p1 o
    /var/ovs/mount/DD741D59C40B42E797C193A6B8442B21. Check 'dmesg' for more information on this error.StackTrace:
    File "/opt/ovs-agent-2.3/OVSXCluster.py", line 115, in clusterm_init_root_sr
    sr.initialize()
    File "/opt/ovs-agent-2.3/_storage/OVSFileSR.py", line 127, in initialize
    self.sp.mount(mp)
    File "/opt/ovs-agent-2.3/_storage/plugins/OVSFileSP.py", line 237, in mount
    raise Exception(output)
    "2011-08-18 09:31:32" INFO=> unregister_hostname: success.
    "2011-08-18 09:31:32" INFO=> clusterm_teardown: success.
    I ALSO rebooted the rest of the servers and ran an fsck.ocfs2 on all the shared repos. and the output is as below.. (just incase helps in TS..)
    [root@vmclkxtt3bvms05 ~]# fsck.ocfs2 /dev/mapper/OVS1p1
    fsck.ocfs2 1.4.3
    fsck.ocfs2: Could not create domain while initializing the DLM
    [root@vmclkxtt3bvms05 ~]# fsck.ocfs2 /dev/mapper/OVS2p1
    fsck.ocfs2 1.4.3
    Checking OCFS2 filesystem in /dev/mapper/OVS2p1:
    label: <NONE>
    uuid: f2 1e e8 69 21 6d 4e df a7 7e bd 12 55 3c 23 71
    number of blocks: 142731492
    bytes per block: 4096
    number of clusters: 142731492
    bytes per cluster: 4096
    max slots: 8
    /dev/mapper/OVS2p1 is clean. It will be checked after 20 additional mounts.
    [root@vmclkxtt3bvms05 ~]# fsck.ocfs2 /dev/mapper/OVS1p1
    fsck.ocfs2 1.4.3
    fsck.ocfs2: Could not create domain while initializing the DLM
    [root@vmclkxtt3bvms05 ~]# fsck.ocfs2 /dev/mapper/OVS3p1
    fsck.ocfs2 1.4.3
    Checking OCFS2 filesystem in /dev/mapper/OVS3p1:
    label: <NONE>
    uuid: 9d 08 3e e1 c5 e2 4e d8 a5 19 2e 1d 47 3a 0c 8e
    number of blocks: 142731492
    bytes per block: 4096
    number of clusters: 142731492
    bytes per cluster: 4096
    max slots: 8
    /dev/mapper/OVS3p1 is clean. It will be checked after 20 additional mounts.
    [root@vmclkxtt3bvms05 ~]#
    [root@vmclkxtt3bvms05 ~]# fsck.ocfs2 /dev/mapper/OVS4p1
    fsck.ocfs2 1.4.3
    Checking OCFS2 filesystem in /dev/mapper/OVS4p1:
    label: <NONE>
    uuid: 08 ee 37 92 5b 1c 4e a0 97 6b 39 6a 67 d5 6d 7f
    number of blocks: 142731492
    bytes per block: 4096
    number of clusters: 142731492
    bytes per cluster: 4096
    max slots: 8
    /dev/mapper/OVS4p1 is clean. It will be checked after 20 additional mounts.
    Aug 18 09:50:27 vmclkxtt3bvms05 kernel: o2net: accepted connection from node vmclkxtt3bvms06.esptest.aurtest.national.com.au (num 5) at 10.12.72.86:7777
    Aug 18 09:50:56 vmclkxtt3bvms05 kernel: (o2net,4013,0):o2net_connect_expired:1667 ERROR: no connection established with node 8 after 30.0 seconds, giving up and returning errors.
    Aug 18 09:50:56 vmclkxtt3bvms05 kernel: (fsck.ocfs2,4101,0):dlm_request_join:1043 ERROR: Error -107 when sending message 510 (key 0x666c6172) to node 8
    Aug 18 09:50:56 vmclkxtt3bvms05 kernel: (fsck.ocfs2,4101,0):dlm_try_to_join_domain:1219 ERROR: status = -107
    Aug 18 09:50:56 vmclkxtt3bvms05 kernel: (fsck.ocfs2,4101,0):dlm_join_domain:1497 ERROR: status = -107
    Aug 18 09:50:56 vmclkxtt3bvms05 kernel: (fsck.ocfs2,4101,0):dlm_register_domain:1763 ERROR: status = -107
    Aug 18 09:50:56 vmclkxtt3bvms05 kernel: (fsck.ocfs2,4101,0):user_dlm_register_context:673 ERROR: status = -107
    Aug 18 09:50:56 vmclkxtt3bvms05 kernel: (fsck.ocfs2,4101,0):dlmfs_mkdir:493 ERROR: Error -107 could not register domain "55465DB6F3604834910621BF4D229455"
    Aug 18 09:50:56 vmclkxtt3bvms05 kernel: o2net: no longer connected to node vmclkxtt3bvms06.esptest.aurtest.national.com.au (num 5) at 10.12.72.86:7777
    Aug 18 09:51:09 vmclkxtt3bvms05 kernel: o2dlm: Nodes in domain F21EE869216D4EDFA77EBD12553C2371: 4
    Aug 18 09:51:12 vmclkxtt3bvms05 puppetd[10246]: Could not request certificate: getaddrinfo: Temporary failure in name resolution
    Aug 18 09:51:23 vmclkxtt3bvms05 kernel: o2net: accepted connection from node vmclkxtt3bvms06.esptest.aurtest.national.com.au (num 5) at 10.12.72.86:7777
    Aug 18 09:51:50 vmclkxtt3bvms05 kernel: (fsck.ocfs2,4113,0):dlm_join_domain:1477 Timed out joining dlm domain 55465DB6F3604834910621BF4D229455 after 92000 msecs
    Aug 18 09:51:50 vmclkxtt3bvms05 kernel: (fsck.ocfs2,4113,0):dlmfs_mkdir:493 ERROR: Error -512 could not register domain "55465DB6F3604834910621BF4D229455"
    Aug 18 09:51:51 vmclkxtt3bvms05 kernel: o2net: no longer connected to node vmclkxtt3bvms06.esptest.aurtest.national.com.au (num 5) at 10.12.72.86:7777
    Aug 18 09:52:02 vmclkxtt3bvms05 kernel: o2dlm: Nodes in domain 9D083EE1C5E24ED8A5192E1D473A0C8E: 4
    Aug 18 09:52:17 vmclkxtt3bvms05 kernel: o2dlm: Nodes in domain 08EE37925B1C4EA0976B396A67D56D7F: 4
    PLS help. Thanks.

    Deven Shanbhag wrote:
    I have checked the DMESG and ovs-operation log and found the below errors.
    (mount.ocfs2,11035,0):ocfs2_find_slot:243 ERROR: no free slots available!Your OCFS2 volume only has 8 node slots, so you can't add a 9th server. You need to use tune.ocfs2 to increase the number of node slots for the OCFS2 filesystem.

  • 0xc1900101 - 0x30018 Error during update - restore Win8

    Hey,
    I've tried to install the Win 8.1 Update via the Windows Store and got the 0xc1900101 - 0x30018 several times after the PC restarted at the ending of the update.
    I know that several users solved this with disabling drivers, so I did some suggestions I've found.
    1. Disabling AV (Kaspersky)
    2. Disabling LAN Controllers
    3. Uninstalling DAEMON Tools, TuneUp
    4.
    --> DISM.exe /Online /Cleanup-image /Restorehealth
    --> sfc /scannow  
    --> wsreset.exe
    5. Trying to repair Windows Update itself via "WindowsUpdateDiagnostic.diagcab"
    6. Disabling AIDA
    7. Disabling all components from my ASUS motherboard
    some other things I can't remember...
    For your information, I don't want to install Windows 8.1 from scratch, as I have too many programs and I never had problems with installing an OS for this system (Win7, Win8).
    Thanks for the help
    UpdateLog:
    2013-10-17 21:31:41:150 5840 25f4 Handler Deleting setup file '9600.16415.winblue_refresh.130928-2229_x64fre_client_Professionalwmc_gdr_de-de-IR1_CPWMCA_X64FRER_DE-DE_ESD.esd'
    2013-10-17 21:31:41:150 5840 25f4 Handler : Installer completed. Process return code = 0x00000000, result = 0x00000000, callback pending = true
    2013-10-17 21:31:41:157 5840 25f4 Handler :::::::::
    2013-10-17 21:31:41:157 5840 25f4 Handler :: END :: Handler: Windows Setup Install
    2013-10-17 21:31:41:157 5840 25f4 Handler :::::::::::::
    2013-10-17 21:31:41:162 1064 3218 AU Preventing expiration of polled reporting events until next restart
    2013-10-17 21:31:41:173 1064 3218 Agent *********
    2013-10-17 21:31:41:173 1064 3218 Agent ** END ** Agent: Installing updates [CallerId = WSAcquisition]
    2013-10-17 21:31:41:173 1064 3218 Agent *************
    2013-10-17 21:31:43:159 1064 40 Report REPORT EVENT: {7FFACF7E-F753-443F-A260-896F9107D234} 2013-10-17 21:31:43:159+0200 1 201 [AGENT_INSTALLING_PENDING] 101 {17C0EC46-9BED-4791-8E58-D2BE1680F82D} 1 0 WSAcquisition Success Content Install Installation pending.
    2013-10-17 21:31:43:159 1064 40 Report WARNING: CSerializationHelper:: InitSerialize failed : 0x80070002
    2013-10-17 21:31:43:160 1064 40 Report WARNING: CSerializationHelper:: InitSerialize failed : 0x80070002
    2013-10-17 21:31:43:160 1064 40 Report CWERReporter finishing event handling. (00000000)
    2013-10-17 21:31:43:161 1064 40 Report WARNING: CSerializationHelper:: InitSerialize failed : 0x80070002
    2013-10-17 21:31:43:225 1064 40 EP Got 117CAB2D-82B1-4B5A-A08C-4D62DBEE7782 redir Client/Server URL: "consoreds fe2.ws.microsoftconsored/v6/ClientWebService/client.asmx"
    2013-10-17 21:31:43:227 1064 40 PT WARNING: Cached cookie has expired or new PID is available
    2013-10-17 21:31:44:153 1064 40 EP Got 117CAB2D-82B1-4B5A-A08C-4D62DBEE7782 redir Reporting URL: "consored statsfe2.ws.microsoftconsored/ReportingWebService/ReportingWebService.asmx"
    2013-10-17 21:31:44:154 1064 40 Report Uploading 1 events using cached cookie, reporting URL = consored statsfe2.ws.microsoftconsored/ReportingWebService/ReportingWebService.asmx
    2013-10-17 21:31:44:461 1064 40 Report Reporter successfully uploaded 1 events.
    2013-10-17 21:32:48:971 1064 4248 Shutdwn Checking to see whether install at shutdown is appropriate
    2013-10-17 21:32:48:971 1064 4248 Shutdwn user declined update at shutdown
    2013-10-17 21:32:48:986 1064 4248 AU AU initiates service shutdown
    2013-10-17 21:32:48:986 1064 4248 AU ########### AU: Uninitializing Automatic Updates ###########
    2013-10-17 21:32:48:986 1064 4248 WuTask Uninit WU Task Manager
    2013-10-17 21:32:48:986 1064 4248 WuTask ScheduledInstallTaskHandler, setting scheduled install attempt time to 2013-10-20 19:32:48.
    2013-10-17 21:32:50:236 1064 4248 Agent Sending shutdown notification to client
    2013-10-17 21:32:50:236 1064 4248 Agent Sending shutdown notification to client
    2013-10-17 21:32:50:236 1064 4248 Agent Sending shutdown notification to client
    2013-10-17 21:32:50:236 1064 4248 Agent Sending shutdown notification to client
    2013-10-17 21:32:50:236 1064 4248 Agent Sending shutdown notification to client
    2013-10-17 21:32:50:236 1064 4248 Agent Sending shutdown notification to client
    2013-10-17 21:32:50:236 1064 4248 Agent Sending shutdown notification to client
    2013-10-17 21:32:50:236 1064 4248 Agent Sending shutdown notification to client
    2013-10-17 21:32:50:236 1064 4248 Report CWERReporter finishing event handling. (00000000)
    2013-10-17 21:32:50:924 1064 4248 Service *********
    2013-10-17 21:32:50:924 1064 4248 Service ** END ** Service: Service exit [Exit code = 0x240001]
    2013-10-17 21:32:50:924 1064 4248 Service *************
    2013-10-17 22:08:45:898 1036 154c Misc =========== Logging initialized (build: 7.8.9200.16693, tz: +0200) ===========
    2013-10-17 22:08:45:914 1036 154c Misc = Process: C:\WINDOWS\system32\svchost.exe
    2013-10-17 22:08:45:914 1036 154c Misc = Module: c:\windows\system32\wuaueng.dll
    2013-10-17 22:08:45:883 1036 154c Service *************
    2013-10-17 22:08:45:914 1036 154c Service ** START ** Service: Service startup
    2013-10-17 22:08:45:914 1036 154c Service *********
    2013-10-17 22:08:46:070 1036 154c Agent * WU client version 7.8.9200.16693
    2013-10-17 22:08:46:086 1036 154c Agent * Base directory: C:\WINDOWS\SoftwareDistribution
    2013-10-17 22:08:46:086 1036 154c Agent * Access type: No proxy
    2013-10-17 22:08:46:117 1036 154c Service UpdateNetworkState Ipv6, cNetworkInterfaces = 2.
    2013-10-17 22:08:46:117 1036 154c Service UpdateNetworkState Ipv4, cNetworkInterfaces = 2.
    2013-10-17 22:08:46:117 1036 154c Agent * Network state: Connected
    2013-10-17 22:08:46:180 1036 154c Service UpdateNetworkState Ipv6, cNetworkInterfaces = 2.
    2013-10-17 22:08:46:180 1036 154c Service UpdateNetworkState Ipv4, cNetworkInterfaces = 2.
    2013-10-17 22:08:48:008 1036 154c Agent *********** Agent: Initializing global settings cache ***********
    2013-10-17 22:08:48:008 1036 154c Agent * Endpoint Provider: 00000000-0000-0000-0000-000000000000
    2013-10-17 22:08:48:008 1036 154c Agent * WSUS server: <NULL>
    2013-10-17 22:08:48:008 1036 154c Agent * WSUS status server: <NULL>
    2013-10-17 22:08:48:008 1036 154c Agent * Target group: (Unassigned Computers)
    2013-10-17 22:08:48:008 1036 154c Agent * Windows Update access disabled: No
    2013-10-17 22:08:48:539 1036 154c WuTask WuTaskManager delay initialize completed successfully..
    2013-10-17 22:08:48:695 1036 154c Report WARNING: CSerializationHelper:: InitSerialize failed : 0x80070002
    2013-10-17 22:08:48:695 1036 154c Report CWERReporter::Init succeeded
    2013-10-17 22:08:48:695 1036 154c Agent *********** Agent: Initializing Windows Update Agent ***********
    2013-10-17 22:08:48:805 1036 154c DnldMgr Download manager restoring 0 downloads
    2013-10-17 22:08:48:977 1036 154c AU ########### AU: Initializing Automatic Updates ###########
    2013-10-17 22:08:48:992 1036 154c AU Additional Service {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782} with Approval type {Pre-install notify} added to AU services list
    2013-10-17 22:08:48:992 1036 154c AU AIR Mode is disabled
    2013-10-17 22:08:48:992 1036 154c AU # Approval type: Scheduled (User preference)
    2013-10-17 22:08:48:992 1036 154c AU # Auto-install minor updates: Yes (User preference)
    2013-10-17 22:08:48:992 1036 154c AU # ServiceTypeDefault: Service 117CAB2D-82B1-4B5A-A08C-4D62DBEE7782 Approval type: (Pre-install notify)
    2013-10-17 22:08:48:992 1036 154c AU # Will interact with non-admins (Non-admins are elevated (User preference))
    2013-10-17 22:08:49:289 1036 704 Report WARNING: PostReboot: Failed to update the history status: 0x80248FFF
    2013-10-17 22:08:49:711 1036 154c AU WARNING: Failed to get Wu Exemption info from NLM, assuming not exempt, error = 0x80070032
    2013-10-17 22:08:49:758 1036 154c WuTask ScheduledInstallTaskHandler, setting scheduled install attempt time to 2013-10-20 19:32:48.
    2013-10-17 22:08:50:133 1036 704 Report *********** Report: Initializing static reporting data ***********
    2013-10-17 22:08:50:133 1036 704 Report * OS Version = 6.2.9200.0.0.65792
    2013-10-17 22:08:50:133 1036 704 Report * OS Product Type = 0x00000067
    2013-10-17 22:08:50:164 1036 704 Report * Computer Brand = System manufacturer
    2013-10-17 22:08:50:164 1036 704 Report * Computer Model = System Product Name
    2013-10-17 22:08:50:164 1036 704 Report * Platform Role = 1
    2013-10-17 22:08:50:164 1036 704 Report * AlwaysOn/AlwaysConnected (AOAC) = 0
    2013-10-17 22:08:50:164 1036 704 Report * Bios Revision = 3603
    2013-10-17 22:08:50:164 1036 704 Report * Bios Name = BIOS Date: 11/09/12 11:39:37 Ver: 36.03
    2013-10-17 22:08:50:164 1036 704 Report * Bios Release Date = 2012-11-09T00:00:00
    2013-10-17 22:08:50:164 1036 704 Report * Bios Sku Number = SKU
    2013-10-17 22:08:50:164 1036 704 Report * Bios Vendor = American Megatrends Inc.
    2013-10-17 22:08:50:164 1036 704 Report * Bios Family = To be filled by O.E.M.
    2013-10-17 22:08:50:164 1036 704 Report * Bios Major Release = 4
    2013-10-17 22:08:50:164 1036 704 Report * Bios Minor Release = 6
    2013-10-17 22:08:50:164 1036 704 Report * Locale ID = 1031
    2013-10-17 22:08:51:977 1036 154c AU The system has been restored. Hence triggering AU detection through DetectNow API.
    2013-10-17 22:08:52:008 1036 154c AU AU finished delayed initialization
    2013-10-17 22:08:52:055 1036 154c AU #############
    2013-10-17 22:08:52:055 1036 154c AU ## START ## AU: Search for updates
    2013-10-17 22:08:52:055 1036 154c AU #########
    2013-10-17 22:08:52:055 1036 154c AU <<## SUBMITTED ## AU: Search for updates [CallId = {8FAA072F-2914-4539-8C00-1C3F93326F7D} ServiceId = {7971F918-A847-4430-9279-4A52D1EFE18D}]
    2013-10-17 22:08:52:055 1036 154c Agent SkipSelfUpdateCheck search flag set for serverId: 117CAB2D-82B1-4B5A-A08C-4D62DBEE7782
    2013-10-17 22:08:52:055 1036 154c AU <<## SUBMITTED ## AU: Search for updates [CallId = {81C2824C-F3E9-40DE-AA7E-CD012DC700BE} ServiceId = {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}]
    2013-10-17 22:08:54:462 1036 1588 Agent *************
    2013-10-17 22:08:54:462 1036 1588 Agent ** START ** Agent: Finding updates [CallerId = AutomaticUpdates]
    2013-10-17 22:08:54:462 1036 1588 Agent *********
    2013-10-17 22:08:54:462 1036 1588 Agent * Online = No; Ignore download priority = No
    2013-10-17 22:08:54:462 1036 1588 Agent * Criteria = "IsInstalled=0 and DeploymentAction='Installation' or IsPresent=1 and DeploymentAction='Uninstallation' or IsInstalled=1 and DeploymentAction='Installation' and RebootRequired=1 or IsInstalled=0 and DeploymentAction='Uninstallation' and RebootRequired=1"
    2013-10-17 22:08:54:462 1036 1588 Agent * ServiceID = {7971F918-A847-4430-9279-4A52D1EFE18D} Third party service
    2013-10-17 22:08:54:462 1036 1588 Agent * Search Scope = {Machine & All Users}
    2013-10-17 22:08:54:462 1036 1588 Agent * Caller SID for Applicability: S-1-5-18
    2013-10-17 22:10:15:765 1036 1584 Report REPORT EVENT: {AE6BB5A0-D465-4377-A04C-3C13BC01BAB5} 2013-10-17 22:08:50:633+0200 1 204 [AGENT_INSTALLING_FAILED_POST_REBOOT] 101 {17C0EC46-9BED-4791-8E58-D2BE1680F82D} 1 c1900101 WSAcquisition Failure Content Install Installation Failure Post Reboot.
    2013-10-17 22:10:15:765 1036 1584 Report REPORT EVENT: {1FF97B0D-C6D8-41DE-A2DA-C3C9C9F1F0A9} 2013-10-17 22:08:52:008+0200 1 202 [AU_REBOOT_COMPLETED] 102 {00000000-0000-0000-0000-000000000000} 0 0 AutomaticUpdates Success Content Install Reboot completed.
    2013-10-17 22:10:24:332 1036 1584 Report CWERReporter::HandleEvents - WER report upload completed with status 0x8
    2013-10-17 22:10:24:332 1036 1584 Report WER Report sent: 7.8.9200.16693 0xc1900101(0x30018) 17C0EC46-9BED-4791-8E58-D2BE1680F82D Install 101 Unmanaged
    2013-10-17 22:10:24:332 1036 1584 Report CWERReporter finishing event handling. (00000000)
    2013-10-17 22:10:24:332 1036 1584 Misc Validating signature for C:\WINDOWS\SoftwareDistribution\WuRedir\117CAB2D-82B1-4B5A-A08C-4D62DBEE7782\wuredir.cab:
    2013-10-17 22:10:24:894 1036 1584 Misc Microsoft signed: Yes
    2013-10-17 22:10:24:894 1036 1584 Misc Infrastructure signed: Yes
    2013-10-17 22:10:24:894 1036 1584 EP Got 117CAB2D-82B1-4B5A-A08C-4D62DBEE7782 redir Client/Server URL: "consoreds fe2.ws.microsoftconsored/v6/ClientWebService/client.asmx"
    2013-10-17 22:11:27:500 1036 1584 PT WARNING: Cached cookie has expired or new PID is available
    2013-10-17 22:11:28:797 1036 1584 EP Got 117CAB2D-82B1-4B5A-A08C-4D62DBEE7782 redir Reporting URL: "consored statsfe2.ws.microsoftconsored/ReportingWebService/ReportingWebService.asmx"
    2013-10-17 22:11:28:797 1036 1584 Report Uploading 1 events using cached cookie, reporting URL = consored statsfe2.ws.microsoftconsored/ReportingWebService/ReportingWebService.asmx
    2013-10-17 22:11:29:453 1036 1584 Report Reporter successfully uploaded 1 events.
    2013-10-17 22:11:31:375 1036 1588 Driver Matched driver to device PCI\VEN_8086&DEV_0122&SUBSYS_844D1043&REV_09
    2013-10-17 22:11:31:375 1036 1588 Driver Status: 0x180200a, ProblemNumber: 00000000
    2013-10-17 22:11:31:375 1036 1588 Driver Matched driver to device PCI\VEN_10DE&DEV_1183&SUBSYS_11831569&REV_A1
    2013-10-17 22:11:31:375 1036 1588 Driver Status: 0x180200a, ProblemNumber: 00000000
    2013-10-17 22:11:37:344 1036 1588 Agent Update {037A60AA-425B-497C-9FF0-EF85547911E5}.203 is pruned out due to potential supersedence
    2013-10-17 22:11:37:344 1036 1588 Agent * Added update {D528D50B-791A-4567-A497-ADEB35EA645B}.200 to search result
    2013-10-17 22:11:37:344 1036 1588 Agent * Added update {3C8EBF2A-9544-4C58-8415-270C3DB7394A}.201 to search result
    2013-10-17 22:11:37:344 1036 1588 Agent * Added update {8A559142-0209-4DEF-B49A-151363911378}.201 to search result
    2013-10-17 22:11:37:344 1036 1588 Agent * Added update {D1C38DB0-9632-4EF9-9311-B46671A4A82E}.200 to search result
    2013-10-17 22:11:37:344 1036 1588 Agent * Added update {C611E0EF-F045-465C-9EE9-E05FCDD7308A}.200 to search result
    2013-10-17 22:11:37:344 1036 1588 Agent * Found 5 updates and 80 categories in search; evaluated appl. rules of 2207 out of 3993 deployed entities
    2013-10-17 22:11:37:360 1036 1588 Agent *********
    2013-10-17 22:11:37:360 1036 1588 Agent ** END ** Agent: Finding updates [CallerId = AutomaticUpdates]
    2013-10-17 22:11:37:360 1036 1588 Agent *************
    2013-10-17 22:11:37:360 1036 1588 Agent *************
    2013-10-17 22:11:37:360 1036 1588 Agent ** START ** Agent: Finding updates [CallerId = AutomaticUpdates]
    2013-10-17 22:11:37:360 1036 1588 Agent *********
    2013-10-17 22:11:37:360 1036 1588 Agent * Online = No; Ignore download priority = No
    2013-10-17 22:11:37:360 1036 1588 Agent * Criteria = "IsInstalled=0 and DeploymentAction='Installation' or IsPresent=1 and DeploymentAction='Uninstallation' or IsInstalled=1 and DeploymentAction='Installation' and RebootRequired=1 or IsInstalled=0 and DeploymentAction='Uninstallation' and RebootRequired=1"
    2013-10-17 22:11:37:360 1036 1588 Agent * ServiceID = {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782} Third party service
    2013-10-17 22:11:37:360 1036 1588 Agent * Search Scope = {Machine & All Users}
    2013-10-17 22:11:37:360 1036 1588 Agent * Caller SID for Applicability: S-1-5-18
    2013-10-17 22:11:37:360 1036 450 AU >>## RESUMED ## AU: Search for updates [CallId = {8FAA072F-2914-4539-8C00-1C3F93326F7D} ServiceId = {7971F918-A847-4430-9279-4A52D1EFE18D}]
    2013-10-17 22:11:37:360 1036 450 AU # 5 updates detected
    2013-10-17 22:11:37:376 1036 450 AU #########
    2013-10-17 22:11:37:376 1036 450 AU ## END ## AU: Search for updates [CallId = {8FAA072F-2914-4539-8C00-1C3F93326F7D} ServiceId = {7971F918-A847-4430-9279-4A52D1EFE18D}]
    2013-10-17 22:11:37:376 1036 450 AU #############
    2013-10-17 22:11:38:063 1036 1588 Agent * Found 0 updates and 37 categories in search; evaluated appl. rules of 73 out of 199 deployed entities
    2013-10-17 22:11:38:063 1036 1588 Agent *********
    2013-10-17 22:11:38:063 1036 1588 Agent ** END ** Agent: Finding updates [CallerId = AutomaticUpdates]
    2013-10-17 22:11:38:063 1036 1588 Agent *************
    2013-10-17 22:11:38:063 1036 450 AU >>## RESUMED ## AU: Search for updates [CallId = {81C2824C-F3E9-40DE-AA7E-CD012DC700BE} ServiceId = {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}]
    2013-10-17 22:11:38:063 1036 450 AU # 0 updates detected
    2013-10-17 22:11:38:063 1036 450 AU #########
    2013-10-17 22:11:38:063 1036 450 AU ## END ## AU: Search for updates [CallId = {81C2824C-F3E9-40DE-AA7E-CD012DC700BE} ServiceId = {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}]
    2013-10-17 22:11:38:063 1036 450 AU #############
    2013-10-17 22:11:38:063 1036 450 AU All AU searches complete.
    2013-10-17 22:11:38:079 1036 450 WuTask ScheduledInstallTaskHandler, setting scheduled install attempt time to 2013-10-20 19:32:48.
    OS: Windows 8 Pro x64
    Mainboard: Asus P8Z68 Deluxe
    CPU: Intel Core i7 2600k 4x4,5GHz OC'ed
    GPU: Nvidia GeForce GTX 660 TI OC'ed
    RAM: Corsair Vengeance 16GB 1600MHz OC'ed

    I’m SO  sorry for disappoint it Mr Puma
    We (all of us ) have the same problem AND I DON’T HAVE DAEMON Tools !
    My pc don’t have anything, just re-install all the pc as fabric
    Is totally empty, except the f*&^% error
    Ladies and gentleman’s, AND ALL WINDOWS TEAM
    THE PROBLEM COME FROM an SECURITY UPDATE
    Some like kb290245 bla blab la blab la
    WINDOWS TEAM, bill gates, ANYONE !
    Can tell which one is the item who create all this disaster !

  • Time zone problem in grid control

    hi
    my management server (10g) is on windows 2000 and windows is running on time zone GMT+5
    Iinstalled agent 10g on Red Hat Linux Advance Server 4 and during instalation it sucessfully detects the OMS running on windows. After installation, it doesnt start the agent.
    I tried manually starting agent butfailed and in log file i found the following error
    2006-03-22 07:05:21 Thread-16384 Starting Agent 10.2.0.1.0 from /opt/oracle/product/10.2.0/agent10g (00701)
    2006-03-22 07:05:27 Thread-16384 <Ping Manager> Invalid TIMEZONE for agent not compatible with OMS timezone, Agent will shutdown. Update agentTZRegion property in /opt/oracle/product/10.2.0/agent10g/sysman/config/emd.properties file (00900)
    2006-03-22 07:05:28 Thread-16384 [E-Mail IMAP Server] InstanceProperty (imap_host) is marked OPTIONAL but is being used (00506)
    2006-03-22 07:05:29 Thread-16384 [Database Instance] InstanceProperty (DBVersion) is marked OPTIONAL but is being used (00506)
    2006-03-22 07:05:31 Thread-16384 [E-Mail POP Server] InstanceProperty (pop_host) is marked OPTIONAL but is being used (00506)
    2006-03-22 07:05:31 Thread-16384 [Cluster Database] InstanceProperty (DBVersion) is marked OPTIONAL but is being used (00506)
    2006-03-22 07:05:32 Thread-16384 [Load Balancer Switch] InstanceProperty (snmpTimeout) is marked OPTIONAL but is being used (00506)
    2006-03-22 07:05:32 Thread-16384 [E-Mail SMTP Inbound Server] InstanceProperty (smtp_host) is marked OPTIONAL but is being used (00506)
    2006-03-22 07:05:32 Thread-16384 [E-Mail SMTP Outbound Server] InstanceProperty (smtp_host) is marked OPTIONAL but is being used (00506)
    2006-03-22 07:05:39 Thread-16384 No such metric sqlnetParams (00400)
    2006-03-22 07:05:39 Thread-16384 No such metric ha_flashrecovery (00400)
    2006-03-22 07:05:39 Thread-16384 No such metric ha_recovery (00400)
    2006-03-22 07:05:39 Thread-16384 No such metric ha_rac_intrconn (00400)
    2006-03-22 07:05:39 Thread-16384 No such metric db_options (00400)
    2006-03-22 07:05:39 Thread-16384 No such metric linuxProvision (00400)
    2006-03-22 07:05:39 Thread-16384 No such metric ProgramResourceUtilization (00400)
    2006-03-22 07:05:39 Thread-16384 No such metric LogFileMonitoring (00400)
    2006-03-22 07:05:39 Thread-16384 No such metric storage_reporting_data (00400)
    2006-03-22 07:05:39 Thread-16384 No such metric storage_reporting_keys (00400)
    2006-03-22 07:05:39 Thread-16384 No such metric storage_reporting_alias (00400)
    2006-03-22 07:05:39 Thread-16384 No such metric storage_reporting_issues (00400)
    2006-03-22 07:05:39 Thread-16384 EMAgent started successfully (00702)
    2006-03-22 07:05:39 Thread-16384 EMAgent abnormal terminating (00704)
    The time zone for agent and my linux system is Asia/Karachi with is GMT+5. can you give me a clue how to resolve this?
    Regards

    # perl executable directory
    perlBin=/opt/oracle/product/10.2.0/agent10g/perl/bin
    # script directory
    scriptsDir=/opt/oracle/product/10.2.0/agent10g/sysman/admin/scripts
    # emd Root directory(read-only location). Metrics should not create files
    # under this directory
    emdRoot=/opt/oracle/product/10.2.0/agent10g
    # agent Root directory(writeable).
    # Use this property to base any temporary file creation.
    agentStateDir=/opt/oracle/product/10.2.0/agent10g
    # Chronos root directory
    chronosRoot=/opt/oracle/product/10.2.0/agent10g/sysman/emd/chronos
    # OMS Upload URL
    # if there is no receiving OMS or if you wish to disable the UploadManager
    # please set this value to empty or comment out below line
    REPOSITORY_URL=http://lhrpc419:4889/em/upload/
    # Proxy settings used for fetchlets. not applicable for uploader.
    #proxyHost=www-proxy.us.oracle.com
    #proxyPort=80
    #dontProxyFor=.us.oracle.com
    # If it is necessary to go through an http proxy server to get to the
    # repository, uncomment the following two lines
    #REPOSITORY_PROXYHOST=
    #REPOSITORY_PROXYPORT=
    #REPOSITORY_PROXYREALM=%EM_REPOS_PROXYREALM%
    #REPOSITORY_PROXYUSER=%EM_REPOS_PROXYUSER%
    #REPOSITORY_PROXYPWD=%EM_REPOS_PROXYPWD%
    # This string is used by the agent to connect to remote targets
    # ***IMPORTANT*** Do not change the contents of this setting. Only the
    # install should modify this value.
    agentSeed=144455808
    # This string is used by the agent to determine which algorithm to use for encrypted data
    # The string value will be same as the release version
    agentVersion=10.2.0.0.0
    # How long, in minutes, collector will wait until next load.
    UploadInterval=15
    # If an upload fails, we want to backoff by UploadFailBackoff
    # percentage more each time for each successive upload failure
    # e.g. if we start the retry at 1 minute. If we fail in our next
    # upload attempt, we try again 1minute 12 seconds later etc.
    UploadFailBackoffPct= 20
    # Maximum amount of time, in seconds, upload will wait for response from
    # repository before timing out.
    # 0 means infinite.
    UploadTimeout=1800
    # Timeout for upload a file, HealthMonitor will abort the EMD process if
    # UploadManager does not finish uploading one file within this time
    # Unit is minite, the default value is 1 hour ( 15 Min)
    #UploadMaxTime=30
    # How big the file the collector will upload (in KB)
    # the actual file size could be slightly bigger.
    # This is only a guidance.
    UploadFileSize=2048
    # The maximum number of megabytes(MB) the upload manager will support in the
    # upload directory before temporarily disabling collections, logging and tracing
    UploadMaxBytesXML=50
    # The maximum number of files the upload manager will support in the
    # upload directory before temporarily disabling collections, logging and tracing
    UploadMaxNumberXML=5000
    # The maximum amount (%) of disk space that can be used on the EMD filesystem
    # before the following is disabled:
    # - Collection of data (upload manager)
    # - Logging and tracing
    UploadMaxDiskUsedPct=98
    # The amount (%) of disk space that can be used on the EMD filesystem
    # before the following is re-enabled after being disabled previously:
    # - Collection of data (upload manager)
    # - Logging and tracing
    UploadMaxDiskUsedPctFloor=95
    # Time out for the Agent to think that the access to the database could be
    # hung. The Agent would not allow more threads to go and hang with a database
    # if any one access to the database does not return within DbHangTimeout
    # seconds.
    # The more the timeout more the possibility of allowing more threads
    # to be hung in the EMD with a bad database.it is specified in seconds.
    #DbHangTimeout=200
    # The script to run if disk space usage exceeds parameters or if certain other
    # error conditions occur.
    #emdFailureScript=emdfail.command
    # The location of the file that contains the root certificate.
    emdRootCertLoc=/opt/oracle/product/10.2.0/agent10g/sysman/config/b64LocalCertificate.txt
    internetCertLoc=/opt/oracle/product/10.2.0/agent10g/sysman/config/b64InternetCertificate.txt
    # The download URL for the EMD Oracle Wallet and its local file location.
    # Note: Ensure that this URL references a valid port number at which the
    # console is available on http
    emdWalletSrcUrl=http://lhrpc419:4889/em/wallets/emd
    emdWalletDest=/opt/oracle/product/10.2.0/agent10g/sysman/config/server
    # The email address for out-of-band notifications
    emd_email_address=_NOT_AVAILABLE_
    emd_email_gateway=_NOT_AVAILABLE_
    # The return email address for out-of-band notifications
    emd_from_email_address=_NOT_AVAILABLE_
    # EMD main servlet URL
    EMD_URL=http://nisar.lhr.systemsltd.com:3872/emd/main/
    # Whether the EMD should listen on all NICs on the current host (the default)
    # or just the NIC associated with the hostname in EMD_URL
    AgentListenOnAllNICs=TRUE
    # This parameter indicates the thread model to use. uncomment one of the
    # following ThreadPoolModel line to indicate the model, agent need to use.
    # SMALL if number of targets is less than 11.
    # MEDIUM if number of targets is from 11 to 50.
    # LARGE if number of targets is greater than 50.
    # This parameter can be overriden by 'MaxThreads' which indicates the maximum
    # number of threads that CEMD can have running at any point of time. User can
    # mostly use the other parameter ThreadPoolModel to indicate what model for the
    # agent to use.
    # ThreadPoolModel = SMALL
    # ThreadPoolModel = MEDIUM
    # ThreadPoolModel = LARGE
    # This parameter indicates the stack size, threads have to be created with.
    # we can set it to 0 to use the OS default value.
    # In some version of solaris(such as 2.9 ) specify a stack size may cause Java Hotspot warning
    # when JVM is used.
    NormalThreadStackSize=0
    #Signals that users want to ignore.
    #It can be one or combination of SIGTERM, SIGINT
    # The signals can listed with ',' as delimiter.
    #IgnoreSignals=
    # This property is NO LONGER USED for host config collection (instead, hostConfigClasspath is used).
    # If noone else uses it, it can be removed.
    ouiLoc=/opt/oracle/product/10.2.0/agent10g/oui
    # Classpath for host config collection
    # VERY IMPORTANT NOTE: If you change the host config classpath entries in this section, you HAVE
    # to change the HOST_CONFIG_TEST_CLASSPATH entry in the utl/emdwqaenv file too.
    # NOTE: if the location of log4j-core.jar is changed
    # make sure that appropriate changes are also made
    # to the CLASSPATH variable in this file if necessary
    # PORTING NOTE: Check OUI-required jar files for OUI APIs to work. They could be different on your platform.
    # Also, our version of xmlparserv2.jar must be compatible with the one OUI expects (both OUI and ECM use XML parser).
    hostConfigClasspath=/opt/oracle/product/10.2.0/agent10g/oui/jlib/xmlparserv2.jar:/opt/oracle/product/10.2.0/agent10g/oui/jlib/OraInstaller.jar:/opt/oracle/product/10.2.0/agent10g/oui/jlib/srvm.jar:/opt/oracle/product/10.2.0/agent10g/oui/jlib/share.jar:/opt/oracle/product/10.2.0/agent10g/sysman/jlib/emcoreAgent.jar:/opt/oracle/product/10.2.0/agent10g/sysman/jlib/emagentRT.jar:/opt/oracle/product/10.2.0/agent10g/sysman/jlib/emagentSDK.jar:/opt/oracle/product/10.2.0/agent10g/sysman/jlib/log4j-core.jar
    # JAVA HOME required for JavaExt metric calls
    JAVA_HOME=/opt/oracle/product/10.2.0/agent10g/jdk/jre
    # CLASSPATH required for JavaExt metric calls
    CLASSPATH=/opt/oracle/product/10.2.0/agent10g/jdbc/lib/ojdbc14.jar:/opt/oracle/product/10.2.0/agent10g/lib/xmlparserv2.jar:/opt/oracle/product/10.2.0/agent10g/sysman/jlib/log4j-core.jar:/opt/oracle/product/10.2.0/agent10g/jlib/http_client.jar:/opt/oracle/product/10.2.0/agent10g/jlib/share.jar:/opt/oracle/product/10.2.0/agent10g/jlib/jssl-1_1.jar:/opt/oracle/product/10.2.0/agent10g/jlib/javax-ssl-1_1.jar:/opt/oracle/product/10.2.0/agent10g/jlib/ojmisc.jar:/opt/oracle/product/10.2.0/agent10g/jlib/repository.jar:/opt/oracle/product/10.2.0/agent10g/opmn/lib/optic.jar:/opt/oracle/product/10.2.0/agent10g/sysman/jlib/emagentRT.jar:/opt/oracle/product/10.2.0/agent10g/sysman/jlib/emagentSDK.jar:/opt/oracle/product/10.2.0/agent10g/lib/dmsEmd.jar:/opt/oracle/product/10.2.0/agent10g/sysman/jlib/emcoreAgent.jar
    # this is the java option
    #JAVA_OPTIONS=-Xmx128m
    #JAVA_OPTIONS=-Djava.awt.headless=true
    # These are the optional Java flags for the in-process Java
    # Native Interface (JNI)
    agentJavaDefines=-Doracle.dms.refresh.wait.time=1000 -DUrlTiming.UseJSSE=true -Dnetworkaddress.cache.ttl=1800 -Djava.awt.headless=true
    # When set to true, the emd.log and emd.trc file will be appended by a pid
    # For example:
    # emd_15789.log
    # emd_15789.trc
    # By default, it is not set for regression test purpose.
    # After installed, please uncomment this line because when EMD is restarted,
    # previous log information will be lost if not set to true.
    #LogFileWithPID=true
    # Default log file maximum size before rolling in Kilobytes
    LogFileMaxSize=4096
    # Maximum number of log file roll files to maintain before deletion
    LogFileMaxRolls=4
    # Default trace file maximum size before rolling in Kilobytes
    TrcFileMaxSize=4096
    # Maximum number of trace file roll files to maintain before deletion
    TrcFileMaxRolls=4
    # To enable the metric browser, uncomment the following line
    # This is a reloadable parameter
    #enableMetricBrowser=true
    # To disable Remote operations (non-reachable agent) uncomment the following
    # line:
    #disableRemoteOperations=true
    # How long (in secs) until a remote operation sumbitted via the dispatcher can
    # take before the agent in bounced by the watchdog. This timeout applied to only
    # those operation which ought to finish within a certain interval of time
    RemoteAPITimeout=300
    # add an additional admin path from which the agent will read additional
    # target metadata. The specified path should have the mandatory 4 directories
    # under it. 1. metadata 2. scripts 3. default_collection 4. discover
    #altAdminPath=<additional admin path>
    # The health monitor executes callbacks in a separate thread. if for some
    # reason the threads spawned from health monitor to execute callbacks are
    # hung, the agent could run out of resource and freeze.
    # so when the current thread count spawned from the Health monitor reaches
    # this limit, the agent is bounced. the default is set to 5.
    #MaxHealthMonitorThreads=5
    # SSL session cache flag
    #SSLSessionCache=TRUE
    # emagent perl tracing levels
    # supported levels: DEBUG, INFO, WARN, ERROR
    # default level is WARN
    EMAGENT_PERL_TRACE_LEVEL=WARN
    # other optional parameters for perl tracing
    # EMAGENT_PERL_TRACE_DIR default to $ORACLE_HOME/sysman/log
    #EMAGENT_PERL_TRACE_DIR=
    # EMAGENT_PERL_TRACE_FILESIZE default to 5M
    #EMAGENT_PERL_TRACE_FILESIZE=5
    # this section define the logging level for each component,
    # it is "reloadable", you can change the level at runtime to reset
    # the logging level, but if you remove the line, it will not be
    # changed.
    tracelevel.main=WARN
    tracelevel.emSDK.xml=WARN
    tracelevel.emSDK.utl=WARN
    tracelevel.Dispatcher=WARN
    tracelevel.ThreadPool=WARN
    tracelevel.pingManager=WARN
    tracelevel.collector=WARN
    tracelevel.http=WARN
    tracelevel.http.client=WARN
    tracelevel.browser=WARN
    tracelevel.ssl=WARN
    tracelevel.ssl.io=WARN
    tracelevel.blackouts=WARN
    tracelevel.upload=WARN
    tracelevel.command=WARN
    tracelevel.reload=WARN
    tracelevel.scheduler=WARN
    tracelevel.Authentication=WARN
    tracelevel.metadata=WARN
    tracelevel.targets=WARN
    tracelevel.TargetManager=DEBUG
    tracelevel.engine=WARN
    tracelevel.javaproc=WARN
    tracelevel.vpxoci=WARN
    tracelevel.javavm=WARN
    tracelevel.fetchlets=WARN
    tracelevel.fetchlets.os=WARN
    tracelevel.fetchlets.osline=WARN
    tracelevel.fetchlets.oslinetok=WARN
    tracelevel.fetchlets.snmp=WARN
    tracelevel.fetchlets.UDM=WARN
    tracelevel.fetchlets.PropsFromAssocTgt=WARN
    tracelevel.fetchlets.sql=WARN
    tracelevel.fetchlets.url=WARN
    tracelevel.fetchlets.urllines=WARN
    tracelevel.fetchlets.urllinetoken=WARN
    tracelevel.fetchlets.URLTiming=WARN
    tracelevel.fetchlets.OJMX=WARN
    tracelevel.fetchlets.propEcho=WARN
    tracelevel.fetchlets.readFromFile=WARN
    tracelevel.fetchlets.readMultFromFile=WARN
    tracelevel.fetchlets.throwable=WARN
    tracelevel.fetchlets.resourceGrab=WARN
    tracelevel.fetchlets.statusHang=WARN
    tracelevel.fetchlets.emSDK=WARN
    tracelevel.recvlets=WARN
    tracelevel.recvlets.snmp=WARN
    tracelevel.credproviders=WARN
    tracelevel.utl=WARN
    tracelevel.NLS=WARN
    tracelevel.util.dates=WARN
    tracelevel.util.emdprops=WARN
    tracelevel.util.files=WARN
    tracelevel.util.fileops=WARN
    tracelevel.resman.socket=WARN
    tracelevel.resman.process=WARN
    tracelevel.ResMonitor=WARN
    tracelevel.emtgtctl=WARN
    # The following three properties are for HTTP timeout
    # Timeout value for reading Http primary header, default is 30 seconds.
    httpTimeoutPrimaryHeader=30
    # Timeout value for reading http secondary headers, default is 30 seconds
    httpTimeoutSecondaryHeaders=30
    # Timeout value for reading http body, default is 60 seconds.
    httpTimeoutBody=60
    # Timeout used by ping manager
    #PingTimeout=30
    #Timeout for Dynamic property evaluation. This is provided in seconds.
    #The dynamicPropsComputeTimeout value applies to all target types unless if a
    #target type specific value is provided using the
    #dynamicPropsComputeTimeout_<targetType>= syntax
    #dynamicPropsComputeTimeout=30
    #Requested by RAC team in bug 4423072
    dynamicPropsComputeTimeout_rac_database=120
    #bug 4595094
    dynamicPropsComputeTimeout_oracle_database=120
    agentTZRegion=Asia/Karachi

  • Trying to report bug in SQL Server Replication with sp_MSdetect_nonlogged_shutdown stored procedure

    I've just tried to "Submit Feedback" but the page just gives me an error which means nothing to anyone which says "You are not authorized to submit the feedback for this connection.". Why am I not authorised how do I become authorised etc
    etc. Anyway :-)
    I've trying to report that the stored procedure in Sql Server Replication in 12.0.2000 has an issue with data type lengths. This procedure sp_MSdetect_nonlogged_shutdown uses data lengths of nvarchar(2048) but the MSDB sysjobhistory table has a message field
    length of 4000. Which causes the above stored procedure to crash.
    Best Regards
    Richard

    This is the work around
    1. Stop SQL Server service.
    2. On command prompt run the following command to run the server in single user mode – be sure to replace the MSSQLSERVER with the actual instance name
    C:\>”C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\sqlservr.exe” -sMSSQLSERVER -m
    3. Connect to SQL server with SSMS as the server administrator
    4. Run the following to change the database to the system resource database: “USE mssqlsystemresource”
    5. Run the following to update the stored procedure (only change is to make NVARCHAR(4000))
    SET ANSI_NULLS OFF
    GO
    SET QUOTED_IDENTIFIER OFF
    GO
    ALTER procedure [sys].[sp_MSdetect_nonlogged_shutdown]
        @subsystem nvarchar(60),
        @agent_id int
    as
    begin
        declare @job_id binary(16)
        declare @agent_name sysname
        declare @message nvarchar(4000)
        declare @retcode int
        declare @runstatus int
        declare @run_date int
        declare @run_time int
        declare @run_date_orig int
        declare @run_time_orig int
        declare @merge_session_id int
        -- security check
        -- only db_owner can execute this
        if (is_member ('db_owner') != 1) 
        begin
            raiserror(14260, 16, -1)
            return (1)
        end
        -- Detect if the agent was shutdown without a logged reason
        if UPPER(@subsystem collate SQL_Latin1_General_CP1_CS_AS) = 'SNAPSHOT'
        begin
            if exists (select runstatus from MSsnapshot_history where 
                agent_id = @agent_id and
                runstatus <> 2 and 
    --CAC       runstatus <> 5 and 
                runstatus <> 6 and
                timestamp = (select max(timestamp) from MSsnapshot_history where agent_id = @agent_id))
                begin
                    select @job_id = job_id, @agent_name = name from MSsnapshot_agents where id = @agent_id
                end
        end
        else if UPPER(@subsystem collate SQL_Latin1_General_CP1_CS_AS) = 'LOGREADER'
        begin
            if exists (select runstatus from MSlogreader_history where 
                agent_id = @agent_id and
                runstatus <> 2 and 
    --CAC           runstatus <> 5 and 
                runstatus <> 6 and
                timestamp = (select max(timestamp) from MSlogreader_history where agent_id = @agent_id))
                begin
                    select @job_id = job_id, @agent_name = name from MSlogreader_agents where id = @agent_id
                end
        end
        else if UPPER(@subsystem collate SQL_Latin1_General_CP1_CS_AS) = 'DISTRIBUTION'
        begin
            if exists (select runstatus from MSdistribution_history where 
                agent_id = @agent_id and
                runstatus <> 2 and 
    --CAC           runstatus <> 5 and 
                runstatus <> 6 and
                timestamp = (select max(timestamp) from MSdistribution_history where agent_id = @agent_id))
                begin
                    select @job_id = job_id, @agent_name = name from MSdistribution_agents where id = @agent_id
                end
        end
        else if UPPER(@subsystem collate SQL_Latin1_General_CP1_CS_AS) = 'MERGE'
        begin
            if exists (select runstatus from dbo.MSmerge_sessions where 
                agent_id = @agent_id and
                runstatus <> 2 and 
    --CAC           runstatus <> 5 and 
                runstatus <> 6 and
                session_id = (select top 1 session_id from dbo.MSmerge_sessions where agent_id = @agent_id order by session_id desc))
                begin
                    select @job_id = job_id, @agent_name = name from dbo.MSmerge_agents where id = @agent_id
                    select top 1 @merge_session_id = session_id from dbo.MSmerge_sessions 
    where agent_id = @agent_id 
    order by session_id desc
                end
        end
        else if UPPER(@subsystem collate SQL_Latin1_General_CP1_CS_AS) = 'QUEUEREADER'
        begin
            if exists (select runstatus from MSqreader_history where 
                agent_id = @agent_id and
                runstatus <> 2 and 
    --CAC       runstatus <> 5 and 
                runstatus <> 6 and
                timestamp = (select max(timestamp) from MSqreader_history where agent_id = @agent_id))
                begin
                    select @job_id = job_id, @agent_name = name from MSqreader_agents where id = @agent_id
                end
        end
        -- If no job_id assume shutdown was logged properly
        if @job_id is null
            return 0
        -- Get last message from SQL Agent History table
        create table #JobHistory (
            instance_id int NOT NULL, 
            job_id uniqueidentifier NOT NULL,
            job_name sysname NOT NULL,
            step_id int NOT NULL,
            step_name nvarchar(100) NOT NULL, 
            sql_message_id int NOT NULL,
            sql_severity int NOT NULL,
            message nvarchar(4000) NOT NULL,
            run_status int NOT NULL,
            run_date int NOT NULL,
            run_time int NOT NULL,
            run_duration int NOT NULL,
            operator_emailed sysname NULL,
            operator_netsent sysname NULL,
            operator_paged sysname NULL,
            retries_attempted int NOT NULL,
            server sysname NOT NULL
        if @@error <> 0
            return 1
        -- Insert last history for step_id 2 (Agent running)
        insert TOP(2) into #JobHistory exec sys.sp_MSreplhelp_jobhistory @job_id = @job_id, @step_id = 2, 
            @mode = 'FULL'          
    declare cursorHistory cursor local fast_forward for
        select message, 
        run_status,
        run_date,
        run_time
        from #JobHistory
        order by run_date desc, 
        run_time desc, 
        instance_id asc
        open cursorHistory
        fetch cursorHistory into @message, @runstatus, @run_date, @run_time
        select @run_date_orig = @run_date, 
      @run_time_orig = @run_time
        while @@fetch_status <> -1
        begin   
        -- as long as we are looking at the history for the same run 
        -- date and time then we should log all rows. there should 
        -- be 2 rows since we perform a TOP on exec sp_help_jobhistory
    if @run_date_orig = @run_date
      and @run_time_orig = @run_time
    begin
       -- Map SQL Agent runstatus to Replication runstatus
       set @runstatus = 
       case @runstatus
           when 0 then 6   -- Fail mapping
           when 1 then 2   -- Success mapping
           when 2 then 5   -- Retry mapping
           when 3 then 2   -- Shutdown mapping
           when 4 then 3   -- Inprogress mapping
           when 5 then 0   -- Unknown is mapped to never run
       end
       -- If no message, provide a default message
    -- Also overwrite all inprogress messages to be "See SQL Agent history log".
    -- This is to prevent "Agent running. See monitor" to be logged into repl monitor.
    -- In this case (the last job history message is InProgress), we know that
    -- there have been failures of SQL Server Agent history logging.
    -- In fact, the only possible "in progress" msg in SQL Agent job step
    -- history for push jobs is "Agent running. See monitor". It is confusing that those
    -- messages showed up in repl monitor.
       if @message is null or @runstatus = 3
       begin
           raiserror(20557, 10, -1, @agent_name)
           select @message = formatmessage(20557, @agent_name)
       end
       if UPPER(@subsystem collate SQL_Latin1_General_CP1_CS_AS) = 'SNAPSHOT'
           exec @retcode = sys.sp_MSadd_snapshot_history @agent_id = @agent_id, @runstatus = @runstatus,
                   @comments = @message
       else if UPPER(@subsystem collate SQL_Latin1_General_CP1_CS_AS) = 'LOGREADER'
           exec @retcode = sys.sp_MSadd_logreader_history @agent_id = @agent_id, @runstatus = @runstatus,
                   @comments = @message
       else if UPPER(@subsystem collate SQL_Latin1_General_CP1_CS_AS) = 'DISTRIBUTION'
           exec @retcode = sys.sp_MSadd_distribution_history @agent_id = @agent_id, @runstatus = @runstatus,
                   @comments = @message
       else if UPPER(@subsystem collate SQL_Latin1_General_CP1_CS_AS) = 'MERGE'
    exec @retcode = sys.sp_MSadd_merge_history @agent_id = @agent_id, @runstatus = @runstatus,
                   @comments = @message, @called_by_nonlogged_shutdown_detection_agent = 1, @session_id_override = @merge_session_id
       else if UPPER(@subsystem collate SQL_Latin1_General_CP1_CS_AS) = 'QUEUEREADER'
           exec @retcode = sys.sp_MSadd_qreader_history @agent_id = @agent_id, @runstatus = @runstatus,
                   @comments = @message
       if @@error <> 0 or @retcode <> 0
           return 1
    end
    fetch cursorHistory into @message, @runstatus, @run_date, @run_time
    end
    close cursorHistory
    deallocate cursorHistory
        drop table #JobHistory
    end
    6. Return the system resource database to read-only – “alter database mssqlsystemresource set read_only”
    7. Shutdown the instance – “shutdown”
    8. Start the instance using the service as usual

  • DPMLA service restarting - Tape

    Hi, we're having issues with our HP G3 tape library. First of all we notice that the tape library and drive sometimes appears twice after a rescan (once the real library and drive, once as standalone). The standalones can be removed by removing them from
    all the tables in the database but they re-appear after some time (and some rescans). This also happens when I use the DPMLA.xml file for manually remapping the library and drive.
    A few times per day I can see that the library is stopping and it gives error "Stand Alone Drive Tape Library Hewlett Packard LTO Ultrium-4 drive is not ready. (ID 25014)" After that no backups succeed until we manually rescan the library.
    After some troubleshooting and playing with drivers, manually remapping, scsi registry settings and all we could think of I found out that this actually happens because of the DPMLA service that stops and restarts at that moment. In the LAAgent error log
    I see the following at that moment (I don't know if it's during a tape backup or just between two tape backups):
    21A8    1B4C    05/19    15:13:18.293    05    genericagent.cpp(266)    [000000000029AE50]        NORMAL    Agent Can
    Shutdown if there is only default wokitem active[1]
    21A8    1B4C    05/19    15:13:18.293    03    workitem.cpp(391)            NORMAL    Timing out WI [00000000008C6A30],
    WI GUID = {B71B4544-7067-4A30-B5FB-BA320B10D82A}, ..last DM activity happened 354236484msec back, WI Idle Timeout = 390000msec
    21A8    1B4C    05/19    15:13:18.293    22    genericthreadpool.cpp(684)    [00000000008E7CF0]        NORMAL    CGenericThreadPool:
    Waiting for threads to exit
    21A8    12BC    05/19    15:13:19.715    03    service.cpp(147)    [000000000017F660]        ACTIVITY    CService::ServiceHandlerExInternal
    21A8    1B4C    05/19    15:13:20.309    22    genericthreadpool.cpp(684)    [0000000000827FD0]        NORMAL    CGenericThreadPool:
    Waiting for threads to exit
    21A8    10E8    05/19    15:13:22.324    03    timer.cpp(513)    [000000000089CB68]        ACTIVITY    Shutting down timer
    thread.
    21A8    1B4C    05/19    15:13:22.324    03    service.cpp(81)            ACTIVITY    CService::StopThisService
    21A8    1B4C    05/19    15:13:22.324    03    service.cpp(281)    [000000000017F660]        ACTIVITY    CService::StopService()
    So it appears DPM is shutting down the service itself because some timer has expired. Does anyone know how this works or how I can prevent this? Also I'm trying to figure out what Work item with GUID B71B4544-7067-4A30-B5FB-BA320B10D82A is and if this has
    anything to do with it.

    Hi Kevin, Ok thanks for the feedback. Unfortunately I have no good suggestions since I have also been unable to resolve the issue. 
    I actually had two separate external tape devices connected to the DPM server. One was a HP autoloader with an LTO drive and the other a HP LTO stand-alone tape drive. The stand-alone drive is not used by DPM....it is used by a different
    backup solution (Veeam) - the stand alone is visible in DPM but I have always had it as a disabled device. I have another DPM server in a separate data center with the same setup that doesn't have the issue. The only difference is that the second
    DPM server DOESN'T have a second stand-alone tape drive connected. So I thought for a while that the stand-alone drive may have been the cause of this issue. I removed it completely....but the problem has not gone away.
    Once the tape drive in the autoloader disappears a manual rescan is required and it will reappear and I can then use it again. It always disappears at time when it is in heavy use. We only perform tape backup tasks over the
    weekends and this is always when the drive disappears, but it does not always disappear at the same time nor during the same job.   
    I am still working to resolve this and I will be probably be raising a tech support case with MS shortly. So if I get an answer I will post back here.

  • Rsync vs dbcopy for migrating to new server

    There is plenty of information about using dbcopy to achieve a server to server migration of Groupwise, and it's particular useful because initially Groupwise can be copied live.
    In my case, GW resides on NSS, so for dbcopy, I need to do a ncpmount first, then
    Code:
    dbcopy -m -f [-p |-d]
    shutdown the agents for the the final:
    Code:
    dbcopy -m -s [-p | -d]
    DBCOPY IS SLOOOW - Well at least according to TID 7010760: "Note: Typical dbcopy throughput is 6GB/hour."
    So in the interests of maximum speed my question is - If the agents are shutdown, and no dbcopies have taken place yet, or maybe the first one has, is it ok to just use rsync and not worry about dbcopy?
    Code:
    rsync -av --delete source-po dest-po
    rsync -av --delete source-dom dest-dom
    I even thought about using (with GW shutdown) sftp as it pulls data at between 1-2GB per min, then follow up with rsync as a double check.
    I am yet to do some proper testing and time trials, but just wondering what others have found.
    Thoughts anyone?

    Originally Posted by gordon_mzano
    Source = OES2 SP3 x86-64, NSS, physical server
    Target - OES11 SP2 x86-64, NSS, virtual server on ESX with local storage.
    As we are going linux to linux the dbcopy lower-case conversion is not relevant.
    Yes, but there can be a catch. NSS is case insensitive, even on OES when NSS uses the long format (which is the default name space ever since OES2 SP1) . It is possible that you have been running GroupWise on OES with NSS as filesystem and are now moving to a Linux native filesystem.... that *could* warrant running a dbcopy with the m option.
    But as you are moving to NSS with, I assume the default "long" namespace set, that is not an issue.
    Originally Posted by gordon_mzano
    Being ultra paranoid, what I did in the end after running the two dbcopies, I checked both PO sizes with `du -sm`, and the size was greater at the target by about 1.2GB.
    That's not paranoid imo, that's showing good sense
    But yes, it is normal that you will see a slightly larger copy on the target side. It has to do with dbcopy logs but also some other files that I have not looked closely at.
    Originally Posted by gordon_mzano
    So with the PO shutdown, I ran a full rsync so they were exact. I am not sure if the rsync was really needed, but I like to keep the file system lean as possible. Are there gwcheck routines that would clean up the extra files that dbcopy built up at the target? Maybe the orphaned file check that I see in the logs would do such a thing..?
    GroupWise PO content maintenance jobs will clean up "stuff" like logs and unused databases/blob files etc. But it won't clean up everything.
    Sure, you can run rsync to make sure source and target match up 100%, but do do so while no GroupWise agents are running against the data storage you are rsync'ing.
    Cheers,
    Willem

Maybe you are looking for

  • Please help me install Adobe Air. Nothing I've tried has worked.

    Last week I joined the CC. I have successfuly installed "Edge Animate," "Edge Insspect" and "Photoshop." I tried to install Adobe Muse and have been unable to do so because I can't get "Air" to install. We're talking near a week of doing everything I

  • Creating a PDF from a plugin

    I'm developing a plugin for the Mac which will need to create a PDF of the image. The PDF generation methods in Cocoa require an NSView to operate against. My question is how do I dynamically create a view using the image data passed to the plugin? O

  • Can't Find Photo Booth

    Hi. I just installed iLife 08 and it seems that Photo Booth has disappeared. Any ideas how I can get it back? I am running 10.4.11.

  • Can Reporting Services 2005 report on SQL Server 2012 database?

    We would like to upgrade our SQL Server from Standard 2005 to Enterprise/Standard 2012. Unfortunately, we also have a lot of reports based on Reporting Services 2005. If possible we would like avoid upgrading them at this time. Is it possible to run

  • Classic DMVPN over IPSec. Force UDP/4500 instead ESP?

    Hi, we've got classic DMVPN scheme with central router and spokes, all IOS routers. One of remote sites has bad ISP, which filters GRE and ESP (i beleive they filter all except tcp, udp and icmp). Is there any way to force spoke using udp/4500 instea