Automatic indexing not starting - UCM/WCC 11g

I have an instance where new content is added but the Indexer does not recognize them and index them as part of the Automatic cycle. But if I press the START button for the Automatic Cycle it does and proceeds to index them. The check box on the CONFIGURE pane has been tried both checked and unchecked but the response is the same. The total collection is less than 100 documents, the Batch size has been tried at 1,5,25. No errors are thrown in the CS logs.
Edited by: David B Johnson on Sep 5, 2012 9:11 AM

Hi All,
Add to my initial post , the error which is getting logged is -
<14/10/2011 6:35:22 PM EST> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.3.5.0 Fri Apr 1 20:20:06 PDT 2011 1398638 >
<14/10/2011 6:35:33 PM EST> <Info> <Management> <BEA-141223> <The server name PRD_UCM_Server1 specified with -Dweblogic.Name does not exist. The configuration includes the following servers {PRDAdminServer,PRD_UCM_server1,PRD_IBR_server1}.>
<14/10/2011 6:35:33 PM EST> <Critical> <WebLogicServer> <BEA-000362> <Server failed. Reason:
There are 1 nested errors:
weblogic.management.ManagementException: [Management:141223]The server name PRD_UCM_Server1 specified with -Dweblogic.Name does not exist. The configuration includes the following servers {PRDAdminServer,PRD_UCM_server1,PRD_IBR_server1}.
     at weblogic.management.provider.internal.RuntimeAccessImpl.<init>(RuntimeAccessImpl.java:149)
     at weblogic.management.provider.internal.RuntimeAccessService.start(RuntimeAccessService.java:41)
     at weblogic.t3.srvr.ServerServicesManager.startService(ServerServicesManager.java:461)
     at weblogic.t3.srvr.ServerServicesManager.startInStandbyState(ServerServicesManager.java:166)
     at weblogic.t3.srvr.T3Srvr.initializeStandby(T3Srvr.java:881)
     at weblogic.t3.srvr.T3Srvr.startup(T3Srvr.java:568)
     at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:469)
     at weblogic.Server.main(Server.java:71)
Regards,
Avi

Similar Messages

  • Issue - BI content server(11.1.1.1) not starting in obiee 11g:

    Hello All,
    BI content server(11.1.1.1) is not starting in obiee 11g after making OBIEE 11g services as windows service.
    Services are starting when we do a Start BI Services from All Programs >> OBIEE. On the contrary, when we start from windows service "bi content server(11.1.1.1) not starting in obiee 11g" is not starting.
    Can someone help me on this. In case if you need any more info, please let me know.
    Thank you,
    Bimal

    Below is the BI Script I used. Everything is in this script so no need to edit the installsvc file. Just edit the location/variables used as well as at the bottom change the name of the script and the log location. The BI_ORACLE_HOME variable needs to be set in the script.
    SETLOCAL
    set DOMAIN_NAME=bifoundation_domain
    set USERDOMAIN_HOME=D:\oracle\Middleware\user_projects\domains\bifoundation_domain
    set SERVER_NAME=bi_server1
    set PRODUCTION_MODE=true
    set ADMIN_URL=http://djaxwapp9608.common.ecamericas:7001
    set JAVA_HOME=D:\Oracle\Middleware\Oracle_BI1\jdk
    set DOMAIN_HOME=D:\oracle\Middleware\user_projects\domains\bifoundation_domain
    set WLS_HOME=D:\Oracle\Middleware\wlserver_10.3
    set INSTANCE_HOME=D:\oracle\Middleware\instances\instance1
    set BI_ORACLE_HOME=D:\oracle\Middleware\Oracle_BI1
    set ANT_HOME=%MW_HOME\modules\org.apache.ant_1.7.1
    set DOMAIN_NAME=bifoundation_domain
    Call "D:\Oracle\Middleware\user_projects\domains\bifoundation_domain\bin\setDomainEnv.cmd"
    set WL_HOME=D:\Oracle\Middleware\wlserver_10.3
    call "%WL_HOME%\common\bin\commEnv.cmd"
    @rem Check that the WebLogic classes are where we expect them to be
    :checkWLS
    if exist "%WL_HOME%\server\lib\weblogic.jar" goto checkJava
    echo The WebLogic Server wasn't found in directory %WL_HOME%\server.
    echo Please edit your script so that the WL_HOME variable points
    echo to the WebLogic installation directory.
    goto finish
    @rem Check that java is where we expect it to be
    :checkJava
    if exist "%JAVA_HOME%\bin\java.exe" goto runWebLogic
    echo The JDK wasn't found in directory %JAVA_HOME%.
    echo Please edit your script so that the JAVA_HOME variable
    echo points to the location of your JDK.
    goto finish
    :runWebLogic
    if not "%JAVA_VM%" == "" goto noResetJavaVM
    if "%JAVA_VENDOR%" == "BEA" set JAVA_VM=-jrocket
    if "%JAVA_VENDOR%" == "HP" set JAVA_VM=-server
    if "%JAVA_VENDOR%" == "Sun" set JAVA_VM=-server
    :noResetJavaVM
    if not "%MEM_ARGS%" == "" goto noResetMemArgs
    set MEM_ARGS=-Xms32m -Xmx200m
    :noResetMemArgs
    @echo on
    set CLASSPATH=%WEBLOGIC_CLASSPATH%;%CLASSPATH%
    @echo ***************************************************
    @echo * To start WebLogic Server, use the password *
    @echo * assigned to the system user. The system *
    @echo * username and password must also be used to *
    @echo * access the WebLogic Server console from a web *
    @echo * browser. *
    @echo ***************************************************
    rem *** Set Command Line for service to execute within created JVM
    @echo off
    set MEM_ARGS=-Xms256m -Xmx512m -XX:MaxPermSize=512m -XX:-UseSSE42Intrinsics
    if "%ADMIN_URL%" == "" goto runAdmin
    @echo on
    set CMDLINE="%JAVA_VM% %MEM_ARGS% %JAVA_OPTIONS% -classpath \"%CLASSPATH%\" -Dweblogic.Name=%SERVER_NAME% -Dweblogic.management.username=%WLS_USER% -Dweblogic.management.server=\"%ADMIN_URL%\" -Dweblogic.ProductionModeEnabled=%PRODUCTION_MODE% -Djava.security.policy=\"%WL_HOME%\server\lib\weblogic.policy\" weblogic.Server"
    goto finish
    :runAdmin
    @echo on
    set CMDLINE="%JAVA_VM% %MEM_ARGS% %JAVA_OPTIONS% -classpath \"%CLASSPATH%\" -Dweblogic.Name=%SERVER_NAME% -Dweblogic.management.username=%WLS_USER% -Dweblogic.ProductionModeEnabled=%PRODUCTION_MODE% -Djava.security.policy=\"%WL_HOME%\server\lib\weblogic.policy\" weblogic.Server"
    :finish
    rem *** Set up extrapath for win32 and win64 platform separately
    if "%WL_USE_X86DLL%" == "true" set EXTRAPATH=%WL_HOME%\server\native\win\32;%WL_HOME%\server\bin;%JAVA_HOME%\jre\bin;%JAVA_HOME%\bin;%WL_HOME%\server\native\win\32\oci920_8
    if "%WL_USE_IA64DLL%" == "true" set EXTRAPATH=%WL_HOME%\server\native\win\64\;%WL_HOME%\server\bin;%JAVA_HOME%\jre\bin;%JAVA_HOME%\bin;%WL_HOME%\server\native\win\64\oci920_8
    if "%WL_USE_AMD64DLL%" == "true" set EXTRAPATH=%WL_HOME%\server\native\win\x64\;%WL_HOME%\server\bin;%JAVA_HOME%\jre\bin;%JAVA_HOME%\bin;%WL_HOME%\server\native\win\x64\oci920_8
    rem *** Install the service
    "%WL_HOME%\server\bin\beasvc" -install -svcname:"3.Oracle BI 11g BI Server" -javahome:"%JAVA_HOME%" -execdir:"%USERDOMAIN_HOME%" -maxconnectretries:"%MAX_CONNECT_RETRIES%" -host:"%HOST%" -port:"%PORT%" -extrapath:"%EXTRAPATH%" -password:"%WLS_PW%" -cmdline:%CMDLINE% -log:"D:\Oracle\Middleware\ServiceStartLogs\BIServer-stdout.txt"
    ENDLOCAL
    Edited by: J.A.M on Mar 31, 2012 8:51 AM

  • At work with the text at allocation by the cursor of the big fragment of page it is necessary to shift all time it downwards, "against the stop", but the page automatically does not start to rise upwards as occurs in other browsers. I ask the help!

    After transition on Windows 7 there was a problem with Firefox. At work with the text at allocation by the cursor of the big fragment of page it is necessary to shift all time it downwards, "against the stop", but the page automatically does not start to rise upwards as it was earlier and as occurs in other browsers. It is necessary to press other hand a key "downwards" that is the extremely inconvenient. Reinstallation on earlier version (8.0) earlier irreproachably working, has given nothing. I ask the help

    You need to enable the Add-ons bar (Firefox > Options or View > Toolbars; Ctrl+/) or the Find bar (Ctrl+F) to make Firefox scroll the page while selecting text.

  • Node Manager not starting UCM Server automatically

    Hi All,
    I have configured Node Manager to start and stop UCM 11g server.
    But whenever, I am restarting the host OS - Windows server 2003 64 bit, it does not start the UCM managed server, automatically.
    I am running two managed servers on the same host OS, the first UCM manages server, starts automatically on every restart.
    The second managed UCM server, does not start. I need to then manually start the managed server. There are no errors logged, and the manual start of the managed server happens without any issues.
    As a workaround, I tried starting the managed server from Windows scheduler, but it does not start the server as well. I wrote a script like -
    Myscript.cmd
    call E:\..\user_projects\domains\prod_domain\bin\setDomainEnv.cmd
    java weblogic.WLST c:\start....\ServerStart.py
    scheduled the script (myscript.cmd) to run from the Windows Scheduler.
    Any pointers would be very helpful. Are there any known issues, if there are two managed servers, and one starts automatically, which affects the starting of the second managed server?
    I see the following error in the log file -
    <14/10/2011 6:35:22 PM EST> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.3.5.0 Fri Apr 1 20:20:06 PDT 2011 1398638 >
    <14/10/2011 6:35:33 PM EST> <Info> <Management> <BEA-141223> <The server name PRD_UCM_Server1 specified with -Dweblogic.Name does not exist. The configuration includes the following servers {PRDAdminServer,PRD_UCM_server1,PRD_IBR_server1}.>
    <14/10/2011 6:35:33 PM EST> <Critical> <WebLogicServer> <BEA-000362> <Server failed. Reason:
    There are 1 nested errors:
    weblogic.management.ManagementException: [Management:141223]The server name PRD_UCM_Server1 specified with -Dweblogic.Name does not exist. The configuration includes the following servers {PRDAdminServer,PRD_UCM_server1,PRD_IBR_server1}.
    at weblogic.management.provider.internal.RuntimeAccessImpl.<init>(RuntimeAccessImpl.java:149)
    at weblogic.management.provider.internal.RuntimeAccessService.start(RuntimeAccessService.java:41)
    at weblogic.t3.srvr.ServerServicesManager.startService(ServerServicesManager.java:461)
    at weblogic.t3.srvr.ServerServicesManager.startInStandbyState(ServerServicesManager.java:166)
    at weblogic.t3.srvr.T3Srvr.initializeStandby(T3Srvr.java:881)
    at weblogic.t3.srvr.T3Srvr.startup(T3Srvr.java:568)
    at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:469)
    at weblogic.Server.main(Server.java:71)
    Regards
    Avi

    Hi Avi,
    Give a cross check to your ServerStart.py
    As the error states The server name PRD_UCM_Server1 specified with -Dweblogic.Name does not exist
    In your ServerStart.py you might have specified as follows
    sh start MAnagedWeblogic.sh server=PRD_UCM_Server1
    While these are the list of Server you have in your weblogic
    PRDAdminServer,
    PRD_UCM_server1,(You have Specified in your command PRD_UCM_Server1
    PRD_IBR_server1
    The Command should be as follows
    sh start ManagedWeblogic.sh server=PRD_UCM_server1
    This should help
    Regards
    Fabian

  • Node Manager not starting UCM Server

    Hi All,
    I have configured Node Manager to start and stop UCM 11g server.
    But whenever, I am restarting the host OS - Windows server 2003 64 bit, it does not start the UCM managed server, automatically.
    I am running two managed servers on the same host OS, the first UCM manages server, starts automatically on every restart.
    The second managed UCM server, does not start. I need to then manually start the managed server. There are no errors logged, and the manual start of the managed server happens without any issues.
    As a workaround, I tried starting the managed server from Windows scheduler, but it does not start the server as well. I wrote a script like -
    Myscript.cmd
    call E:\..\user_projects\domains\prod_domain\bin\setDomainEnv.cmd
    java weblogic.WLST c:\start....\ServerStart.py
    scheduled the script (myscript.cmd) to run from the Windows Scheduler.
    Any pointers would be very helpful. Are there any known issues, if there are two managed servers, and one starts automatically, which affects the starting of the second managed server?
    Regards
    Avi

    Hi All,
    Add to my initial post , the error which is getting logged is -
    <14/10/2011 6:35:22 PM EST> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.3.5.0 Fri Apr 1 20:20:06 PDT 2011 1398638 >
    <14/10/2011 6:35:33 PM EST> <Info> <Management> <BEA-141223> <The server name PRD_UCM_Server1 specified with -Dweblogic.Name does not exist. The configuration includes the following servers {PRDAdminServer,PRD_UCM_server1,PRD_IBR_server1}.>
    <14/10/2011 6:35:33 PM EST> <Critical> <WebLogicServer> <BEA-000362> <Server failed. Reason:
    There are 1 nested errors:
    weblogic.management.ManagementException: [Management:141223]The server name PRD_UCM_Server1 specified with -Dweblogic.Name does not exist. The configuration includes the following servers {PRDAdminServer,PRD_UCM_server1,PRD_IBR_server1}.
         at weblogic.management.provider.internal.RuntimeAccessImpl.<init>(RuntimeAccessImpl.java:149)
         at weblogic.management.provider.internal.RuntimeAccessService.start(RuntimeAccessService.java:41)
         at weblogic.t3.srvr.ServerServicesManager.startService(ServerServicesManager.java:461)
         at weblogic.t3.srvr.ServerServicesManager.startInStandbyState(ServerServicesManager.java:166)
         at weblogic.t3.srvr.T3Srvr.initializeStandby(T3Srvr.java:881)
         at weblogic.t3.srvr.T3Srvr.startup(T3Srvr.java:568)
         at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:469)
         at weblogic.Server.main(Server.java:71)
    Regards,
    Avi

  • BI Server not starting in OBIEE 11g

    hi,
    While starting the BI server from Enterprise Manager in OBIEE 11g I am facing this issue.
    the details in the error log says.
    [2010-09-15T05:45:58.000+00:00] [OracleBIServerComponent] [ERROR:1] [] [] [ecid: 00hvhkOQB^r0Vsk_Kxx0ie0001F^000000] [tid: 14d8] [43065] The connection with Cluster Controller SJRH-011:9706 was lost.
    Could you please let me know how to solve this issue. Also the other components are also not starting.
    Any pointers would be useful .
    Thanks,
    Bhavik

    go to <middleware>/instance/../bin folder in the command prompt and try
    opmnctl statusProcesses in Instance: instance1
    --------------------------------------------------------------+---------
    ias-component | process-type | pid | status
    --------------------------------------------------------------+---------
    coreapplication_obiccs1 | OracleBIClusterCo~ | 2668 | Alive
    coreapplication_obisch1 | OracleBIScheduler~ | 3252 | Alive
    coreapplication_obijh1 | OracleBIJavaHostC~ | 1584 | Alive
    coreapplication_obips1 | OracleBIPresentat~ | 4420 | Alive
    coreapplication_obis1 | OracleBIServerCom~ | 4996 | Alive
    see whether the cluster control is alive.. if the status is other than Alive.. try to restart the BI cluster controls from http://localhost:7001/em/
    check the status, then start the BI presentation servers...
    hopefully this should start the servers to 100%

  • CRS not starting after Oracle 11g Grid was succesuflly installed

    Hi:
    Have 2 node RAC. My Shared storage is on openfiler.
    Oracle 11g Grid was successfully installed and all the services was working fine. When i restarted the system I found CRS was not coming up. Remaining processes were up and running.
    Let me explain what I did: (O/s RHEL 5.4 & oracle 11g R2 grid)
    I have a partition in shared disk /dev/sdc1 (I have other partitions, but thought of using only one for OCR and voting disk). (did not define it as raw partition as I used to do in 10g RAC).
    While installing Oracle grid and when it prompted to enter the Diskgroup for OCR and Voting disk I gave a name DGDATA and choose only one (external redundancy) disk “/dev/sdc1″ (it does not ask for one for OCR and one for Voting as it used to do in 10g clusterware installation). As per my assumption both OCR and Voting disk were created within /dev/sdc1 (after installation when I queried I got the same info)
    The Oracle grid installation has gone through successfully. when I restart the system I find CRS not starting.
    The log says: “Error PROC:26: Error while accessing the physical storage ASM……..
    ORA-01034: oracle not available...
    Could not init OCR, code:26….
    Linux permission denied".
    For your information….ASM instance is up (check in both the nodes) and I find the diskgroup mounted.
    Can anyone help on this.
    Also let me know how to uninstall Oracle 11g Grid software and configuration. If I have to reinstall the Oracle 11g grid software and config once again is it possible without reinstalling RHEL. Let me know the steps or any link please. don't want to get into a mess again.
    Thanks in advance.
    Regards
    Dinesh

    Jorg, I even tried to nomount the DB instance using initDBRAC.ora pfile. Then tried to create spfile still got the same error.
    The second trace file which I have pasted looks like some memory dump.
    ASM_DISKSTRING= /dev/sdc*
    ***********************************************************************1st trace file
    Fatal NI connect error 12547, connecting to:
    (DESCRIPTION=(ADDRESS=(PROTOCOL=beq)(PROGRAM=/crs/11.2.0/grid/bin/oracle)(ARGV0=oracle+ASM1_o000_dbrac)(ENVS='ORACLE_HOME=/crs/11.2.0/grid,ORACLE_SID=+ASM1')(ARGS='(DESCRIPTION=(LOCAL=YES)(ADDRESS=(PROTOCOL=beq)))'))(enable=setuser)(CONNECT_DATA=(CID=(PROGRAM=oracle@skyit6)(HOST=skyit6)(USER=oracle))))
    VERSION INFORMATION:
    TNS for Linux: Version 11.2.0.1.0 - Production
    Oracle Bequeath NT Protocol Adapter for Linux: Version 11.2.0.1.0 - Production
    Time: 01-JUN-2011 01:27:07
    Tracing not turned on.
    Tns error struct:
    ns main err code: 12547
    TNS for Linux: Version 11.2.0.1.0 - Production
    Oracle Bequeath NT Protocol Adapter for Linux: Version 11.2.0.1.0 - Production
    Time: 01-JUN-2011 01:27:07
    Tracing not turned on.
    Tns error struct:
    ns main err code: 12547
    TNS-12547: TNS:lost contact
    ns secondary err code: 12560
    nt main err code: 517
    TNS-00517: Lost contact
    nt secondary err code: 32
    nt OS err code: 0
    ERROR: Failed to connect with connect string: (DESCRIPTION=(ADDRESS=(PROTOCOL=beq)(PROGRAM=/crs/11.2.0/grid/bin/oracle)(ARGV0=oracle+ASM1_o000_dbrac)(ENVS='ORACLE_HOME=/crs/11.2.0/grid,ORACLE_SID=+ASM1')(ARGS='(DESCRIPTION=(LOCAL=YES)(ADDRESS=(PROTOCOL=beq)))'))(enable=setuser))
    Wed Jun 01 01:27:07 2011
    ERROR: slave communication error with ASM; terminating process 16772
    Errors in file /oraeng/app/oracle/product/diag/rdbms/dbrac/DBRAC/trace/DBRAC_ora_16772.trc:
    ----======================2nd trace file
    Trace file /oraeng/app/oracle/product/diag/rdbms/dbrac/DBRAC/trace/DBRAC_ora_16772.trc
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
    With the Real Application Clusters option
    ORACLE_HOME = /oraeng/app/oracle/product/11.2.0
    System name: Linux
    Node name: skyit6
    Release: 2.6.18-164.el5
    Version: #1 SMP Tue Aug 18 15:51:54 EDT 2009
    Machine: i686
    Instance name: DBRAC
    Redo thread mounted by this instance: 0 <none>
    Oracle process number: 25
    Unix process pid: 16772, image: oracle@skyit6 (TNS V1-V3)
    *** 2011-06-01 01:27:07.010
    *** SESSION ID:(1.3) 2011-06-01 01:27:07.010
    *** CLIENT ID:() 2011-06-01 01:27:07.010
    *** SERVICE NAME:() 2011-06-01 01:27:07.010
    *** MODULE NAME:(sqlplus@skyit6 (TNS V1-V3)) 2011-06-01 01:27:07.010
    *** ACTION NAME:() 2011-06-01 01:27:07.010
    ERROR: slave communication error with ASM; terminating process 16772
    *** 2011-06-01 01:27:07.035
    dbkedDefDump(): Starting a non-incident diagnostic dump (flags=0x0, level=2, mask=0x0)
    ----- Error Stack Dump -----
    ----- Current SQL Statement for this session (sql_id=bff5sku8phfgx) -----
    create spfile='+dgasmspfile/spfileDBRAC.ora' from pfile
    *** 2011-06-01 01:27:07.070
    ----- Call Stack Trace -----
    calling call entry argument values in hex
    location type point (? means dubious value)
    skdstdst()+41 call kgdsdst() BF9E05FC ? 2 ?
    ksedst1()+77 call skdstdst() BF9E05FC ? 0 ? 1 ? AB80E70 ?
    852F42A ? AB80E70 ?
    ksedst()+33 call ksedst1() 0 ? 1 ?
    dbkedDefDump()+2699 call ksedst() 0 ? 0 ? BF9E0D40 ? 0 ? 0 ?
    0 ?
    ksedmp()+47 call dbkedDefDump() 2 ? 0 ?
    kfTerminateMe()+75 call ksedmp() 2 ? 3 ? F1170AC ? F149234 ?
    5 ? BF9E0A6C ?
    kfnCheckCommError() call kfTerminateMe() F149234 ? BF9E0C1C ?
    +32 B033D83 ? 29392378 ?
    F149234 ? EB00601 ?
    kfncSlaveSubmit()+5 call kfnCheckCommError() 29392378 ? F149234 ?
    83
    kfncFileDelete()+11 call kfncSlaveSubmit() BF9E0E5C ? 0 ? F147B24 ?
    81
    kfioDelete()+126 call kfncFileDelete() 29DEE0 ? 1C ?
    ksfddel1()+582 call kfioDelete() 29DEE0 ? 1C ? D ?
    ksfddel()+187 call ksfddel1() 29DEE0 ? 1C ? D ? 0 ?
    BF9E0F2C ? 9BA2 ?
    ksp_spfile_create() call ksfddel() 29DEE0 ? 1C ? D ? 0 ?
    +677
    kspcspfp()+791 call ksp_spfile_create() BF9E49D4 ? 0 ? 29DEE0 ? 1C ?
    7D02 ? 0 ?
    kspocte()+67 call kspcspfp() 29DEE0 ? 1C ? F074CC4 ? F ?
    61,1 1%
    Regards
    Dinesh

  • Why is spotlight indexing not starting?

    In spotlight, it states that it is estimating index time. This message never disappears. In a similar thread, somebody was advised to post the following code into terminal;
    syslog -k Sender mdworker -o -k Sender mds | grep -v boxd | tail | open -f -a TextEdit
    The resulting text allowed the answerer to determine that there was a corrupt font file. I also put the code into terminal and this was the resulting text;
    Jun 16 14:20:58 Jack-Elliotts-MacBook-Pro-2.local mds[41] <Error>: (Error) Backup: MDSBackupTask:0x0 Undispatched backup task:471111 resolved:0 cid:616950205797322:-1 finished:-1
    Jun 18 15:39:16 Jack-Elliotts-MacBook-Pro-2.local mds[41] <Error>: (Error) Backup: MDSBackupTask:0x0 Undispatched backup task:17031201 resolved:0 cid:697273338727840:-1 finished:-1
    Jun 18 15:39:32 Jack-Elliotts-MacBook-Pro-2.local mds[41] <Error>: (Error) Backup: MDSBackupTask:0x0 Undispatched backup task:16965667 resolved:0 cid:817539723702420:-1 finished:-1
    Jun 18 15:46:51 Jack-Elliotts-MacBook-Pro-2.local mdworker[12505] <Warning>: CFPreferences: user home directory for user kCFPreferencesCurrentUser at /Users/Guest is unavailable. User domains will be volatile.
    Jun 20 10:22:06 Jack-Elliotts-MacBook-Pro-2.local mds[41] <Error>: (Error) Backup: MDSBackupTask:0x0 Undispatched backup task:16957469 resolved:0 cid:817553925166352:-1 finished:-1
    Jun 20 10:50:39 Jack-Elliotts-MacBook-Pro-2.local mds[41] <Error>: (Error) Server: ==== XPC handleXPCMessage XPC_ERROR_CONNECTION_INVALID
    Can anybody help me find out what this means?
    Message was edited by: jackelliott

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, or by a peripheral device. 
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards. Boot in safe mode and log in to the account with the problem. Note: If FileVault is enabled, or if a firmware password is set, or if the boot volume is a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to boot and run than normal, and some things won’t work at all, including Wi-Fi on certain iMacs. The next normal boot may also be somewhat slow.
    The login screen appears even if you usually log in automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin. Test while in safe mode. Same problem? After testing, reboot as usual (i.e., not in safe mode) and verify that you still have the problem. Post the results of the test.

  • "the ipod updater will start automatically" does not start

    UGG! i got the ipod nano and tried downloading ipod updater/itunes and neither will work i have no firewall but i do have bit defender 7.1 ive been trying this for days!!

    Isn't there a link you can click on if the download doesn't start automatically? I know mine didn't start so I had to click on the link and then it downloaded fine (something about Active X Security settings in XP, I think). Anyway try it again and look around for the link to manually start the download.

  • IAS_101330_Apache2_Modplsql2_win32 universal installer not started

    iAS_101330_Apache2_Modplsql2_win32 universal installer not started with Oracle 11g database installed in the same server. I tried to use the Oracle 11g universal installer to open the products.xml file under the iAS_101330_Apache2_Modplsql2_win32 directory. However, it still complained that all components must be 11g. Does anyone have experience installing Oracle 11g and Oracle HTTP Server in the same box? I don't want to use the embedded PL/SQL gateway.
    Thanks.
    Andy

    I had faced the same problem exactly and looks like this is the expected behaviour with higher version of installer.
    Please download 3540563 patch (which is a software of oracle universal installer) and install it in a seperate home and using that installer you should be able to install the apache.
    I am trying the same but now i am getting this problem:
    "Not all the dependencies for the component Oracle Client 10.2.0.1.0 could be found..."
    I will update it again if i find any solution for my above problem.

  • Km Index does not Start Automatically

    Hi:
    I created an Index with one data source ( FSDB Repository ). In the TREX Monitor I edit the Queue Parameters:
    Schedule type: Both
    Schedule Time: All-0:01 ( Every minute ).
    I have added documents manually to the repository and the index started autimatically each minute. Everything was working fine, but now the Index doesnt Start automatically, I have to flush it or do an incremental update if I want the documents quickly visible in the search. I haven´t make any changes in the queue parameters.
    Please help,
    Thanks,
    Luciana

    I have to same problem: Bought Elgato Sat 3 years ago. Now I decided to install it in the living room and bought a new i5 Mac mini. EyeTV works fine but does not wake up Mountain Lion 10.8.2 sometimes.
    When I program wake up events manually via System Preferences or pmset command in the terminal, all works fine and my Mac wakes up. I tried everything, from clean reinstall to debugging AutoWake.plist and such.
    Annoying!

  • Oracle 11g XE listener does not start automatically during boot

    Hi,
    This happened to me recently I just wanted to share it with you.
    For development I was running Standard Edition, at some point I decided to run also XE on the same server for another reasons. Everything was working fine, except that after restart of the server, the XE listener is not starting automatically. Debugging the startup script I found that this happens because of a bug in the code, which assumes that XE listener is running if it finds the word LISTENER within the processes list. I didn't found any obligation in the docs for running XE without any other databases on the same host.
    In file /etc/init.d/oracle-xe, at line 556 the code is failing:
    1     + status='oracle 2889 1 0 May13 ? 00:00:05 /oracle/ora112se/bin/tnslsnr LISTENER -inherit'
    2     + '[' 'oracle 2889 1 0 May13 ? 00:00:05 /oracle/ora112se/bin/tnslsnr LISTENER -inherit' == '' ']'
    As you can see I have another listener(the one for SE) running and because of the XE startup script found the keyword LISTENER it’s supposing that the XE LISTENER is already running.
    To fix this simply change line 556 from:
    1     status=`ps -ef | grep tns | grep oracle`
    To:
    1     status=`ps -ef | grep tns | grep oracle | grep xe`
    Now XE listener is started automatically during boot.
    Sve
    Blog: http://sve.to
    Twitter: sgyurov

    I though the same thing, but XE LISTENER is running on localhost and port 1522. On the other hand XE have local_listener explicitly set to the very same connection descriptor. Even XE installation was second on this server.
    I've could change that yes, but the startup script doesn't seemed to have this mind.
    Regards,
    Sve

  • MII UDS does not start automatically on server reset

    Hi,
    MII UDS does not start automatically on server reset, although it was set as automatically start.
    What could be the reason of this problem?
    Thanks.

    Hi,
    Is the runtime mode is set to service?
    Have you referred this document?
    [Programatically Starting and Stopping an SAP xMII UDS Executable Instance|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/b0f460c3-7f92-2910-02af-b608f92977c3]
    Regards,
    Musarrat
    Edited by: Musarrat Husain on Jul 6, 2011 8:27 PM

  • The CSSD does not start automatically on Non-RAC - AIX 5L

    Hi all,
    Database: Oracle 10.2.0.4
    O.S AIX 5.3 TL 10
    I am facing a problem with the CSSD Non-RAC/Clusterware.
    When we restarted the server the service CSSD does not start automatically and there is no relevant messages in the log files of CSSD.
    Running the "localconfig reset $ORACLE_HOME", execute successfully but does not start the CSSD.
    Running "/etc/init.cssd start" - does not work, nothing happens when we run it
    I manually ran "/etc/ init.cssd run" and the service CSSD (ossd.bin) was started without errors.
    No errors on errpt from AIX.
    I've opened a SR but I am waiting for response from Oracle.

    Hi,
    I believe this problem is not with Oracle, but in AIX.It may be that one process that is starting on boot is holding the other process. You need to identify what is process/application.
    Check the process on inittab that are already active and which are inactive they should be active.
    One clue: Is very common process that is initiated in wait mode hold the boot server.
    wait
    When the init command enters the run level that matches the entry's run level,
    start the process and wait for its termination.
    All subsequent reads of the /etc/inittab file while the init
    command is in the same run level will cause the init command to ignore this entry.http://publib.boulder.ibm.com/infocenter/aix/v6r1/index.jsp?topic=/com.ibm.aix.files/doc/aixfiles/inittab.htm
    Regards,
    Levi Pereira

  • CSS does not start using 11g RH4 SCSI drives

    Hi All...
    Followed all necessary procedures for setting up oracle. The problem is when I try and get ASM working, I get to the part that says CSS is not running and then do a $ORACLE_HOME/bin/localconfig add as root with all environmental variables set up properly. Furthermore, oracleasm was previously installed, properly configured because I can run the scan, query and list and it comes back correctly.
    [root@db raw]# /etc/init.d/oracleasm scandisks
    Scanning the system for Oracle ASMLib disks: [  OK  ]
    [root@db raw]# /etc/init.d/oracleasm listdisks
    VOL1
    VOL2
    VOL3
    VOL4
    At the end of this process CSS fails to start. There is nothing placed into the /var/tmp/.oracle directory. I then ran the $ORACLE_HOME/bin/localconfig reset $ORACLE_HOME and get the same result.
    Successfully accumulated necessary OCR keys.
    Creating OCR keys for user 'root', privgrp 'root'..
    Operation successful.
    Configuration for local CSS has been initialized
    Cleaning up Network socket directories
    Setting up Network socket directories
    Adding to inittab
    Startup will be queued to init within 30 seconds.
    Checking the status of new Oracle init process...
    Expecting the CRS daemons to be up within 600 seconds.
    Giving up: Oracle CSS stack appears NOT to be running.
    Oracle CSS service would not start as installed
    Automatic Storage Management(ASM) cannot be used until Oracle CSS service is started
    While it is running I see:
    oracle:/u01/app/oracle> ps -ef | grep crs
    root 18399 18142 22 19:31 pts/2 00:00:12 /u01/app/oracle/product/11.1.0/db_1/bin/crsctl.bin check install -wait 600
    oracle 18521 18432 0 19:32 pts/4 00:00:00 grep crs
    ps -ef | grep css
    oracle 18653 18432 0 19:33 pts/4 00:00:00 grep css
    [root@db oracle]# tail ocr.loc
    ocrconfig_loc=/u01/app/oracle/product/11.1.0/db_1/cdata/localhost/local.ocr
    local_only=TRUE
    Contents of css log file in $ORACLE_HOME/log/db/client
    2009-02-05 15:30:26.331: [ CSSCLNT][2556107008]clsssInitNative: failed to connect to (ADDRESS=(PROTOCOL=ipc)(KEY=OCSSD_LL_db_)), rc 9
    Contents of cslcfg log is as follows:
    Oracle Database 11g CRS Release 11.1.0.6.0 - Production Copyright 1996, 2007 Oracle. All rights reserved.
    2009-02-05 15:20:14.403: [  OCROSD][2557164416]utread:3: Problem reading buffer 53b000 buflen 512 retval 0 phy_offset 102400 retry 0
    2009-02-05 15:20:14.403: [  OCROSD][2557164416]utread:4: Problem reading the buffer errno 2 errstring No such file or directory
    2009-02-05 15:20:14.403: [  OCROSD][2557164416]utread:3: Problem reading buffer 53e000 buflen 4096 retval 0 phy_offset 102400 retry 0
    2009-02-05 15:20:14.403: [  OCROSD][2557164416]utread:4: Problem reading the buffer errno 2 errstring No such file or directory
    2009-02-05 15:20:14.403: [  OCRRAW][2557164416]propriogid:1: INVALID FORMAT
    2009-02-05 15:20:14.403: [  OCROSD][2557164416]utread:3: Problem reading buffer 53e000 buflen 4096 retval 0 phy_offset 102400 retry 0
    2009-02-05 15:20:14.403: [  OCROSD][2557164416]utread:4: Problem reading the buffer errno 2 errstring No such file or directory
    2009-02-05 15:20:14.404: [  OCRRAW][2557164416]ibctx:1:ERROR: INVALID FORMAT
    2009-02-05 15:20:14.404: [  OCRRAW][2557164416]proprinit:problem reading the bootblock or superbloc 22
    2009-02-05 15:20:14.404: [ default][2557164416]a_init:7!: Backend init unsuccessful : [22]
    2009-02-05 15:20:14.404: [  OCROSD][2557164416]utread:3: Problem reading buffer 531000 buflen 512 retval 0 phy_offset 102400 retry 0
    2009-02-05 15:20:14.404: [  OCROSD][2557164416]utread:4: Problem reading the buffer errno 2 errstring No such file or directory
    2009-02-05 15:20:14.404: [  OCROSD][2557164416]utread:3: Problem reading buffer 531000 buflen 4096 retval 0 phy_offset 102400 retry 0
    2009-02-05 15:20:14.404: [  OCROSD][2557164416]utread:4: Problem reading the buffer errno 2 errstring No such file or directory
    2009-02-05 15:20:14.404: [  OCRRAW][2557164416]propriogid:1: INVALID FORMAT
    2009-02-05 15:20:14.404: [  OCROSD][2557164416]utread:3: Problem reading buffer 531000 buflen 4096 retval 0 phy_offset 102400 retry 0
    2009-02-05 15:20:14.404: [  OCROSD][2557164416]utread:4: Problem reading the buffer errno 2 errstring No such file or directory
    2009-02-05 15:20:14.404: [  OCRRAW][2557164416]ibctx:1:ERROR: INVALID FORMAT
    2009-02-05 15:20:14.404: [  OCRRAW][2557164416]proprinit:problem reading the bootblock or superbloc 22
    2009-02-05 15:20:14.404: [ default][2557164416]a_init:7!: Backend init unsuccessful : [22]
    2009-02-05 15:20:14.405: [  OCROSD][2557164416]utread:3: Problem reading buffer 534000 buflen 512 retval 0 phy_offset 102400 retry 0
    2009-02-05 15:20:14.405: [  OCROSD][2557164416]utread:4: Problem reading the buffer errno 2 errstring No such file or directory
    2009-02-05 15:20:14.405: [  OCROSD][2557164416]utread:3: Problem reading buffer 533000 buflen 4096 retval 0 phy_offset 102400 retry 0
    2009-02-05 15:20:14.405: [  OCROSD][2557164416]utread:4: Problem reading the buffer errno 2 errstring No such file or directory
    2009-02-05 15:20:14.405: [  OCRRAW][2557164416]propriogid:1: INVALID FORMAT
    2009-02-05 15:20:14.405: [  OCROSD][2557164416]utread:3: Problem reading buffer 533000 buflen 4096 retval 0 phy_offset 102400 retry 0
    2009-02-05 15:20:14.405: [  OCROSD][2557164416]utread:4: Problem reading the buffer errno 2 errstring No such file or directory
    2009-02-05 15:20:14.405: [  OCRRAW][2557164416]ibctx:1:ERROR: INVALID FORMAT
    2009-02-05 15:20:14.405: [  OCRRAW][2557164416]proprinit:problem reading the bootblock or superbloc 22
    2009-02-05 15:20:14.405: [  OCROSD][2557164416]utread:3: Problem reading buffer 534000 buflen 512 retval 0 phy_offset 102400 retry 0
    2009-02-05 15:20:14.405: [  OCROSD][2557164416]utread:4: Problem reading the buffer errno 2 errstring No such file or directory
    2009-02-05 15:20:14.405: [  OCROSD][2557164416]utread:3: Problem reading buffer 533000 buflen 4096 retval 0 phy_offset 102400 retry 0
    2009-02-05 15:20:14.405: [  OCROSD][2557164416]utread:4: Problem reading the buffer errno 2 errstring No such file or directory
    2009-02-05 15:20:14.405: [  OCRRAW][2557164416]propriogid:1: INVALID FORMAT
    2009-02-05 15:20:14.485: [  OCRRAW][2557164416]propriowv: Vote information on disk 0 [u01/app/oracle/product/11.1.0/db_1/cdata/localhost/local.ocr] is adjusted from [0/0] to [2/2]
    2009-02-05 15:20:14.815: [  OCRRAW][2557164416]iniconfig:No 92 configuration
    2009-02-05 15:20:14.815: [  OCRAPI][2557164416]a_init:6a: Backend init successful
    There are no logs in the $ORACLE_HOME/bin/log/db/cssd directory.
    Here is our disk information:
    brw-rw---- 1 root disk 8, 0 Feb 5 09:56 sda
    brw-rw---- 1 root disk 8, 1 Feb 5 09:56 sda1
    brw-rw---- 1 root disk 8, 2 Feb 5 09:56 sda2
    brw-rw---- 1 root disk 8, 16 Feb 5 09:56 sdb
    brw-rw---- 1 root disk 8, 17 Feb 5 14:57 sdb1
    brw-rw---- 1 root disk 8, 18 Feb 5 14:57 sdb2
    brw-rw---- 1 root disk 8, 32 Feb 5 09:56 sdc
    brw-r----- 1 oracle oinstall 8, 33 Feb 5 14:57 sdc1
    brw-rw---- 1 root disk 8, 48 Feb 5 09:56 sdd
    brw-r----- 1 oracle oinstall 8, 49 Feb 5 14:57 sdd1
    brw-rw---- 1 root disk 8, 64 Feb 5 09:56 sde
    brw-r----- 1 oracle oinstall 8, 65 Feb 5 14:57 sde1
    brw-rw---- 1 root disk 8, 80 Feb 5 09:56 sdf
    brw-r----- 1 oracle oinstall 8, 81 Feb 5 14:57 sdf1
    Raw devices:
    crw------- 1 oracle oinstall 162, 1 Feb 5 14:57 raw1
    crw------- 1 oracle oinstall 162, 2 Feb 5 14:57 raw2
    crw------- 1 oracle oinstall 162, 3 Feb 5 14:57 raw3
    crw------- 1 oracle oinstall 162, 4 Feb 5 14:57 raw4
    Tried
    [root@db init.d]# ./init.cssd start
    Startup will be queued to init within 30 seconds.
    [root@db init.d]# ps -ef | grep css
    root 19962 17418 0 19:50 pts/2 00:00:00 grep css
    Okay, so what is wrong here? Why won;t CSS start? Checked every piece of literature and search engine results and tried almost everything...
    So, dear forum people... Help.
    Regards...

    I got same issue with Oracle 10.2.3 on Solaris. This is a single node setting.
    Tried the localconfig reset with root, same issue.
    Need help.
    cssd/cssdOUT.log
    setpriority: unable to escalate to priority -20 (13)
    client/css.log
    Oracle Database 10g CRS Release 10.2.0.1.0 Production Copyright 1996, 2005 Oracle. All rights reserved.
    2009-03-22 11:44:46.916: [ CSSCLNT][1]clsssInitNative: connect failed, rc 9
    alertos631std.log
    2009-03-22 11:44:31.921
    [client(10951)]CRS-1006:The OCR location /opt/oracle/current/cdata/localhost/local.ocr is inaccessible. Details in /opt/oracle/current/log/os631std/client/clscfg.log.
    2009-03-22 11:44:31.924
    [client(10951)]CRS-1006:The OCR location /opt/oracle/current/cdata/localhost/local.ocr is inaccessible. Details in /opt/oracle/current/log/os631std/client/clscfg.log.
    2009-03-22 11:44:32.486
    [client(10951)]CRS-1001:The OCR was formatted using version 2.
    clscfg.log
    Oracle Database 10g CRS Release 10.2.0.1.0 Production Copyright 1996, 2005 Oracle. All rights reserved.
    2009-03-22 11:44:31.919: [  OCROSD][1]utread:3: problem reading buffer 2140000 buflen 512 retval 0 phy_offset 102400 retry 0
    2009-03-22 11:44:31.919: [  OCROSD][1]utread:4: problem reading the buffer errno 2 errstring No such file or directory
    2009-03-22 11:44:31.919: [  OCROSD][1]utread:3: problem reading buffer 2146000 buflen 4096 retval 0 phy_offset 102400 retry 0
    2009-03-22 11:44:31.919: [  OCROSD][1]utread:4: problem reading the buffer errno 2 errstring No such file or directory
    2009-03-22 11:44:31.919: [  OCRRAW][1]propriogid:1: INVALID FORMAT
    2009-03-22 11:44:31.920: [  OCROSD][1]utread:3: problem reading buffer 2146000 buflen 4096 retval 0 phy_offset 102400 retry 0
    2009-03-22 11:44:31.920: [  OCROSD][1]utread:4: problem reading the buffer errno 2 errstring No such file or directory
    2009-03-22 11:44:31.921: [  OCRRAW][1]ibctx:1:ERROR: INVALID FORMAT
    2009-03-22 11:44:31.921: [  OCRRAW][1]proprinit:problem reading the bootblock or superbloc 22
    2009-03-22 11:44:31.921: [ default][1]a_init:7!: Backend init unsuccessful : [22]
    2009-03-22 11:44:31.923: [  OCROSD][1]utread:3: problem reading buffer 2146000 buflen 512 retval 0 phy_offset 102400 retry 0
    2009-03-22 11:44:31.923: [  OCROSD][1]utread:4: problem reading the buffer errno 2 errstring No such file or directory
    2009-03-22 11:44:31.923: [  OCROSD][1]utread:3: problem reading buffer 2146000 buflen 4096 retval 0 phy_offset 102400 retry 0
    2009-03-22 11:44:31.923: [  OCROSD][1]utread:4: problem reading the buffer errno 2 errstring No such file or directory
    2009-03-22 11:44:31.924: [  OCRRAW][1]propriogid:1: INVALID FORMAT
    2009-03-22 11:44:31.924: [  OCROSD][1]utread:3: problem reading buffer 2146000 buflen 4096 retval 0 phy_offset 102400 retry 0
    2009-03-22 11:44:31.924: [  OCROSD][1]utread:4: problem reading the buffer errno 2 errstring No such file or directory
    2009-03-22 11:44:31.924: [  OCRRAW][1]ibctx:1:ERROR: INVALID FORMAT
    2009-03-22 11:44:31.924: [  OCRRAW][1]proprinit:problem reading the bootblock or superbloc 22
    2009-03-22 11:44:31.924: [  OCROSD][1]utread:3: problem reading buffer 2146000 buflen 512 retval 0 phy_offset 102400 retry 0
    2009-03-22 11:44:31.924: [  OCROSD][1]utread:4: problem reading the buffer errno 2 errstring No such file or directory
    2009-03-22 11:44:31.924: [  OCROSD][1]utread:3: problem reading buffer 2146000 buflen 4096 retval 0 phy_offset 102400 retry 0
    2009-03-22 11:44:31.924: [  OCROSD][1]utread:4: problem reading the buffer errno 2 errstring No such file or directory
    2009-03-22 11:44:31.924: [  OCRRAW][1]propriogid:1: INVALID FORMAT
    2009-03-22 11:44:32.018: [  OCRRAW][1]propriowv: Vote information on disk 0 [opt/oracle/current/cdata/localhost/local.ocr] is a
    djusted from [0/0] to [2/2]
    2009-03-22 11:44:32.486: [  OCRRAW][1]propriniconfig:No 92 configuration
    2009-03-22 11:44:32.486: [  OCRAPI][1]a_init:6a: Backend init successful
    Edited by: user462878 on Mar 22, 2009 9:03 AM
    Edited by: user462878 on Mar 22, 2009 9:03 AM

Maybe you are looking for