Unable to start Concurrent Requests.

Hi group,
I am trying to startup concurrent managers using adstrall.cmd command, but concurrent managers are unable to bring up.
Next error is displayed at logfile:
ORACLE error 60 in insert_fcp
Cause: insert_fcp failed due to ORA-00060: deadlock detected while waiting for resource
ORA-06512: at "APPS.FND_CP_FNDSM", line 127
ORA-06512: at line 1.
The SQL statement being executed at the time of the e
Could not initialize the Service Manager FNDSM_SRVORACLE06_EBSDEV. Verify that SRVORACLE06 has been registered for concurrent processing.
Routine AFPEIM encountered an error while starting concurrent manager PASMGR with library F:\ORAEBS_APPS\apps\apps_st\appl\pa\12.0.0\bin\PALIBR.
Check that your system has enough resources to start a concurrent manager process. Contact your system admini : 31-MAY-2010 19:58:07
Process monitor session ended : 31-MAY-2010 19:58:09
We are working on Windows 2003 with Ebusiness Suite 12.1.2 multinode installation (two nodes).
Has anybody experienced this problem before?
Thanks in advance.
Kind regards,
Francisco Mtz. Oviedo

Hi Hussein,
Thank you very much for that.
I this it doesn't apply to my case, the error that I am getting is when I start the concurrent managers processes.
I have opened a new SR with Oracle Support to solve this issue.
Thanks in advance my friend.
Kind regards,
Francisco Mtz. Oviedo

Similar Messages

  • Unable to start concurrent manager Service on WinXP

    Hi
    I have successfully installed R12 vision instance on widows XP with service pack 3.when i try to start oracle concurrent manager service from windows services it gives me error
    The oracleConcMgrVIS_demo (demo is the name of computer) service on local computer started then stopped. Some services started stop automatically if they have no work to for examples the performance logs and alert services.
    I am not able to run any report or concurrent request bcz of this.
    Kindly help me.
    Regards

    Hi ,
    Please go to services and update CM services properties.
    Right manager services--> Properties-->Log On--> As a domain User.( Not Local Usre)
    Restarte the machine with below command (Don't start from start->shutdown)
    Go to command prompt-- type below command
    shutdown -r -t 0 1
    l

  • Unable to start Concurrent Manager.

    Hi group,
    Me once again :=D, seems that Ebusiness Suite doesn't want to work properly on Windows environment :=D
    I am trying to start Concurrent Manager using "adcmctl.cmd" script, but it is unable to start it, please see below message for this error.
    F:\ORAEBS_APPS\inst\apps\EBSTEST_srvoracle05\admin\scripts>adcmctl.cmd start
    ECHO is off.
    ECHO is off.
    Tue 06/01/2010 07:15 PM
    ECHO is off.
    ECHO is off.
    Tue 06/01/2010 07:15 PM
    ECHO is off.
    ECHO is off.
    Setting environment for using Microsoft Visual Studio 2008 x86 tools.
    APPSORA.cmd exiting with status 0
    Enter the APPS Username/Password: apps/apps
    Starting concurrent manager for EBSTEST ...
    The OracleConcMgrEBSTEST_srvoracle05 service is starting.
    The OracleConcMgrEBSTEST_srvoracle05 service could not be started.
    A system error has occurred.
    System error 1067 has occurred.
    The process terminated unexpectedly.
    adcmctl.cmd exiting with status 2
    There aren't messages in Concurrent Manager logfile.
    I just recreated the service once again using adsvcm.cmd script.
    Any help or advice will be really appreciated.
    Thanks in advance.
    Kind regards,
    Francisco Mtz. Oviedo

    Hi,
    How often do I need to apply this procedure?, just kidding !!!! :=DUntil you migrate to Linux/Unix -- Not kidding :)
    It is Windows and I need to bounce everything when I need to solve this kind of issue !!!Yes, unfortunately this is how it goes. I do not like to maintain Oracle Apps on Windows especially when it comes to the CM!
    I was getting next error message in Event Viewer for Application:
    Error occured: StartICM:Logfile:F:\ORAEBS_APPS\inst\apps\EBSTEST_srvoracle05\logs\appl\conc\log\CM_EBSTEST_srvoracle05.log:The process cannot access the file because it is being used by another process. (0x20)Download this software and see if you can find what other processes are accessing this file and kill it (if possible!).
    Process Explorer
    http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx
    Thanks,
    Hussein

  • Unable to run Concurrent Request from Trigger

    Hi All
    Lots of Forums out there on this but I can't resolve it.
    Trigger as below does not run concurrent program.
    CREATE OR REPLACE TRIGGER APPS.XXGL_PNL_CONTROL_snapshot
    AFTER INSERT OR UPDATE
    ON XXOBI.XXGL_PNL_CONTROL
    REFERENCING NEW AS NEW OLD AS OLD
    FOR EACH ROW
    WHEN (
    NEW.STATUS ='APPROVED'
    declare
    l_errbuf varchar2(4000);
    l_retcode varchar2(4000);
    L_REQUEST_ID NUMBER;
    l_phase VARCHAR2 (240);
    l_status VARCHAR2 (240);
    l_dev_phase VARCHAR2 (240);
    l_dev_status VARCHAR2 (240);
    l_message VARCHAR2 (2000);
    l_call_status BOOLEAN;
    L_set_mode boolean;
    PRAGMA AUTONOMOUS_TRANSACTION;
    begin
    L_Set_mode := FND_Request.Set_Mode(TRUE);
    fnd_global.APPS_INITIALIZE (fnd_global.user_id,fnd_global.resp_id,fnd_global.resp_appl_id);
    l_request_id := fnd_request.submit_request(application => 'RMB GL',
    program => 'XXGLBSSNAP',
    argument1 => :NEW.CALENDAR_DATE,
    argument2 => :NEW.PNL_ROLLUP
    commit;
    end;
    If I remove the commit I get the following error
    active autonomous transaction detected and rolled back
    Cause: Before returning from an autonomous PL/SQL block, all autonomous transactions started within the block must be completed (either committed or rolled back). If not, the active autonomous transaction is implicitly rolled back and this error is raised.
    Action: Ensure that before returning from an autonomous PL/SQL block, any active autonomous transactions are explicitly committed or rolled back. ----------------------------------------------------------------------- 06520 through 06529 reserved for Foreign function errors
    Any help would be hugely appreciated
    Nicki

    after fnd_request.submit_request you must use - commit
    try change you code
    CREATE OR REPLACE TRIGGER APPS.XXGL_PNL_CONTROL_snapshot
    AFTER INSERT OR UPDATE
    begin
       cp_run(
                :NEW.CALENDAR_DATE...
    end;
    CREATE OR REPLACE PROCEDURE  cp_run (
           ... p_date indate ...
        IS
           PRAGMA AUTONOMOUS_TRANSACTION;
    l_request_id := fnd_request.submit_request(application => 'RMB GL',
    program => 'XXGLBSSNAP',
    argument1 => p_date
    commit;
    ...for example http://www.java2s.com/Tutorial/Oracle/0560__Trigger/MarktriggerwithPRAGMAAUTONOMOUSTRANSACTION.htm

  • We're sorry, but we are unable to complete your request at this time. Please try again in a few minutes or start over now.

    Trying to send my iPhone 5 in for repair, keep getting this error:
    "We're sorry, but we are unable to complete your request at this time.
    Please try again in a few minutes or start over now.
    (system.99)"
    Tried using different browsers, and waiting few minutes, no joy : (
    Any Ideas?

    Yeah, it kept doing it when I was trying to change the delivery address, changed it on my apple main apple profile adress and then it worked on the repair page.

  • Unable to open frontend page and unable start concurrent.

    APPS-11.5.10.2
    db-10g
    os-hp unix
    when i log on in fronend it is going to below location as per below URL.And my concurrent manager is not starting.but it is showing status 0.please help me to reslove.
    http://td1.ashokleyland.com:8010/oa_servlets/AppsLogin
    Rgs,
    RAM

    Hi,
    Yes i used adcmctl.sh script.please find below log.
    Starting CRMTST1_0423@CRMTST Internal Concurrent Manager -- shell process ID 521099
    logfile=/u01/appalcrm/applmgr/common/admin/log/CRMTST_td1/CRMTST1_0423.mgr
    PRINTER=noprint
    mailto=appalcrm
    restart=N
    diag=N
    sleep=60 (default)
    pmon=20 (default)
    quesiz=1 (default)
    The Internal Concurrent Manager has encountered an error.
    Review concurrent manager log file for more detailed information. : 23-APR-2013 10:28:46 -
    Shutting down Internal Concurrent Manager : 23-APR-2013 10:28:46
    List of errors encountered:
    _ 1 _
    Routine AFPCMT encountered an ORACLE error. ORA-01012: not logged on
    Review your error messages for the cause of the error. (=<POINTER>)
    _ 2 _
    Routine AFPCSQ encountered an ORACLE error. ORA-12537: TNS:connection
    closed
    Review your error messages for the cause of the error. (=<POINTER>)
    List of errors encountered:
    _ 1 _
    Routine AFPCAL received failure code while parsing or running your
    concurrent program CPMGR
    Review your concurrent request log file for more detailed information.
    Make sure you are passing arguments in the correct format.
    The CRMTST1_0423@CRMTST internal concurrent manager has terminated with status 1 - giving up.

  • CC&B 2.3.1 startup showing "Unable to start remote host JVM" error

    When starting up a newly installed CC&B server (Linux Redhat 5.0, x86_64), using weblogic 10.3.5, and java 1.6.0_35, I am incurring this error. Log file snippet:
    specified via property spl.runtime.cobol.remote.jvmMaxLifetimeSecs, defaulting to 0
    - 2012-09-13 17:49:12,837 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO (shared.environ.ApplicationProperties) Child JVM maximum COBOL requests is not spe
    cified via property spl.runtime.cobol.remote.jvmMaxRequests, defaulting to 0
    - 2012-09-13 17:49:12,838 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] INFO (cobol.host.CobolHostStartup) Using active JVM count of 2 for remote cobol executi
    on.
    - 2012-09-13 17:49:12,880 [pool-2-thread-1] ERROR (cobol.host.RemoteJVMFactoryImpl) Unable to start remote host JVM.
    java.io.IOException: Cannot run program "/srv/spl/ccb/CCBDEMO/bin/splcobjrun.sh": java.io.IOException: error=2, No such file or directory
    at java.lang.ProcessBuilder.start(ProcessBuilder.java:460)
    at java.lang.Runtime.exec(Runtime.java:593)
    at java.lang.Runtime.exec(Runtime.java:431)
    at java.lang.Runtime.exec(Runtime.java:369)
    at com.splwg.base.support.cobol.host.RemoteJVMFactoryImpl.addConnection(RemoteJVMFactoryImpl.java:87)
    at com.splwg.base.support.cobol.host.RotatingCommandRunnerProvider$ConnectionMonitor.addNecessaryConnections(RotatingCommandRunnerProvider.java:403)
    at com.splwg.base.support.cobol.host.RotatingCommandRunnerProvider$ConnectionMonitor.doHousekeeping(RotatingCommandRunnerProvider.java:330)
    at com.splwg.base.support.cobol.host.RotatingCommandRunnerProvider$ConnectionMonitor.run(RotatingCommandRunnerProvider.java:323)
    at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:441)
    at java.util.concurrent.FutureTask$Sync.innerRunAndReset(FutureTask.java:317)
    at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:150)
    at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.access$101(ScheduledThreadPoolExecutor.java:98)
    at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.runPeriodic(ScheduledThreadPoolExecutor.java:180)
    at java.util.concurrent.ScheduledThreadPoolExecutor$ScheduledFutureTask.run(ScheduledThreadPoolExecutor.java:204)
    at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
    at java.lang.Thread.run(Thread.java:662)
    Caused by: java.io.IOException: java.io.IOException: error=2, No such file or directory
    Does anyone have any ideas?

    hi
    I face a similar issue as u faced . Please let me know the solution .
    Error in Log file : When trying to switch language.
    ZOHAIB - 169696-23-1 2012-01-09 15:23:22,624 [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] ERROR (web.dataservlet.PageChange) Unexpected error.
    com.splwg.base.support.cobol.host.InputClosedException:
    The following stacked messages were reported as the LoggedException was rethrown:
    com.splwg.base.api.service.ServiceDispatcher$5.execute(ServiceDispatcher.java:248): Caught exception from SessionExecutable.execute()
    com.splwg.base.support.pagemaintenance.AbstractPageMaintenance.changeItem(AbstractPageMaintenance.java:134): Rollback: Change failed
    com.splwg.base.support.cobol.host.CommandRunnerHolder.invoke(CommandRunnerHolder.java:31): An exception occurred calling cobol program CIPZDATA
    com.splwg.base.support.cobol.host.OptimizedRemoteExecuterStub.sendRequestGetResponse(OptimizedRemoteExecuterStub.java:83): An exception has occurred calling the remote JVM
    com.splwg.base.support.cobol.host.OptimizedRemoteExecuterStub.sendRequestGetResponse(OptimizedRemoteExecuterStub.java:83): An exception occurred invoking remote command.

  • Unable to start Memory-Based Snapshot

    Hi all
    I run into a problem that I'd been trying to fix it for 2 days. I am implementing and testing the an ASCP instance. I'd finished the Standard Collection, reviewed the collected data and everything is fine. I'd defined an unconstrained plan and launched this plan. The request "Launch Supply Chain Planning Process" completed and then "Memory-Based Snapshot" started. It failed immediately and give the following errors:
    C:\oracle\R12\apps\apps_st\appl\msc\12.0.0\bin\MSCNSP
    usdsop cannot create a new process
    Cause: usdsop encountered an error creating a new process. [Reason].
    Action: Check that your system had enough resources to start a new process. Contact your system administrator to obtain more resou (RE
    Executing request completion options...
    Output file size:
    0
    Output is not being printed because:
    The print option has been disabled for this report.
    Finished executing request completion options.
    Concurrent request completed
    Current system time is 22-SEP-2012 02:02:48
    The platform is Windows 2003 server with 8G of ram (APPL_TOP with Conc. Manager). R12.1.3 with latest VCP patch applied.
    I'd checked / done the following:
    - relinked all MSC exe file in %MSC_TOP%/bin (no errors)
    - Profile option MRP:Snapshot Workers = 3, and I have set Standard Manager to 15
    - I'd checked all MSC and MRP profile options, cannot find anything special
    - I'd run adconfig to make sure the environment settings are updated and no manual changes
    - Run adadmin to make sure not invalid objects in the database
    I'd another server with the same physical settings but running the VISION Demo (patched to have the same VCP level). I can launch the ASCP plan without any issue.
    Can anyone tell me whether it is data issue, setting issue, hardware issue, or anything else ? Thanks.
    Edited by: 960630 on Sep 21, 2012 11:22 AM

    Thanks for your suggestions. I finally able to resolve this issue.
    - I'd relink all MSC and MSO exe files. No error found. Still not unable to launch Memory-Based Snapshot.
    - I'd turned on all possible debug, trace, etc to see any possible reasons for the failure. But no help at all.
    I almost created a TAR (which will need to run numerous useless checkings, talking to some clueless people, and waiting for weeks for doing nothing) and I found out I forgot to check one place - Windows Event Log. Bingo - I found the error and it's because of DLL unmatched (typical Microsoft DLL hell issue).
    Using Dependent Walker to see the linking of the MSC exe file, and then I pinpointed which version of MS C++ libraries were missed. Installed the latest MS VS2005 and 2008 redistributable libraries, relinked MSC exe files again, and FINALLY it's fixed.
    I need to talk to the DBA who prepare this clone to me....
    Edited by: 960630 on Sep 24, 2012 1:01 AM

  • Unable to Start R12 Instance adstrtal.sh exiting with status 1

    Hi - I am unable to restart my R12 server after successfully shutting it down.
    1)
    I seem to have the Database and Database Listener up with its respective scripts.
    /d01/oracle/vis/db/tech_st/11.1.0/appsutil/scripts/VIS_oracle
    su oravis
    a) ./addbctl.sh start
    b) ./addlnctl.sh start VIS_oracle
    But I can't the application script to run.
    2)
    su applvis
    /d01/oracle/vis/inst/apps/VIS_oracle/admin/scripts
    ./adstrtal.sh applvis/applvis
    adstrtal.sh: Database connection could not be established. Either the database is down or the APPS credentials supplied are wrong.
    USAGE: adstrtal.sh <appsusername/appspassword>
    adstrtal.sh: exiting with status 1
    Now, I verified that the applvis password is right because I changed under System --> Administration --> User Groups
    The guide I followed mainly to setup my directory is the following:
    http://eyeonapps.gendron.ca/?p=12
    3)
    Now, somewhere I read it could be with the Environment file not being sourced, but where is that file located, I saw a couple of locations, also under what user should I source it as?
    Also, is there a way I can give all the users permission to the /d01 directory, to avoid problems like these.
    Would appreciate the help to get the apps server running.
    Thanks!

    Hi Guys - I'm returning back to this thread I had, my server was shut down and then I restarted it after a long time.
    Note, my Internet/Ip has changed, I had to change the IP in the adapter settings and the etc/host file from 192.160.1.101 to be 192.168.0.101, but I'm having a hard time opening the Login page. I can see the page that says:
    "The E-Business Home Page is located at http://oracle.ebs:8000/OA_HTML/AppsLogin
    If your browser doesn't automatically redirect to its new location, click here. "
    But when I access the login page I get this error:
    "Internal Server Error
    The server encountered an internal error or misconfiguration and was unable to complete your request.
    Please contact the server administrator, ohs_admin@ebs and inform them of the time the error occurred, and anything you might have done that may have caused the error.
    More information about this error may be available in the server error log."
    This is the adstratal.log file:
    You are running adopmnctl.sh version 120.6
    Starting Oracle Process Manager (OPMN) ...
    opmnctl: opmn started.
    adopmnctl.sh: exiting with status 0
    adopmnctl.sh: check the logfile /d01/oracle/vis/inst/apps/VIS_oracle/logs/appl/admin/log/adopmnctl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /d01/oracle/vis/inst/apps/VIS_oracle/admin/scripts/adalnctl.sh start
    Timeout specified in context file: 100 second(s)
    script returned:
    adalnctl.sh version 120.3
    Checking for FNDFS executable.
    Starting listener process APPS_VIS.
    adalnctl.sh: exiting with status 0
    adalnctl.sh: check the logfile /d01/oracle/vis/inst/apps/VIS_oracle/logs/appl/admin/log/adalnctl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /d01/oracle/vis/inst/apps/VIS_oracle/admin/scripts/adapcctl.sh start
    Timeout specified in context file: 100 second(s)
    script returned:
    You are running adapcctl.sh version 120.7.12010000.2
    Starting OPMN managed Oracle HTTP Server (OHS) instance ...
    opmnctl: opmn is already running.
    opmnctl: starting opmn managed processes...
    ================================================================================
    opmn id=oracle.ebs:6200
    no processes or applications matched this request
    adapcctl.sh: exiting with status 0
    adapcctl.sh: check the logfile /d01/oracle/vis/inst/apps/VIS_oracle/logs/appl/admin/log/adapcctl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /d01/oracle/vis/inst/apps/VIS_oracle/admin/scripts/adoacorectl.sh start
    Timeout specified in context file: 100 second(s)
    script returned:
    You are running adoacorectl.sh version 120.13
    Starting OPMN managed OACORE OC4J instance ...
    adoacorectl.sh: exiting with status 150
    adoacorectl.sh: check the logfile /d01/oracle/vis/inst/apps/VIS_oracle/logs/appl/admin/log/adoacorectl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /d01/oracle/vis/inst/apps/VIS_oracle/admin/scripts/adformsctl.sh start
    Timeout specified in context file: 100 second(s)
    script returned:
    You are running adformsctl.sh version 120.16
    Starting OPMN managed FORMS OC4J instance ...
    adformsctl.sh: exiting with status 150
    adformsctl.sh: check the logfile /d01/oracle/vis/inst/apps/VIS_oracle/logs/appl/admin/log/adformsctl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /d01/oracle/vis/inst/apps/VIS_oracle/admin/scripts/adoafmctl.sh start
    Timeout specified in context file: 100 second(s)
    script returned:
    You are running adoafmctl.sh version 120.8
    Starting OPMN managed OAFM OC4J instance ...
    adoafmctl.sh: exiting with status 150
    adoafmctl.sh: check the logfile /d01/oracle/vis/inst/apps/VIS_oracle/logs/appl/admin/log/adoafmctl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /d01/oracle/vis/inst/apps/VIS_oracle/admin/scripts/adcmctl.sh start
    Timeout specified in context file: 1000 second(s)
    script returned:
    You are running adcmctl.sh version 120.17.12010000.3
    Starting concurrent manager for VIS ...
    Starting VIS_0411@VIS Internal Concurrent Manager
    Default printer is noprint
    adcmctl.sh: exiting with status 0
    adcmctl.sh: check the logfile /d01/oracle/vis/inst/apps/VIS_oracle/logs/appl/admin/log/adcmctl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /d01/oracle/vis/inst/apps/VIS_oracle/admin/scripts/jtffmctl.sh start
    Timeout specified in context file: 100 second(s)
    script returned:
    You are running jtffmctl.sh version 120.3
    Validating Fulfillment patch level via /d01/oracle/vis/apps/apps_st/comn/java/classes
    Fulfillment patch level validated.
    Starting Fulfillment Server for VIS on port 9300 ...
    jtffmctl.sh: exiting with status 0
    .end std out.
    .end err out.
    [Service Control Execution Report]
    The report format is:
    <Service Group> <Service> <Script> <Status>
    Root Service Enabled
    Root Service Oracle Process Manager for VIS_oracle adopmnctl.sh Started
    Web Entry Point Services Enabled
    Web Entry Point Services Oracle HTTP Server VIS_oracle adapcctl.sh Started
    Web Entry Point Services OracleTNSListenerAPPS_VIS_oracle adalnctl.sh Started
    Web Application Services Enabled
    Web Application Services OACORE OC4J Instance VIS_oracle adoacorectl.sh Failed
    Web Application Services FORMS OC4J Instance VIS_oracle adformsctl.sh Failed
    Web Application Services OAFM OC4J Instance VIS_oracle adoafmctl.sh Failed
    Batch Processing Services Enabled
    Batch Processing Services OracleConcMgrVIS_oracle adcmctl.sh Started
    Batch Processing Services Oracle Fulfillment Server VIS_oracle jtffmctl.sh Started
    Other Services Disabled
    Other Services OracleFormsServer-Forms VIS_oracle adformsrvctl.sh Disabled
    Other Services Oracle Metrics Client VIS_oracle adfmcctl.sh Disabled
    Other Services Oracle Metrics Server VIS_oracle adfmsctl.sh Disabled
    Other Services Oracle MWA Service VIS_oracle mwactlwrpr.sh Disabled
    ServiceControl is exiting with status 3
    More information about this error may be available in the server error log."
    Edited by: user8009286 on Apr 10, 2010 11:59 PM

  • Unable to start J2ee engine

    Hi all
           Ihave installed solution manager4.0 with java addin,all of the sudden iam unable to start the j2ee engine,work process got ended
    Please find the log below
    E:\usr\sap\ABC\DVEBMGS01\work
    DEV_DISP:log
    =========
    trc file: "dev_disp", trc level: 1, release: "700"
    sysno      01
    sid        ABC
    systemid   560 (PC with Windows NT)
    relno      7000
    patchlevel 0
    patchno    52
    intno      20050900
    make:      multithreaded, Unicode, optimized
    pid        320
    Fri May 16 21:41:01 2008
    kernel runs with dp version 210000(ext=109000) (@(#) DPLIB-INT-VERSION-210000-UC)
    length of sys_adm_ext is 572 bytes
    SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (01 320) [dpxxdisp.c   1231]
         shared lib "dw_xml.dll" version 52 successfully loaded
         shared lib "dw_xtc.dll" version 52 successfully loaded
         shared lib "dw_stl.dll" version 52 successfully loaded
         shared lib "dw_gui.dll" version 52 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    use internal message server connection to port 3901
    Fri May 16 21:41:06 2008
    WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 5 seconds
    ***LOG GZZ=> 1 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  5233]
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    DpIPCInit2: start server >intel_ABC_01                            <
    DpShMCreate: sizeof(wp_adm)          12672     (1408)
    DpShMCreate: sizeof(tm_adm)          3954072     (19672)
    DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528056/528064
    DpShMCreate: sizeof(comm_adm)          528064     (1048)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm)          0     (72)
    DpShMCreate: sizeof(vmc_adm)          0     (1452)
    DpShMCreate: sizeof(wall_adm)          (38456/34360/64/184)
    DpShMCreate: sizeof(gw_adm)     48
    DpShMCreate: SHM_DP_ADM_KEY          (addr: 05F00040, size: 4607512)
    DpShMCreate: allocated sys_adm at 05F00040
    DpShMCreate: allocated wp_adm at 05F01E28
    DpShMCreate: allocated tm_adm_list at 05F04FA8
    DpShMCreate: allocated tm_adm at 05F04FD8
    DpShMCreate: allocated wp_ca_adm at 062CA570
    DpShMCreate: allocated appc_ca_adm at 062D0330
    DpShMCreate: allocated comm_adm at 062D2270
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 06353130
    DpShMCreate: allocated gw_adm at 06353170
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 063531A0
    DpShMCreate: allocated wall_adm at 063531A8
    MBUF state OFF
    EmInit: MmSetImplementation( 2 ).
    MM diagnostic options set: 0
    <ES> client 0 initializing ....
    <ES> InitFreeList
    <ES> block size is 1024 kByte.
    Using implementation flat
    <EsNT> Memory Reset disabled as NT default
    <ES> 511 blocks reserved for free list.
    ES initialized.
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 3652
      argv[0] = E:\usr\sap\ABC\DVEBMGS01\exe\jcontrol.EXE
      argv[1] = E:\usr\sap\ABC\DVEBMGS01\exe\jcontrol.EXE
      argv[2] = pf=E:\usr\sap\ABC\SYS\profile\ABC_DVEBMGS01_intel
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=2122
      argv[5] = -DSAPSYSTEM=01
      argv[6] = -DSAPSYSTEMNAME=ABC
      argv[7] = -DSAPMYNAME=intel_ABC_01
      argv[8] = -DSAPPROFILE=E:\usr\sap\ABC\SYS\profile\ABC_DVEBMGS01_intel
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG CPS=> DpLoopInit, ICU ( 3.0 3.0 4.0.1) [dpxxdisp.c   1617]
    ***LOG Q0K=> DpMsAttach, mscon ( intel) [dpxxdisp.c   11414]
    DpStartStopMsg: send start message (myname is >intel_ABC_01                            <)
    DpStartStopMsg: start msg sent
    CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    CCMS: Initalizing shared memory of size 60000000 for monitoring segment.
    CCMS: start to initalize 3.X shared alert area (first segment).
    DpMsgAdmin: Set release to 7000, patchlevel 0
    MBUF state PREPARED
    MBUF component UP
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   1050]
    DpMsgAdmin: Set patchno for this platform to 52
    Release check o.K.
    Fri May 16 21:41:07 2008
    DpJ2eeLogin: j2ee state = CONNECTED
    Fri May 16 21:41:13 2008
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4235]
    ERROR => NiIRead: SiRecv failed for hdl 4 / sock 1544
         (SI_ECONN_BROKEN; I4; ST; 127.0.0.1:2125) [nixxi.cpp    4235]
    DpJ2eeMsgProcess: j2ee state = CONNECTED (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=3652)
    ERROR => DpProcKill: kill failed [dpntdisp.c   371]
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Fri May 16 21:41:46 2008
    ERROR => W0 (pid 3808) died [dpxxdisp.c   14021]
    ERROR => W1 (pid 3872) died [dpxxdisp.c   14021]
    ERROR => W2 (pid 2132) died [dpxxdisp.c   14021]
    ERROR => W3 (pid 3212) died [dpxxdisp.c   14021]
    my types changed after wp death/restart 0xbf --> 0xbe
    ERROR => W4 (pid 2184) died [dpxxdisp.c   14021]
    my types changed after wp death/restart 0xbe --> 0xbc
    ERROR => W5 (pid 3064) died [dpxxdisp.c   14021]
    my types changed after wp death/restart 0xbc --> 0xb8
    ERROR => W6 (pid 2744) died [dpxxdisp.c   14021]
    my types changed after wp death/restart 0xb8 --> 0xb0
    ERROR => W7 (pid 2652) died [dpxxdisp.c   14021]
    my types changed after wp death/restart 0xb0 --> 0xa0
    ERROR => W8 (pid 3216) died [dpxxdisp.c   14021]
    my types changed after wp death/restart 0xa0 --> 0x80
    DP_FATAL_ERROR => DpWPCheck: no more work processes
    DISPATCHER EMERGENCY SHUTDOWN ***
    increase tracelevel of WPs
    NiWait: sleep (10000ms) ...
    NiISelect: timeout 10000ms
    NiISelect: maximum fd=1657
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri May 16 21:41:56 2008
    NiISelect: TIMEOUT occured (10000ms)
    dump system status
    Workprocess Table (long)               Fri May 16 16:11:56 2008
    ========================
    No Ty. Pid      Status  Cause Start Err Sem CPU    Time  Program  Cl  User         Action                    Table
    0 DIA     3808 Ended         no      1   0             0                                                             
    1 DIA     3872 Ended         no      1   0             0                                                             
    2 DIA     2132 Ended         no      1   0             0                                                             
    3 DIA     3212 Ended         no      1   0             0                                                             
    4 UPD     2184 Ended         no      1   0             0                                                             
    5 ENQ     3064 Ended         no      1   0             0                                                             
    6 BTC     2744 Ended         no      1   0             0                                                             
    7 SPO     2652 Ended         no      1   0             0                                                             
    8 UP2     3216 Ended         no      1   0             0                                                             
    Dispatcher Queue Statistics               Fri May 16 16:11:56 2008
    ===========================
    --------++++--
    +
    Typ
    now
    high
    max
    writes
    reads
    --------++++--
    +
    NOWP
    0
    2
    2000
    5
    5
    --------++++--
    +
    DIA
    5
    5
    2000
    5
    0
    --------++++--
    +
    UPD
    0
    0
    2000
    0
    0
    --------++++--
    +
    ENQ
    0
    0
    2000
    0
    0
    --------++++--
    +
    BTC
    0
    0
    2000
    0
    0
    --------++++--
    +
    SPO
    0
    0
    2000
    0
    0
    --------++++--
    +
    UP2
    0
    0
    2000
    0
    0
    --------++++--
    +
    max_rq_id          12
    wake_evt_udp_now     0
    wake events           total     8,  udp     6 ( 75%),  shm     2 ( 25%)
    since last update     total     8,  udp     6 ( 75%),  shm     2 ( 25%)
    Dump of tm_adm structure:               Fri May 16 16:11:56 2008
    =========================
    Term    uid  man user    term   lastop  mod wp  ta   a/i (modes)
    Workprocess Comm. Area Blocks               Fri May 16 16:11:56 2008
    =============================
    Slots: 300, Used: 1, Max: 0
    --------++--
    +
    id
    owner
    pid
    eyecatcher
    --------++--
    +
    0
    DISPATCHER
    -1
    WPCAAD000
    NiWait: sleep (5000ms) ...
    NiISelect: timeout 5000ms
    NiISelect: maximum fd=1657
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri May 16 21:42:01 2008
    NiISelect: TIMEOUT occured (5000ms)
    DpHalt: shutdown server >intel_ABC_01                            < (normal)
    DpJ2eeDisableRestart
    DpModState: buffer in state MBUF_PREPARED
    NiBufSend starting
    NiIWrite: hdl 3 sent data (wrt=110,pac=1,MESG_IO)
    MsINiWrite: sent 110 bytes
    MsIModState: change state to SHUTDOWN
    DpModState: change server state from STARTING to SHUTDOWN
    Switch off Shared memory profiling
    ShmProtect( 57, 3 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RW
    ShmProtect( 57, 1 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RD
    DpWakeUpWps: wake up all wp's
    Stop work processes
    Stop gateway
    killing process (3252) (SOFT_KILL)
    Stop icman
    killing process (3456) (SOFT_KILL)
    Terminate gui connections
    wait for end of work processes
    wait for end of gateway
    [DpProcDied] Process lives  (PID:3252  HANDLE:1628)
    waiting for termination of gateway ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1657
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri May 16 21:42:02 2008
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process died  (PID:3252  HANDLE:1628)
    wait for end of icman
    [DpProcDied] Process lives  (PID:3456  HANDLE:1636)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1657
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri May 16 21:42:03 2008
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:3456  HANDLE:1636)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1657
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri May 16 21:42:04 2008
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:3456  HANDLE:1636)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1657
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri May 16 21:42:05 2008
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:3456  HANDLE:1636)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1657
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri May 16 21:42:06 2008
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:3456  HANDLE:1636)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1657
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri May 16 21:42:07 2008
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:3456  HANDLE:1636)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1657
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri May 16 21:42:08 2008
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:3456  HANDLE:1636)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1657
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri May 16 21:42:09 2008
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:3456  HANDLE:1636)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1657
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri May 16 21:42:10 2008
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:3456  HANDLE:1636)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1657
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri May 16 21:42:11 2008
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:3456  HANDLE:1636)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1657
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri May 16 21:42:12 2008
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:3456  HANDLE:1636)
    waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1657
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri May 16 21:42:13 2008
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process died  (PID:3456  HANDLE:1636)
    [DpProcDied] Process died  (PID:3652  HANDLE:1612)
    DpStartStopMsg: send stop message (myname is >intel_ABC_01                            <)
    NiIMyHostName: hostname = 'intel'
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 4 (AD_STARTSTOP), ser 0, ex 0, errno 0
    DpConvertRequest: net size = 189 bytes
    NiBufSend starting
    NiIWrite: hdl 3 sent data (wrt=562,pac=1,MESG_IO)
    MsINiWrite: sent 562 bytes
    send msg (len 110+452) to name                    -, type 4, key -
    DpStartStopMsg: stop msg sent
    NiIRead: hdl 3 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 3
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 3 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 3
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 3 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 3
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 3 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 3
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 3 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 3
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 3 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 3
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 3 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 3
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MSG received, len 110+164, flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 3 recv would block (errno=EAGAIN)
    NiIRead: read for hdl 3 timed out (0ms)
    DpHalt: no more messages from the message server
    DpHalt: send keepalive to synchronize with the message server
    NiBufSend starting
    NiIWrite: hdl 3 sent data (wrt=114,pac=1,MESG_IO)
    MsINiWrite: sent 114 bytes
    send msg (len 110+4) to name           MSG_SERVER, type 0, key -
    MsSndName: MS_NOOP ok
    Send 4 bytes to MSG_SERVER
    NiIRead: hdl 3 recv would block (errno=EAGAIN)
    NiIPeek: peek successful for hdl 3 (r)
    NiIRead: hdl 3 received data (rcd=114,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=114
    NiBufIIn: packet complete for hdl 3
    NiBufReceive starting
    MsINiRead: received 114 bytes
    MSG received, len 110+4, flag 3, from MSG_SERVER          , typ 0, key -
    Received 4 bytes from MSG_SERVER                             
    Received opcode MS_NOOP from msg_server, reply MSOP_OK
    MsOpReceive: ok
    MsSendKeepalive : keepalive sent to message server
    NiIRead: hdl 3 recv would block (errno=EAGAIN)
    Fri May 16 21:42:14 2008
    NiIPeek: peek for hdl 3 timed out (r; 1000ms)
    NiIRead: read for hdl 3 timed out (1000ms)
    DpHalt: no more messages from the message server
    DpHalt: sync with message server o.k.
    detach from message server
    ***LOG Q0M=> DpMsDetach, ms_detach () [dpxxdisp.c   11698]
    NiBufSend starting
    NiIWrite: hdl 3 sent data (wrt=110,pac=1,MESG_IO)
    MsINiWrite: sent 110 bytes
    MsIDetach: send logout to msg_server
    MsIDetach: call exit function
    DpMsShutdownHook called
    NiBufISelUpdate: new MODE -- (r-) for hdl 3 in set0
    SiSelNSet: set events of sock 1572 to: ---
    NiBufISelRemove: remove hdl 3 from set0
    SiSelNRemove: removed sock 1572 (pos=3)
    SiSelNRemove: removed sock 1572
    NiSelIRemove: removed hdl 3
    MBUF state OFF
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    blks_in_queue/wp_ca_blk_no/wp_max_no = 1/300/9
    LOCK WP ca_blk 1
    make DISP owner of wp_ca_blk 1
    DpRqPutIntoQueue: put request into queue (reqtype 1, prio LOW, rq_id 15)
    MBUF component DOWN
    NiICloseHandle: shutdown and close hdl 3 / sock 1572
    NiBufIClose: clear extension for hdl 3
    MsIDetach: detach MS-system
    cleanup EM
    EsCleanup ....
    EmCleanup() -> 0
    Es2Cleanup: Cleanup ES2
    ***LOG Q05=> DpHalt, DPStop ( 320) [dpxxdisp.c   10087]
    Good Bye .....
    log_bootstrap_ID0165133.0.log:
    <!LOGHEADER[START]/>
    <!HELP[Manual modification of the header may cause parsing problem!]/>
    <!LOGGINGVERSION[1.5.3.7185 - 630]/>
    <!NAME[..\..\work\log_bootstrap_ID0165133.log]/>
    <!PATTERN[log_bootstrap_ID0165133.log]/>
    <!FORMATTER[com.sap.tc.logging.TraceFormatter([%24d] %m)]/>
    <!ENCODING[Cp1252]/>
    <!FILESET[0, 2, 2097152]/>
    <!PREVIOUSFILE[log_bootstrap_ID0165133.1.log]/>
    <!NEXTFILE[log_bootstrap_ID0165133.1.log]/>
    <!LOGHEADER[END]/>
    [May 15, 2008 8:08:55 AM ] -
    [May 15, 2008 8:08:55 AM ] Bootstrap MODE:
    [May 15, 2008 8:08:55 AM ] <INSTANCE GLOBALS>
    [May 15, 2008 8:08:55 AM ]  determined by parameter [ID0165133].
    [May 15, 2008 8:08:55 AM ] -
    [May 15, 2008 8:09:01 AM ] Missing RunningMode property - runningin NORMAL mode.
    [May 15, 2008 8:09:01 AM ] Instance [ID165133] will run in [NORMAL] mode, performing action [NONE]
    [May 15, 2008 8:09:01 AM ] Discovered property [instance.en.port] with value [3200] !
    [May 15, 2008 8:09:01 AM ] Discovered property [instance.en.host] with value [intel] !
    [May 15, 2008 8:09:01 AM ] Synchronizing file [.\.hotspot_compiler].
    [May 15, 2008 8:09:01 AM ] ...Synched ok!
    [May 15, 2008 8:09:01 AM ] Synchronizing file [..\..\SDM\program\.hotspot_compiler].
    [May 15, 2008 8:09:01 AM ] ...Synched ok!
    [May 15, 2008 8:09:01 AM ]  * Synchronizing native files...
    [May 15, 2008 8:09:01 AM ] Synchronizing file [.\..\os_libs\sapbiado.dll].
    [May 15, 2008 8:09:01 AM ] ...Synched ok!
    [May 15, 2008 8:09:01 AM ] Synchronizing file [.\..\os_libs\PDFManipulation_native.zip].
    [May 15, 2008 8:09:04 AM ] ...Synched ok!
    [May 15, 2008 8:09:04 AM ] Synchronizing file [.\..\os_libs\rscp4j.dll].
    [May 15, 2008 8:09:05 AM ] ...Synched ok!
    [May 15, 2008 8:09:05 AM ] Synchronizing file [.\..\os_libs\FontManagerService_native.zip].
    [May 15, 2008 8:09:18 AM ] ...Synched ok!
    [May 15, 2008 8:09:18 AM ] Synchronizing file [.\..\os_libs\XMLFormService_native.zip].
    [May 15, 2008 8:09:19 AM ] ...Synched ok!
    [May 15, 2008 8:09:19 AM ] Synchronizing file [.\..\os_libs\LicenseSupportService_native.zip].
    [May 15, 2008 8:09:20 AM ] ...Synched ok!
    [May 15, 2008 8:09:20 AM ] Synchronizing file [.\..\os_libs\rscp4j.pdb].
    [May 15, 2008 8:09:20 AM ] ...Synched ok!
    [May 15, 2008 8:09:20 AM ] Synchronizing file [.\..\os_libs\jmon.dll].
    [May 15, 2008 8:09:21 AM ] ...Synched ok!
    [May 15, 2008 8:09:21 AM ] Synchronizing file [.\..\os_libs\ServicesNatives2_native.zip].
    [May 15, 2008 8:09:21 AM ] ...Synched ok!
    [May 15, 2008 8:09:21 AM ]  Done!
    [May 15, 2008 8:09:22 AM ] Synch time: 26953 ms
    [May 15, 2008 6:31:15 PM ] -
    [May 15, 2008 6:31:15 PM ] Bootstrap MODE:
    [May 15, 2008 6:31:15 PM ] <INSTANCE GLOBALS>
    [May 15, 2008 6:31:15 PM ]  determined by parameter [ID0165133].
    [May 15, 2008 6:31:15 PM ] -
    [May 15, 2008 6:31:23 PM ] Missing RunningMode property - runningin NORMAL mode.
    [May 15, 2008 6:31:24 PM ] Instance [ID165133] will run in [NORMAL] mode, performing action [NONE]
    [May 15, 2008 6:31:24 PM ] Discovered property [instance.en.port] with value [3200] !
    [May 15, 2008 6:31:24 PM ] Discovered property [instance.en.host] with value [intel] !
    [May 15, 2008 6:31:24 PM ] Synchronizing file [.\.hotspot_compiler].
    [May 15, 2008 6:31:24 PM ] ...Synched ok!
    [May 15, 2008 6:31:24 PM ] Synchronizing file [..\..\SDM\program\.hotspot_compiler].
    [May 15, 2008 6:31:24 PM ] ...Synched ok!
    [May 15, 2008 6:31:24 PM ] Synch time: 8750 ms
    [May 15, 2008 6:42:44 PM ] -
    [May 15, 2008 6:42:44 PM ] Bootstrap MODE:
    [May 15, 2008 6:42:44 PM ] <INSTANCE GLOBALS>
    [May 15, 2008 6:42:44 PM ]  determined by parameter [ID0165133].
    [May 15, 2008 6:42:44 PM ] -
    [May 15, 2008 6:42:48 PM ] Missing RunningMode property - runningin NORMAL mode.
    [May 15, 2008 6:42:48 PM ] Instance [ID165133] will run in [NORMAL] mode, performing action [NONE]
    [May 15, 2008 6:42:48 PM ] Discovered property [instance.en.port] with value [3200] !
    [May 15, 2008 6:42:48 PM ] Discovered property [instance.en.host] with value [intel] !
    [May 15, 2008 6:42:48 PM ] Synchronizing file [.\.hotspot_compiler].
    [May 15, 2008 6:42:48 PM ] ...Synched ok!
    [May 15, 2008 6:42:48 PM ] Synchronizing file [..\..\SDM\program\.hotspot_compiler].
    [May 15, 2008 6:42:48 PM ] ...Synched ok!
    [May 15, 2008 6:42:49 PM ] Synch time: 5141 ms
    [May 15, 2008 8:00:02 PM ] -
    [May 15, 2008 8:00:02 PM ] Bootstrap MODE:
    [May 15, 2008 8:00:02 PM ] <INSTANCE GLOBALS>
    [May 15, 2008 8:00:02 PM ]  determined by parameter [ID0165133].
    [May 15, 2008 8:00:02 PM ] -
    [May 15, 2008 8:00:06 PM ] Missing RunningMode property - runningin NORMAL mode.
    [May 15, 2008 8:00:06 PM ] Instance [ID165133] will run in [NORMAL] mode, performing action [NONE]
    [May 15, 2008 8:00:06 PM ] Discovered property [instance.en.port] with value [3200] !
    [May 15, 2008 8:00:06 PM ] Discovered property [instance.en.host] with value [intel] !
    [May 15, 2008 8:00:06 PM ] Synchronizing file [.\.hotspot_compiler].
    [May 15, 2008 8:00:06 PM ] ...Synched ok!
    [May 15, 2008 8:00:06 PM ] Synchronizing file [..\..\SDM\program\.hotspot_compiler].
    [May 15, 2008 8:00:06 PM ] ...Synched ok!
    [May 15, 2008 8:00:07 PM ] Synch time: 4344 ms
    [May 15, 2008 9:19:05 PM ] -
    [May 15, 2008 9:19:05 PM ] Bootstrap MODE:
    [May 15, 2008 9:19:05 PM ] <INSTANCE GLOBALS>
    [May 15, 2008 9:19:05 PM ]  determined by parameter [ID0165133].
    [May 15, 2008 9:19:05 PM ] -
    [May 15, 2008 9:19:11 PM ] Missing RunningMode property - runningin NORMAL mode.
    [May 15, 2008 9:19:11 PM ] Instance [ID165133] will run in [NORMAL] mode, performing action [NONE]
    [May 15, 2008 9:19:11 PM ] Discovered property [instance.en.port] with value [3200] !
    [May 15, 2008 9:19:11 PM ] Discovered property [instance.en.host] with value [intel] !
    [May 15, 2008 9:19:11 PM ] Synchronizing file [.\.hotspot_compiler].
    [May 15, 2008 9:19:11 PM ] ...Synched ok!
    [May 15, 2008 9:19:11 PM ] Synchronizing file [..\..\SDM\program\.hotspot_compiler].
    [May 15, 2008 9:19:11 PM ] ...Synched ok!
    [May 15, 2008 9:19:15 PM ] Synch time: 9672 ms
    [May 16, 2008 8:07:18 PM ] -
    [May 16, 2008 8:07:18 PM ] Bootstrap MODE:
    [May 16, 2008 8:07:18 PM ] <INSTANCE GLOBALS>
    [May 16, 2008 8:07:18 PM ]  determined by parameter [ID0165133].
    [May 16, 2008 8:07:18 PM ] -
    [May 16, 2008 8:07:24 PM ] Exception occurred:
    com.sap.engine.bootstrap.SynchronizationException: Database initialization failed! Check database properties!
         at com.sap.engine.bootstrap.Bootstrap.initDatabaseConnection(Bootstrap.java:422)
         at com.sap.engine.bootstrap.Bootstrap.<init>(Bootstrap.java:144)
         at com.sap.engine.bootstrap.Bootstrap.main(Bootstrap.java:814)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    ==[ Caused by: ]==----
    com.sap.engine.frame.core.configuration.ConfigurationException: Error while connecting to DB.
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBConnectionPool.createConnection(DBConnectionPool.java:360)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBConnectionPool.<init>(DBConnectionPool.java:125)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.PersistenceHandler.<init>(PersistenceHandler.java:38)
         at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.<init>(ConfigurationCache.java:149)
         at com.sap.engine.core.configuration.bootstrap.ConfigurationManagerBootstrapImpl.init(ConfigurationManagerBootstrapImpl.java:236)
         at com.sap.engine.core.configuration.bootstrap.ConfigurationManagerBootstrapImpl.<init>(ConfigurationManagerBootstrapImpl.java:49)
         at com.sap.engine.bootstrap.Synchronizer.<init>(Synchronizer.java:60)
         at com.sap.engine.bootstrap.Bootstrap.initDatabaseConnection(Bootstrap.java:419)
         at com.sap.engine.bootstrap.Bootstrap.<init>(Bootstrap.java:144)
         at com.sap.engine.bootstrap.Bootstrap.main(Bootstrap.java:814)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    Caused by: java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:146)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:255)
         at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:387)
         at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:420)
         at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:165)
         at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:35)
         at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:801)
         at com.sap.sql.jdbc.NativeConnectionFactory.createNativeConnection(NativeConnectionFactory.java:215)
         at com.sap.sql.connect.OpenSQLDataSourceImpl.createPooledConnection(OpenSQLDataSourceImpl.java:608)
         at com.sap.sql.connect.OpenSQLDataSourceImpl.getPooledConnection(OpenSQLDataSourceImpl.java:285)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBConnectionPool.createConnection(DBConnectionPool.java:302)
         ... 14 more
    [May 16, 2008 8:07:24 PM ] [Bootstrap module]> Problem occurred while performing synchronization.
    [May 16, 2008 8:09:52 PM ] -
    [May 16, 2008 8:09:52 PM ] Bootstrap MODE:
    [May 16, 2008 8:09:52 PM ] <INSTANCE GLOBALS>
    [May 16, 2008 8:09:52 PM ]  determined by parameter [ID0165133].
    [May 16, 2008 8:09:52 PM ] -
    [May 16, 2008 8:09:56 PM ] Exception occurred:
    com.sap.engine.bootstrap.SynchronizationException: Database initialization failed! Check database properties!
         at com.sap.engine.bootstrap.Bootstrap.initDatabaseConnection(Bootstrap.java:422)
         at com.sap.engine.bootstrap.Bootstrap.<init>(Bootstrap.java:144)
         at com.sap.engine.bootstrap.Bootstrap.main(Bootstrap.java:814)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    ==[ Caused by: ]==----
    com.sap.engine.frame.core.configuration.ConfigurationException: Error while connecting to DB.
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBConnectionPool.createConnection(DBConnectionPool.java:360)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBConnectionPool.<init>(DBConnectionPool.java:125)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.PersistenceHandler.<init>(PersistenceHandler.java:38)
         at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.<init>(ConfigurationCache.java:149)
         at com.sap.engine.core.configuration.bootstrap.ConfigurationManagerBootstrapImpl.init(ConfigurationManagerBootstrapImpl.java:236)
         at com.sap.engine.core.configuration.bootstrap.ConfigurationManagerBootstrapImpl.<init>(ConfigurationManagerBootstrapImpl.java:49)
         at com.sap.engine.bootstrap.Synchronizer.<init>(Synchronizer.java:60)
         at com.sap.engine.bootstrap.Bootstrap.initDatabaseConnection(Bootstrap.java:419)
         at com.sap.engine.bootstrap.Bootstrap.<init>(Bootstrap.java:144)
         at com.sap.engine.bootstrap.Bootstrap.main(Bootstrap.java:814)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    Caused by: java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:146)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:255)
         at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:387)
         at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:420)
         at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:165)
         at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:35)
         at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:801)
         at com.sap.sql.jdbc.NativeConnectionFactory.createNativeConnection(NativeConnectionFactory.java:215)
         at com.sap.sql.connect.OpenSQLDataSourceImpl.createPooledConnection(OpenSQLDataSourceImpl.java:608)
         at com.sap.sql.connect.OpenSQLDataSourceImpl.getPooledConnection(OpenSQLDataSourceImpl.java:285)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBConnectionPool.createConnection(DBConnectionPool.java:302)
         ... 14 more
    [May 16, 2008 8:09:56 PM ] [Bootstrap module]> Problem occurred while performing synchronization.
    [May 16, 2008 8:50:02 PM ] -
    [May 16, 2008 8:50:02 PM ] Bootstrap MODE:
    [May 16, 2008 8:50:02 PM ] <INSTANCE GLOBALS>
    [May 16, 2008 8:50:02 PM ]  determined by parameter [ID0165133].
    [May 16, 2008 8:50:02 PM ] -
    [May 16, 2008 8:50:06 PM ] Exception occurred:
    com.sap.engine.bootstrap.SynchronizationException: Database initialization failed! Check database properties!
         at com.sap.engine.bootstrap.Bootstrap.initDatabaseConnection(Bootstrap.java:422)
         at com.sap.engine.bootstrap.Bootstrap.<init>(Bootstrap.java:144)
         at com.sap.engine.bootstrap.Bootstrap.main(Bootstrap.java:814)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    ==[ Caused by: ]==----
    com.sap.engine.frame.core.configuration.ConfigurationException: Error while connecting to DB.
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBConnectionPool.createConnection(DBConnectionPool.java:360)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBConnectionPool.<init>(DBConnectionPool.java:125)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.PersistenceHandler.<init>(PersistenceHandler.java:38)
         at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.<init>(ConfigurationCache.java:149)
         at com.sap.engine.core.configuration.bootstrap.ConfigurationManagerBootstrapImpl.init(ConfigurationManagerBootstrapImpl.java:236)
         at com.sap.engine.core.configuration.bootstrap.ConfigurationManagerBootstrapImpl.<init>(ConfigurationManagerBootstrapImpl.java:49)
         at com.sap.engine.bootstrap.Synchronizer.<init>(Synchronizer.java:60)
         at com.sap.engine.bootstrap.Bootstrap.initDatabaseConnection(Bootstrap.java:419)
         at com.sap.engine.bootstrap.Bootstrap.<init>(Bootstrap.java:144)
         at com.sap.engine.bootstrap.Bootstrap.main(Bootstrap.java:814)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    Caused by: java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:146)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:255)
         at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:387)
         at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:420)
         at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:165)
         at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:35)
         at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:801)
         at com.sap.sql.jdbc.NativeConnectionFactory.createNativeConnection(NativeConnectionFactory.java:215)
         at com.sap.sql.connect.OpenSQLDataSourceImpl.createPooledConnection(OpenSQLDataSourceImpl.java:608)
         at com.sap.sql.connect.OpenSQLDataSourceImpl.getPooledConnection(OpenSQLDataSourceImpl.java:285)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBConnectionPool.createConnection(DBConnectionPool.java:302)
         ... 14 more
    [May 16, 2008 8:50:06 PM ] [Bootstrap module]> Problem occurred while performing synchronization.
    [May 16, 2008 9:41:08 PM ] -
    [May 16, 2008 9:41:08 PM ] Bootstrap MODE:
    [May 16, 2008 9:41:08 PM ] <INSTANCE GLOBALS>
    [May 16, 2008 9:41:08 PM ]  determined by parameter [ID0165133].
    [May 16, 2008 9:41:08 PM ] -
    [May 16, 2008 9:41:12 PM ] Exception occurred:
    com.sap.engine.bootstrap.SynchronizationException: Database initialization failed! Check database properties!
         at com.sap.engine.bootstrap.Bootstrap.initDatabaseConnection(Bootstrap.java:422)
         at com.sap.engine.bootstrap.Bootstrap.<init>(Bootstrap.java:144)
         at com.sap.engine.bootstrap.Bootstrap.main(Bootstrap.java:814)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    ==[ Caused by: ]==----
    com.sap.engine.frame.core.configuration.ConfigurationException: Error while connecting to DB.
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBConnectionPool.createConnection(DBConnectionPool.java:360)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBConnectionPool.<init>(DBConnectionPool.java:125)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.PersistenceHandler.<init>(PersistenceHandler.java:38)
         at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.<init>(ConfigurationCache.java:149)
         at com.sap.engine.core.configuration.bootstrap.ConfigurationManagerBootstrapImpl.init(ConfigurationManagerBootstrapImpl.java:236)
         at com.sap.engine.core.configuration.bootstrap.ConfigurationManagerBootstrapImpl.<init>(ConfigurationManagerBootstrapImpl.java:49)
         at com.sap.engine.bootstrap.Synchronizer.<init>(Synchronizer.java:60)
         at com.sap.engine.bootstrap.Bootstrap.initDatabaseConnection(Bootstrap.java:419)
         at com.sap.engine.bootstrap.Bootstrap.<init>(Bootstrap.java:144)
         at com.sap.engine.bootstrap.Bootstrap.main(Bootstrap.java:814)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:324)
         at com.sap.engine.offline.OfflineToolStart.main(OfflineToolStart.java:81)
    Caused by: java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:146)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:255)
         at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:387)
         at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:420)
         at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:165)
         at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:35)
         at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:801)
         at com.sap.sql.jdbc.NativeConnectionFactory.createNativeConnection(NativeConnectionFactory.java:215)
         at com.sap.sql.connect.OpenSQLDataSourceImpl.createPooledConnection(OpenSQLDataSourceImpl.java:608)
         at com.sap.sql.connect.OpenSQLDataSourceImpl.getPooledConnection(OpenSQLDataSourceImpl.java:285)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBConnectionPool.createConnection(DBConnectionPool.java:302)
         ... 14 more
    [May 16, 2008 9:41:12 PM ] [Bootstrap module]> Problem occurred while performing synchronization.
    DEV_JCONTROL LOG:
    trc file: "E:\usr\sap\ABC\DVEBMGS01\work\dev_jcontrol", trc level: 1, release: "700"
    node name   : jcontrol
    pid         : 3652
    system name : ABC
    system nr.  : 01
    started at  : Fri May 16 21:41:06 2008
    arguments       :
           arg[00] : E:\usr\sap\ABC\DVEBMGS01\exe\jcontrol.EXE
           arg[01] : pf=E:\usr\sap\ABC\SYS\profile\ABC_DVEBMGS01_intel
           arg[02] : -DSAPSTART=1
           arg[03] : -DCONNECT_PORT=2122
           arg[04] : -DSAPSYSTEM=01
           arg[05] : -DSAPSYSTEMNAME=ABC
           arg[06] : -DSAPMYNAME=intel_ABC_01
           arg[07] : -DSAPPROFILE=E:\usr\sap\ABC\SYS\profile\ABC_DVEBMGS01_intel
           arg[08] : -DFRFC_FALLBACK=ON
           arg[09] : -DFRFC_FALLBACK_HOST=localhost
    [Thr 3688] Fri May 16 21:41:06 2008
    [Thr 3688] *** WARNING => INFO: Unknown property [instance.box.number=ABCDVEBMGS01intel] [jstartxx.c   841]
    [Thr 3688] *** WARNING => INFO: Unknown property [instance.en.host=intel] [jstartxx.c   841]
    [Thr 3688] *** WARNING => INFO: Unknown property [instance.en.port=3200] [jstartxx.c   841]
    [Thr 3688] *** WARNING => INFO: Unknown property [instance.system.id=1] [jstartxx.c   841]
    JStartupReadInstanceProperties: read instance properties [E:\usr\sap\ABC\DVEBMGS01\j2ee\cluster\instance.properties;E:\usr\sap\ABC\DVEBMGS01\SDM\program\config\sdm_jstartup.properties]
    -> ms host    : intel
    -> ms port    : 3900
    -> OS libs    : E:\usr\sap\ABC\DVEBMGS01\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : E:\usr\sap\ABC\DVEBMGS01\j2ee\cluster\instance.properties
    -> files [01] : E:\usr\sap\ABC\DVEBMGS01\SDM\program\config\sdm_jstartup.properties
    Instance properties
    -> ms host    : intel
    -> ms port    : 3900
    -> os libs    : E:\usr\sap\ABC\DVEBMGS01\j2ee\os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : E:\usr\sap\ABC\DVEBMGS01\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID16513300 : E:\usr\sap\ABC\DVEBMGS01\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID16513350 : E:\usr\sap\ABC\DVEBMGS01\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID16513300           : E:\usr\sap\ABC\DVEBMGS01\j2ee\cluster\instance.properties
    -> [01] ID16513350           : E:\usr\sap\ABC\DVEBMGS01\j2ee\cluster\instance.properties
    -> [02] sdm                  : E:\usr\sap\ABC\DVEBMGS01\SDM\program\config\sdm_jstartup.properties
    [Thr 3688] JControlExecuteBootstrap: execute bootstrap process [bootstrap]
    [Thr 3688] [Node: bootstrap] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_12
    [Thr 3688] JStartupICheckFrameworkPackage: can't find framework package E:\usr\sap\ABC\DVEBMGS01\exe\jvmx.jar
    JStartupIReadSection: read node properties [bootstrap]
    -> node name          : bootstrap
    -> node type          : bootstrap
    -> node execute       : yes
    -> java path          : C:\j2sdk1.4.2_12
    -> java parameters    : -Djco.jarm=1
    -> java vm version    : 1.4.2_12-b03
    -> java vm vendor     : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : x86
    -> heap size          : 256M
    -> root path          : E:\usr\sap\ABC\DVEBMGS01\j2ee\cluster
    -> class path         : .\bootstrap\launcher.jar
    -> OS libs path       : E:\usr\sap\ABC\DVEBMGS01\j2ee\os_libs
    -> main class         : com.sap.engine.offline.OfflineToolStart
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : E:\usr\sap\ABC\DVEBMGS01\exe\jstartup.jar;E:\usr\sap\ABC\DVEBMGS01\exe\jvmx.jar
    -> parameters         : com.sap.engine.bootstrap.Bootstrap ./bootstrap ID0165133
    -> debuggable         : yes
    -> debug mode         : no
    -> debug port         : 60000
    -> shutdown timeout   : 120000
    JControlStartJLaunch: program = E:\usr\sap\ABC\DVEBMGS01\exe\jlaunch.exe
    -> arg[00] = E:\usr\sap\ABC\DVEBMGS01\exe\jlaunch.exe
    -> arg[01] = pf=E:\usr\sap\ABC\SYS\profile\ABC_DVEBMGS01_intel
    -> arg[02] = -DSAPINFO=ABC_01_bootstrap
    -> arg[03] = -nodeId=-1
    -> arg[04] = -file=E:\usr\sap\ABC\DVEBMGS01\j2ee\cluster\instance.properties
    -> arg[05] = -syncSem=JSTARTUP_WAIT_ON_3652
    -> arg[06] = -nodeName=bootstrap
    -> arg[07] = -jvmOutFile=E:\usr\sap\ABC\DVEBMGS01\work\jvm_bootstrap.out
    -> arg[08] = -stdOutFile=E:\usr\sap\ABC\DVEBMGS01\work\std_bootstrap.out
    -> arg[09] = -locOutFile=E:\usr\sap\ABC\DVEBMGS01\work\dev_bootstrap
    -> arg[10] = -mode=BOOTSTRAP
    -> arg[11] = pf=E:\usr\sap\ABC\SYS\profile\ABC_DVEBMGS01_intel
    -> arg[12] = -DSAPSTART=1
    -> arg[13] = -DCONNECT_PORT=2126
    -> arg[14] = -DSAPSYSTEM=01
    -> arg[15] = -DSAPSYSTEMNAME=ABC
    -> arg[16] = -DSAPMYNAME=intel_ABC_01
    -> arg[17] = -DSAPPROFILE=E:\usr\sap\ABC\SYS\profile\ABC_DVEBMGS01_intel
    -> arg[18] = -DFRFC_FALLBACK=ON
    -> arg[19] = -DFRFC_FALLBACK_HOST=localhost
    -> lib path = PATH=C:\j2sdk1.4.2_12\jre\bin\server;C:\j2sdk1.4.2_12\jre\bin;E:\oracle\DEV\102\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;E:\usr\sap\ABC\SYS\exe\uc\NTI386
    -> exe path = PATH=C:\j2sdk1.4.2_12\bin;E:\usr\sap\ABC\DVEBMGS01\j2ee\os_libs;E:\oracle\DEV\102\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;E:\usr\sap\ABC\SYS\exe\uc\NTI386
    [Thr 2388] JControlDPMessageFunc: Thread 2388 started as handler thread for R/3 dispatcher messages.
    [Thr 3688] Fri May 16 21:41:13 2008
    [Thr 3688] *** ERROR => invalid return code of process [bootstrap] (exitcode = 66) [jstartxx.c   1642]
    [Thr 3688] JControlExecuteBootstrap: error executing bootstrap node [bootstrap] (rc = 66)
    [Thr 3688] JControlCloseProgram: started (exitcode = 66)
    [Thr 3688] JControlCloseProgram: good bye... (exitcode = 66)
     

    Hi All
           Iam able to connect to database see the log below, all the services are running fine,iam unable to login to abap instance,all wp getting ended,
    C:\Documents and Settings\abcadm.INTEL>r3trans -d
    This is r3trans version 6.13 (release 700 - 20.02.06 - 16:15:00).
    unicode enabled version
    2EETW169 no connect possible: "DBMS = ORACLE                           --- dbs_o
    ra_tnsname = 'DEV'"
    r3trans finished (0012).
    E:\usr\sap\ABC\DVEBMGS01\work>echo WHENEVER SQLERROR exit SQL.SQLCODE  1>v9start.sql
    E:\usr\sap\ABC\DVEBMGS01\work>echo connect / as sysdba  1>>v9start.sql
    E:\usr\sap\ABC\DVEBMGS01\work>echo startup  1>>v9start.sql
    E:\usr\sap\ABC\DVEBMGS01\work>echo exit  1>>v9start.sql
    SQL*Plus: Release 10.2.0.2.0 - Production on Sat May 17 08:35:47 2008
    Copyright (c) 1982, 2005, Oracle.  All Rights Reserved.
    Connected to an idle instance.
    ORACLE instance started.
    Total System Global Area  394264576 bytes
    Fixed Size              1289664 bytes
    Variable Size            268436032 bytes
    Database Buffers       121634816 bytes
    Redo Buffers              2904064 bytes
    Database mounted.
    Database opened.
    iam unable to start config tool or visual admin ended with no connection to database
    trc file: "dev_disp", trc level: 1, release: "640"
    Sat May 17 08:28:42 2008
    kernel runs with dp version 128000(ext=102000) (@(#) DPLIB-INT-VERSION-128000-UC)
    length of sys_adm_ext is 524 bytes
    systemid   560 (PC with Windows NT)
    relno      6400
    patchlevel 0
    patchno    43
    intno      20020600
    make:      multithreaded, Unicode
    pid        2844
    ***LOG Q00=> DpSapEnvInit, DPStart (03 2844) [dpxxdisp.c   1100]
         shared lib "dw_xml.dll" version 43 successfully loaded
         shared lib "dw_xtc.dll" version 43 successfully loaded
         shared lib "dw_stl.dll" version 43 successfully loaded
         shared lib "dw_gui.dll" version 43 successfully loaded
    Sat May 17 08:28:47 2008
    WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 5 seconds
    ***LOG GZZ=> 1 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  3886]
    MtxInit: -2 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: JAVA is not active
    DpShMCreate: sizeof(wp_adm)          10528     (1316)
    DpShMCreate: sizeof(tm_adm)          2780232     (13832)
    DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    DpShMCreate: sizeof(comm_adm)          290000     (580)
    DpShMCreate: sizeof(vmc_adm)          0     (372)
    DpShMCreate: sizeof(wall_adm)          (38456/34360/64/184)
    DpShMCreate: SHM_DP_ADM_KEY          (addr: 04550040, size: 3192688)
    DpShMCreate: allocated sys_adm at 04550040
    DpShMCreate: allocated wp_adm at 04551B58
    DpShMCreate: allocated tm_adm_list at 04554478
    DpShMCreate: allocated tm_adm at 045544A0
    DpShMCreate: allocated wp_ca_adm at 047FB0E8
    DpShMCreate: allocated appc_ca_adm at 04800EA8
    DpShMCreate: allocated comm_adm_list at 04802DE8
    DpShMCreate: allocated comm_adm at 04802E00
    DpShMCreate: allocated vmc_adm_list at 04849AD0
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 04849AF8
    DpShMCreate: allocated wall_adm at 04849B00
    MBUF state OFF
    EmInit: MmSetImplementation( 2 ).
    <ES> client 0 initializing ....
    <ES> InitFreeList
    <ES> block size is 1024 kByte.
    Using implementation flat
    <EsNT> Memory Reset disabled as NT default
    <ES> 915 blocks reserved for free list.
    ES initialized.
    Sat May 17 08:28:48 2008
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG CPS=> DpLoopInit, ICU ( 2.6.1 2.6 4.0) [dpxxdisp.c   1462]
    ***LOG Q0K=> DpMsAttach, mscon ( intel) [dpxxdisp.c   9736]
    CCMS: Initalizing shared memory of size 60000000 for monitoring segment.
    Sat May 17 08:28:49 2008
    CCMS: start to initalize 3.X shared alert area (first segment).
    DpMsgAdmin: Set release to 6400, patchlevel 0
    MBUF state PREPARED
    MBUF component UP
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   1025]
    DpMsgAdmin: Set patchno for this platform to 43
    Release check o.K.
    Sat May 17 08:29:28 2008
    ERROR => W0 (pid 3116) died [dpxxdisp.c   12187]
    ERROR => W1 (pid 3124) died [dpxxdisp.c   12187]
    my types changed after wp death/restart 0xbf --> 0xbe
    ERROR => W2 (pid 3132) died [dpxxdisp.c   12187]
    my types changed after wp death/restart 0xbe --> 0xbc
    ERROR => W3 (pid 3140) died [dpxxdisp.c   12187]
    my types changed after wp death/restart 0xbc --> 0xb8
    ERROR => W4 (pid 3148) died [dpxxdisp.c   12187]
    ERROR => W5 (pid 3156) died [dpxxdisp.c   12187]
    my types changed after wp death/restart 0xb8 --> 0xb0
    ERROR => W6 (pid 3164) died [dpxxdisp.c   12187]
    my types changed after wp death/restart 0xb0 --> 0xa0
    ERROR => W7 (pid 3172) died [dpxxdisp.c   12187]
    my types changed after wp death/restart 0xa0 --> 0x80
    DP_FATAL_ERROR => DpWPCheck: no more work processes
    DISPATCHER EMERGENCY SHUTDOWN ***
    increase tracelevel of WPs
    killing W0-3116 (SIGUSR2)
    ERROR => DpWpKill(3116, SIGUSR2) failed [dpxxtool.c   2468]
    killing W1-3124 (SIGUSR2)
    ERROR => DpWpKill(3124, SIGUSR2) failed [dpxxtool.c   2468]
    killing W2-3132 (SIGUSR2)
    ERROR => DpWpKill(3132, SIGUSR2) failed [dpxxtool.c   2468]
    killing W3-3140 (SIGUSR2)
    ERROR => DpWpKill(3140, SIGUSR2) failed [dpxxtool.c   2468]
    killing W4-3148 (SIGUSR2)
    ERROR => DpWpKill(3148, SIGUSR2) failed [dpxxtool.c   2468]
    killing W5-3156 (SIGUSR2)
    ERROR => DpWpKill(3156, SIGUSR2) failed [dpxxtool.c   2468]
    killing W6-3164 (SIGUSR2)
    ERROR => DpWpKill(3164, SIGUSR2) failed [dpxxtool.c   2468]
    killing W7-3172 (SIGUSR2)
    ERROR => DpWpKill(3172, SIGUSR2) failed [dpxxtool.c   2468]
    NiWait: sleep (10000 msecs) ...
    NiISelect: timeout 10000 ms
    NiISelect: maximum fd=1653
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Sat May 17 08:29:38 2008
    NiISelect: TIMEOUT occured (10000 ms)
    dump system status
    Workprocess Table (long)               Sat May 17 02:59:38 2008
    ========================
    No Ty. Pid      Status  Cause Start Err Sem CPU    Time  Program  Cl  User         Action                    Table
    0 DIA     3116 Ended         no      1   0             0                                                             
    1 DIA     3124 Ended         no      1   0             0                                                             
    2 UPD     3132 Ended         no      1   0             0                                                             
    3 ENQ     3140 Ended         no      1   0             0                                                             
    4 BTC     3148 Ended         no      1   0             0                                                             
    5 BTC     3156 Ended         no      1   0             0                                                             
    6 SPO     3164 Ended         no      1   0             0                                                             
    7 UP2     3172 Ended         no      1   0             0                                                             
    Dispatcher Queue Statistics               Sat May 17 02:59:38 2008
    ===========================
    --------++++--
    +
    Typ
    now
    high
    max
    writes
    reads
    --------++++--
    +
    NOWP
    0
    3
    2000
    10
    10
    --------++++--
    +
    DIA
    6
    6
    2000
    6
    0
    --------++++--
    +
    UPD
    0
    0
    2000
    0
    0
    --------++++--
    +
    ENQ
    0
    0
    2000
    0
    0
    --------++++--
    +
    BTC
    0
    0
    2000
    0
    0
    --------++++--
    +
    SPO
    0
    0
    2000
    0
    0
    --------++++--
    +
    UP2
    0
    0
    2000
    0
    0
    --------++++--
    +
    max_rq_id          14
    wake_evt_udp_now     0
    wake events           total     9,  udp     8 ( 88%),  shm     1 ( 11%)
    since last update     total     9,  udp     8 ( 88%),  shm     1 ( 11%)
    Dump of tm_adm structure:               Sat May 17 02:59:38 2008
    =========================
    Term    uid  man user    term   lastop  mod wp  ta   a/i (modes)
    RM-T8, U9,     , intel, 08:29:07, M0, W-1,     , 1/0
    Workprocess Comm. Area Blocks               Sat May 17 02:59:38 2008
    =============================
    Slots: 300, Used: 2, Max: 1
    --------++--
    +
    id
    owner
    pid
    eyecatcher
    --------++--
    +
    0
    DISPATCHER
    -1
    WPCAAD000
    1
    DISPATCHER
    -1
    WPCAAD001
    NiWait: sleep (5000 msecs) ...
    NiISelect: timeout 5000 ms
    NiISelect: maximum fd=1653
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Sat May 17 08:29:43 2008
    NiISelect: TIMEOUT occured (5000 ms)
    Shutdown server ...
    DpJ2eeDisableRestart
    DpModState: buffer in state MBUF_PREPARED
    NiBufSend starting
    NiIWrite: write 110, 1 packs, MESG_IO, hdl 3, data complete
    MsINiWrite: sent 110 bytes
    MsIModState: change state to SHUTDOWN
    DpModState: change server state from STARTING to SHUTDOWN
    Switch off Shared memory profiling
    ShmProtect( 57, 3 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RW
    ShmProtect( 57, 1 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RD
    DpWakeUpWps: wake up all wp's
    Stop work processes...
    Stop gateway
    killing process (3100) (SOFT_KILL)
    Stop icman
    killing process (3108) (SOFT_KILL)
    Terminate gui connections
    send SHUTDOWN to REM TM 8
    blks_in_queue/wp_ca_blk_no/wp_max_no = 2/300/8
    LOCK WP ca_blk 2
    return errno (-17) to T8
    errormsg without overhead: take mode 0
    NiBufIAlloc: malloc NiBufadm, to 0 bytes
    try to send 14 to M0
    NiBufSend starting
    NiIWrite: write 14, 1 packs, MESG_IO, hdl 7, data complete
    REL WP ca_blk 2
    set status of T8 to TM_DISCONNECTED
    NiSelClear: removed hdl 7 from selectset
    DpDelSocketInfo: del info for socket 7 (type=3)
    NiBufClose: clear extensions for hdl 7
    NiBufSetStat: bufstat of hdl 7 changed from OK to OFF
    NiICloseHandle: shutdown and close hdl 7 / socket 1476
    dp_tm_adm[8].stat = DP_SLOT_FREE
    DpGetSchedule: next schedule 1210993188
    DpGetSchedule: no schedule found
    DpITmSlotRelease: release slot 8
    DpListInsert: insert elem 8 into tmadm_free_list (at begin)
    DpListInsert: 193 elems in tmadm_free_list
    DpListRemove: remove elem 8 from tmadm_inuse_list
    DpListRemove: 8 elems in tmadm_inuse_list
    [DpProcDied] Process lives  (PID:3100  HANDLE:1624)
    waiting for termination of gateway
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1653
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Sat May 17 08:29:44 2008
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process died  (PID:3100  HANDLE:1624)
    [DpProcDied] Process died  (PID:3108  HANDLE:1616)
    DpHalt: cancel all lcom connections
    MPI CancelAll 2 -> 0
    MPI DeleteAll 2 -> 0
    NiIMyHostName: hostname = 'intel'
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 4 (AD_STARTSTOP), ser 0, ex 0, errno 0
    DpConvertRequest: net size = 163 bytes
    NiBufSend starting
    NiIWrite: write 562, 1 packs, MESG_IO, hdl 3, data complete
    MsINiWrite: sent 562 bytes
    send msg (len 110+452) to name          -, type 4, key -
    detach from message server
    ***LOG Q0M=> DpMsDetach, ms_detach () [dpxxdisp.c   9962]
    NiBufSend starting
    NiIWrite: write 110, 1 packs, MESG_IO, hdl 3, data complete
    MsINiWrite: sent 110 bytes
    MsIDetach: send logout to msg_server
    MsIDetach: call exit function
    DpMsShutdownHook called
    NiSelClear: removed hdl 3 from selectset
    MBUF state OFF
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    blks_in_queue/wp_ca_blk_no/wp_max_no = 2/300/8
    LOCK WP ca_blk 2
    make DISP owner of wp_ca_blk 2
    DpRqPutIntoQueue: put request into queue (reqtype 1, prio LOW, rq_id 20)
    MBUF component DOWN
    NiBufClose: clear extensions for hdl 3
    NiBufSetStat: bufstat of hdl 3 changed from OK to OFF
    NiICloseHandle: shutdown and close hdl 3 / socket 1632
    MsIDetach: detach MS-system
    EsCleanup ....
    ***LOG Q05=> DpHalt, DPStop ( 2844) [dpxxdisp.c   8495]
    Good Bye .....
    Thanks
    Uday

  • Unable to start xorg after latest nvidia update

    Hi,
    I have NVIDIA GeForce GTX 750 card. I did update to version 346.47 of nvidia driver and figured out that after reboot SDDM dont start. I disabled login manager and tried to start xorg server manually but without success. I see that there is segmentation fault in log but don't understand where it comes from exectly.
    Output of /var/log/Xorg.0.log:
    [ 18.250]
    X.Org X Server 1.17.1
    Release Date: 2015-02-10
    [ 18.251] X Protocol Version 11, Revision 0
    [ 18.251] Build Operating System: Linux 3.18.6-1-ARCH x86_64
    [ 18.251] Current Operating System: Linux lolik-pc 3.18.6-1-ARCH #1 SMP PREEMPT Sat Feb 7 08:44:05 CET 2015 x86_64
    [ 18.251] Kernel command line: \boot\vmlinuz-linux rw root=UUID=d0592c05-2ed2-4bd2-be47-6a2762e5c3c3 rootfstype=ext4 initrd=boot\initramfs-linux.img
    [ 18.252] Build Date: 22 February 2015 12:50:32PM
    [ 18.253]
    [ 18.253] Current version of pixman: 0.32.6
    [ 18.254] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 18.254] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 18.255] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Feb 28 13:33:14 2015
    [ 18.260] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 18.261] (==) No Layout section. Using the first Screen section.
    [ 18.261] (==) No screen section available. Using defaults.
    [ 18.261] (**) |-->Screen "Default Screen Section" (0)
    [ 18.261] (**) | |-->Monitor "<default monitor>"
    [ 18.261] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 18.261] (==) Automatically adding devices
    [ 18.261] (==) Automatically enabling devices
    [ 18.261] (==) Automatically adding GPU devices
    [ 18.267] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/OTF/".
    [ 18.267] Entry deleted from font path.
    [ 18.267] (Run 'mkfontdir' on "/usr/share/fonts/OTF/").
    [ 18.271] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 18.271] Entry deleted from font path.
    [ 18.271] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 18.272] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 18.272] Entry deleted from font path.
    [ 18.272] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 18.272] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 18.272] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 18.272] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 18.272] (II) Loader magic: 0x815d80
    [ 18.272] (II) Module ABI versions:
    [ 18.272] X.Org ANSI C Emulation: 0.4
    [ 18.272] X.Org Video Driver: 19.0
    [ 18.272] X.Org XInput driver : 21.0
    [ 18.272] X.Org Server Extension : 9.0
    [ 18.273] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c1
    [ 18.273] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 18.273] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 8 paused 0
    [ 18.273] (II) xfree86: Adding drm device (/dev/dri/card1)
    [ 18.273] (II) systemd-logind: got fd for /dev/dri/card1 226:1 fd 9 paused 0
    [ 18.274] (--) PCI: (0:0:2:0) 8086:0412:1458:d000 rev 6, Mem @ 0xf7400000/4194304, 0xd0000000/268435456, I/O @ 0x0000f000/64
    [ 18.274] (--) PCI:*(0:1:0:0) 10de:1380:1462:3102 rev 162, Mem @ 0xf6000000/16777216, 0xe0000000/268435456, 0xf0000000/33554432, I/O @ 0x0000e000/128, BIOS @ 0x????????/524288
    [ 18.274] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 18.274] (II) LoadModule: "glx"
    [ 18.275] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 18.342] (II) Module glx: vendor="NVIDIA Corporation"
    [ 18.342] compiled for 4.0.2, module version = 1.0.0
    [ 18.342] Module class: X.Org Server Extension
    [ 18.343] (II) NVIDIA GLX Module 346.47 Thu Feb 19 18:09:07 PST 2015
    [ 18.343] (II) Applying OutputClass "nvidia" to /dev/dri/card0
    [ 18.343] loading driver: nvidia
    [ 18.343] (==) Matched nvidia as autoconfigured driver 0
    [ 18.343] (==) Matched nouveau as autoconfigured driver 1
    [ 18.343] (==) Matched nv as autoconfigured driver 2
    [ 18.343] (==) Matched intel as autoconfigured driver 3
    [ 18.343] (==) Matched nouveau as autoconfigured driver 4
    [ 18.343] (==) Matched nv as autoconfigured driver 5
    [ 18.343] (==) Matched modesetting as autoconfigured driver 6
    [ 18.343] (==) Matched fbdev as autoconfigured driver 7
    [ 18.343] (==) Matched vesa as autoconfigured driver 8
    [ 18.343] (==) Assigned the driver to the xf86ConfigLayout
    [ 18.343] (II) LoadModule: "nvidia"
    [ 18.344] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 18.349] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 18.349] compiled for 4.0.2, module version = 1.0.0
    [ 18.349] Module class: X.Org Video Driver
    [ 18.350] (II) LoadModule: "nouveau"
    [ 18.350] (WW) Warning, couldn't open module nouveau
    [ 18.350] (II) UnloadModule: "nouveau"
    [ 18.350] (II) Unloading nouveau
    [ 18.350] (EE) Failed to load module "nouveau" (module does not exist, 0)
    [ 18.350] (II) LoadModule: "nv"
    [ 18.350] (WW) Warning, couldn't open module nv
    [ 18.350] (II) UnloadModule: "nv"
    [ 18.350] (II) Unloading nv
    [ 18.350] (EE) Failed to load module "nv" (module does not exist, 0)
    [ 18.350] (II) LoadModule: "intel"
    [ 18.350] (WW) Warning, couldn't open module intel
    [ 18.350] (II) UnloadModule: "intel"
    [ 18.350] (II) Unloading intel
    [ 18.350] (EE) Failed to load module "intel" (module does not exist, 0)
    [ 18.350] (II) LoadModule: "modesetting"
    [ 18.350] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
    [ 18.350] (II) Module modesetting: vendor="X.Org Foundation"
    [ 18.350] compiled for 1.17.1, module version = 1.17.1
    [ 18.350] Module class: X.Org Video Driver
    [ 18.350] ABI class: X.Org Video Driver, version 19.0
    [ 18.350] (II) LoadModule: "fbdev"
    [ 18.350] (WW) Warning, couldn't open module fbdev
    [ 18.350] (II) UnloadModule: "fbdev"
    [ 18.350] (II) Unloading fbdev
    [ 18.350] (EE) Failed to load module "fbdev" (module does not exist, 0)
    [ 18.350] (II) LoadModule: "vesa"
    [ 18.350] (WW) Warning, couldn't open module vesa
    [ 18.350] (II) UnloadModule: "vesa"
    [ 18.350] (II) Unloading vesa
    [ 18.350] (EE) Failed to load module "vesa" (module does not exist, 0)
    [ 18.350] (II) NVIDIA dlloader X Driver 346.47 Thu Feb 19 17:47:18 PST 2015
    [ 18.350] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 18.351] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
    [ 18.351] (++) using VT number 1
    [ 18.351] (--) controlling tty is VT number 1, auto-enabling KeepTty
    [ 18.351] (II) Loading sub module "fb"
    [ 18.351] (II) LoadModule: "fb"
    [ 18.351] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 18.352] (II) Module fb: vendor="X.Org Foundation"
    [ 18.352] compiled for 1.17.1, module version = 1.0.0
    [ 18.352] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 18.352] (II) Loading sub module "wfb"
    [ 18.352] (II) LoadModule: "wfb"
    [ 18.352] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 18.353] (II) Module wfb: vendor="X.Org Foundation"
    [ 18.353] compiled for 1.17.1, module version = 1.0.0
    [ 18.353] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 18.353] (II) Loading sub module "ramdac"
    [ 18.353] (II) LoadModule: "ramdac"
    [ 18.353] (II) Module "ramdac" already built-in
    [ 18.354] (II) modeset(G0): using drv /dev/dri/card1
    [ 18.354] (WW) Falling back to old probe method for modesetting
    [ 18.354] (II) NVIDIA(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 18.354] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
    [ 18.354] (==) NVIDIA(0): RGB weight 888
    [ 18.354] (==) NVIDIA(0): Default visual is TrueColor
    [ 18.354] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 18.354] (**) NVIDIA(0): Enabling 2D acceleration
    [ 18.948] (II) NVIDIA(GPU-0): Found DRM driver nvidia-drm (20150116)
    [ 18.948] (II) NVIDIA(0): NVIDIA GPU GeForce GTX 750 Ti (GM107-A) at PCI:1:0:0 (GPU-0)
    [ 18.948] (--) NVIDIA(0): Memory: 2097152 kBytes
    [ 18.948] (--) NVIDIA(0): VideoBIOS: 82.07.32.00.18
    [ 18.948] (II) NVIDIA(0): Detected PCI Express Link width: 16X
    [ 18.952] (--) NVIDIA(0): Valid display device(s) on GeForce GTX 750 Ti at PCI:1:0:0
    [ 18.952] (--) NVIDIA(0): CRT-0
    [ 18.952] (--) NVIDIA(0): DELL U2211H (DFP-0) (boot, connected)
    [ 18.952] (--) NVIDIA(0): DFP-1
    [ 18.952] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
    [ 18.952] (--) NVIDIA(0): DELL U2211H (DFP-0): Internal TMDS
    [ 18.952] (--) NVIDIA(GPU-0): DELL U2211H (DFP-0): 330.0 MHz maximum pixel clock
    [ 18.952] (--) NVIDIA(0): DFP-1: Internal TMDS
    [ 18.952] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
    [ 18.952] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 18.952] (**) NVIDIA(0): device DELL U2211H (DFP-0) (Using EDID frequencies has
    [ 18.952] (**) NVIDIA(0): been enabled on all display devices.)
    [ 18.953] (==) NVIDIA(0):
    [ 18.953] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
    [ 18.953] (==) NVIDIA(0): will be used as the requested mode.
    [ 18.953] (==) NVIDIA(0):
    [ 18.953] (II) NVIDIA(0): Validated MetaModes:
    [ 18.953] (II) NVIDIA(0): "DFP-0:nvidia-auto-select"
    [ 18.953] (II) NVIDIA(0): Virtual screen size determined to be 1920 x 1080
    [ 18.983] (--) NVIDIA(0): DPI set to (101, 101); computed from "UseEdidDpi" X config
    [ 18.983] (--) NVIDIA(0): option
    [ 18.983] (==) modeset(G0): Depth 24, (==) framebuffer bpp 32
    [ 18.983] (==) modeset(G0): RGB weight 888
    [ 18.983] (==) modeset(G0): Default visual is TrueColor
    [ 18.983] (II) Loading sub module "glamoregl"
    [ 18.983] (II) LoadModule: "glamoregl"
    [ 18.983] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
    [ 18.995] (II) Module glamoregl: vendor="X.Org Foundation"
    [ 18.995] compiled for 1.17.1, module version = 1.0.0
    [ 18.995] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 18.995] (II) glamor: OpenGL accelerated X.org driver based.
    [ 19.024] (EE)
    [ 19.024] (EE) Backtrace:
    [ 19.025] (EE) 0: /usr/lib/xorg-server/Xorg (OsLookupColor+0x119) [0x5949c9]
    [ 19.026] (EE) 1: /usr/lib/libc.so.6 (__restore_rt+0x0) [0x7fc93cef353f]
    [ 19.028] (EE) 2: /usr/lib/libX11.so.6 (_XSend+0x2b) [0x7fc932e6a0bb]
    [ 19.028] (EE) 3: /usr/lib/libX11.so.6 (_XFlush+0x15) [0x7fc932e6a575]
    [ 19.028] (EE) 4: /usr/lib/libX11.so.6 (_XGetRequest+0x65) [0x7fc932e6d055]
    [ 19.028] (EE) 5: /usr/lib/libX11.so.6 (XQueryExtension+0x4d) [0x7fc932e605ed]
    [ 19.028] (EE) 6: /usr/lib/libX11.so.6 (XInitExtension+0x32) [0x7fc932e54392]
    [ 19.028] (EE) 7: /usr/lib/libXext.so.6 (XextAddDisplay+0x4f) [0x7fc932c2338f]
    [ 19.028] (EE) 8: /usr/lib/libnvidia-glsi.so.346.47 (_nv016glsi+0x5f3f7) [0x7fc93322c3d7]
    [ 19.028] (EE) 9: /usr/lib/libnvidia-glsi.so.346.47 (_nv016glsi+0x804) [0x7fc93316ebf4]
    [ 19.028] (EE) unw_get_proc_name failed: no unwind info found [-10]
    [ 19.028] (EE) 10: /usr/lib/libEGL.so.1 (?+0x804) [0x7fc933417ef4]
    [ 19.028] (EE) unw_get_proc_name failed: no unwind info found [-10]
    [ 19.028] (EE) 11: /usr/lib/libEGL.so.1 (?+0x804) [0x7fc933418924]
    [ 19.028] (EE) 12: /usr/lib/libEGL.so.1 (NvEglRegClientApi+0x4f36) [0x7fc933425866]
    [ 19.028] (EE) 13: /usr/lib/xorg/modules/libglamoregl.so (glamor_egl_init+0x99) [0x7fc935930539]
    [ 19.029] (EE) 14: /usr/lib/xorg/modules/drivers/modesetting_drv.so (_init+0x29ce) [0x7fc935fc7e9e]
    [ 19.029] (EE) 15: /usr/lib/xorg-server/Xorg (InitOutput+0xbcc) [0x47b63c]
    [ 19.029] (EE) 16: /usr/lib/xorg-server/Xorg (remove_fs_handlers+0x22a) [0x43c9da]
    [ 19.029] (EE) 17: /usr/lib/libc.so.6 (__libc_start_main+0xf0) [0x7fc93cee0800]
    [ 19.029] (EE) 18: /usr/lib/xorg-server/Xorg (_start+0x29) [0x427039]
    [ 19.029] (EE) 19: ? (?+0x29) [0x29]
    [ 19.029] (EE)
    [ 19.029] (EE) Segmentation fault at address 0x0
    [ 19.029] (EE)
    Fatal server error:
    [ 19.029] (EE) Caught signal 11 (Segmentation fault). Server aborting
    [ 19.029] (EE)
    [ 19.029] (EE)
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 19.029] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [ 19.029] (EE)
    [ 19.031] (EE) Server terminated with error (1). Closing log file.
    Output of command "lspci -k | grep -A 2 -i "VGA""
    00:02.0 VGA compatible controller: Intel Corporation Xeon E3-1200 v3/4th Gen Core Processor Integrated Graphics Controller (rev 06)
    Subsystem: Gigabyte Technology Co., Ltd Device d000
    Kernel driver in use: i915
    01:00.0 VGA compatible controller: NVIDIA Corporation GM107 [GeForce GTX 750 Ti] (rev a2)
    Subsystem: Micro-Star International Co., Ltd. [MSI] Device 3102
    Kernel driver in use: nvidia
    Output of command "modinfo nvidia"
    filename: /lib/modules/3.18.6-1-ARCH/extramodules/nvidia.ko.gz
    alias: char-major-195-*
    version: 346.47
    supported: external
    license: NVIDIA
    alias: pci:v000010DEd00000E00sv*sd*bc04sc80i00*
    alias: pci:v000010DEd00000AA3sv*sd*bc0Bsc40i00*
    alias: pci:v000010DEd*sv*sd*bc03sc02i00*
    alias: pci:v000010DEd*sv*sd*bc03sc00i00*
    depends: drm,i2c-core
    vermagic: 3.18.6-1-ARCH SMP preempt mod_unload modversions
    parm: NVreg_Mobile:int
    parm: NVreg_ResmanDebugLevel:int
    parm: NVreg_RmLogonRC:int
    parm: NVreg_ModifyDeviceFiles:int
    parm: NVreg_DeviceFileUID:int
    parm: NVreg_DeviceFileGID:int
    parm: NVreg_DeviceFileMode:int
    parm: NVreg_RemapLimit:int
    parm: NVreg_UpdateMemoryTypes:int
    parm: NVreg_InitializeSystemMemoryAllocations:int
    parm: NVreg_UsePageAttributeTable:int
    parm: NVreg_MapRegistersEarly:int
    parm: NVreg_RegisterForACPIEvents:int
    parm: NVreg_CheckPCIConfigSpace:int
    parm: NVreg_EnablePCIeGen3:int
    parm: NVreg_EnableMSI:int
    parm: NVreg_MemoryPoolSize:int
    parm: NVreg_RegistryDwords:charp
    parm: NVreg_RmMsg:charp
    parm: NVreg_AssignGpus:charp
    In addition, in order to disable sddm I downloaded latest Arch linux installation CD (2015.02.01) but I was unable to start PC with this version. Loading stuck after first 3 lines, after "triggering udevevents".
    I had old version 2014.08 and it worked ok.
    Thanks,
    Alexey

    I just wanted to echo eugeneyche's comment. I ran the same steps mentioned by ElectricPrism but that didn't really fix them. I had to add nomodeset to my kernel parameters. I now want to know what's really going on. For the record, this was my backtrace:
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (**) NVIDIA(0): device Ancor Communications Inc ASUS VE278 (DFP-1) (Using
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (**) NVIDIA(0): EDID frequencies has been enabled on all display
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (**) NVIDIA(0): devices.)
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (==) NVIDIA(0):
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (==) NVIDIA(0): will be used as the requested mode.
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (==) NVIDIA(0):
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (II) NVIDIA(0): Validated MetaModes:
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (II) NVIDIA(0): "DFP-0:nvidia-auto-select,DFP-1:nvidia-auto-select"
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (II) NVIDIA(0): Virtual screen size determined to be 3600 x 1080
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (--) NVIDIA(0): DPI set to (90, 88); computed from "UseEdidDpi" X config
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (--) NVIDIA(0): option
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (==) modeset(G0): Depth 24, (==) framebuffer bpp 32
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (==) modeset(G0): RGB weight 888
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (==) modeset(G0): Default visual is TrueColor
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (II) Loading sub module "glamoregl"
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (II) LoadModule: "glamoregl"
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (II) Loading /usr/lib/xorg/modules/libglamoregl.so
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (II) Module glamoregl: vendor="X.Org Foundation"
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: compiled for 1.17.1, module version = 1.0.0
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: ABI class: X.Org ANSI C Emulation, version 0.4
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (II) glamor: OpenGL accelerated X.org driver based.
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (EE)
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (EE) Backtrace:
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (EE) 0: /usr/lib/xorg-server/Xorg (OsLookupColor+0x119) [0x5949c9]
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (EE) 1: /usr/lib/libc.so.6 (__restore_rt+0x0) [0x7fad6053a53f]
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (EE) 2: /usr/lib/libxcb.so.1 (xcb_writev+0x0) [0x7fad56046100]
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (EE) 3: /usr/lib/libX11.so.6 (_XSend+0x19e) [0x7fad564b122e]
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (EE) 4: /usr/lib/libX11.so.6 (_XFlush+0x15) [0x7fad564b1575]
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (EE) 5: /usr/lib/libX11.so.6 (_XGetRequest+0x65) [0x7fad564b4055]
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (EE) 6: /usr/lib/libX11.so.6 (XQueryExtension+0x4d) [0x7fad564a75ed]
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (EE) 7: /usr/lib/libX11.so.6 (XInitExtension+0x32) [0x7fad5649b392]
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (EE) 8: /usr/lib/libXext.so.6 (XextAddDisplay+0x4f) [0x7fad5626a38f]
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (EE) 9: /usr/lib/libnvidia-glsi.so.346.47 (_nv016glsi+0x5f3f7) [0x7fad568733d7]
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (EE) 10: /usr/lib/libnvidia-glsi.so.346.47 (_nv016glsi+0x804) [0x7fad567b5bf4]
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (EE) unw_get_proc_name failed: no unwind info found [-10]
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (EE) 11: /usr/lib/libEGL.so.1 (?+0x804) [0x7fad56a5eef4]
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (EE) unw_get_proc_name failed: no unwind info found [-10]
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (EE) 12: /usr/lib/libEGL.so.1 (?+0x804) [0x7fad56a5f924]
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (EE) 13: /usr/lib/libEGL.so.1 (NvEglRegClientApi+0x4f36) [0x7fad56a6c866]
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (EE) 14: /usr/lib/xorg/modules/libglamoregl.so (glamor_egl_init+0x99) [0x7fad58f77539]
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (EE) 15: /usr/lib/xorg/modules/drivers/modesetting_drv.so (_init+0x29ce) [0x7fad5960ee9e]
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (EE) 16: /usr/lib/xorg-server/Xorg (InitOutput+0xbcc) [0x47b63c]
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (EE) 17: /usr/lib/xorg-server/Xorg (remove_fs_handlers+0x22a) [0x43c9da]
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (EE) 18: /usr/lib/libc.so.6 (__libc_start_main+0xf0) [0x7fad60527800]
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (EE) 19: /usr/lib/xorg-server/Xorg (_start+0x29) [0x427039]
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (EE) 20: ? (?+0x29) [0x29]
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (EE)
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (EE) Segmentation fault at address 0x0
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (EE)
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: Fatal server error:
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (EE) Caught signal 11 (Segmentation fault). Server aborting
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (EE)
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (EE)
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: Please consult the The X.Org Foundation support
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: at http://wiki.x.org
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: for help.
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (EE) Please also check the log file at "/dev/null" for additional information.
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (EE)
    Mar 09 19:57:56 dexter gdm-Xorg-:5[448]: (EE) Server terminated with error (1). Closing log file.
    Mar 09 19:57:56 dexter systemd-coredump[449]: Process 448 (Xorg) of user 0 dumped core

  • Concurrent Request 를 처리하는 File과 Tables

    제품 : AOL
    작성날짜 : 2003-12-02
    Concurrent Request 를 처리하는 File과 Tables
    =================================================
    PURPOSE
    이 Note는 Concurrent Reqeust output & Log 의 저장위치와 DB내 저장되는
    Object들에 대한 설명입니다. Purge Concurrent Request and Output을 실행할때 다음 table들의 해당 record들이 삭제됩니다.
    Explanations
    - FND_CONCURRENT_REQUESTS
    This table contains a complete history of all concurrent requests and
    stores information about all submitted jobs(requested directly or by a
    report set) within applications.
    There's one request_id for each requested job in this tables.
    - FND_RUN_REQUESTS
    When a user submits a report set, this table stores information about the
    reports in the report set and the parameter values for each report.
    Stores information about all request sets submittted within applications.
    Columns parent_request_id and request_id reflect the job# for the
    report-set and the jobs it calls to.
    - FND_CONC_REQUEST_ARGUMENTS
    This table records arguments passed by the concurrent manager to each program
    it starts running.
    FND_DUAL
    This table records when requests do not update database tables.
    FND_CONCURRENT_PROCESSES
    This table records information about Oracle Applications and operating system
    processes.
    FND_CONC_STAT_LIST
    This table collects runtime performance statistics for concurrent requests.
    FND_CONC_STAT_SUMMARY
    This table contains the concurrent program performance statistics generated by
    the Purge Concurrent Request and/or Manager Data program.
    The Purge Concurrent Request and/or Manager Data program uses the data in
    FND_CONC_STAT_LIST to compute these statistics.
    FND_CONC_PP_ACTIONS
    Stores the post request processing actions(e.g., print, notify) for each
    submitted request. There's a concurrent_request_id here for each request_id
    in the FND_CONCURRENT_REQUESTS.
    FND_RUN_REQ_PP_ACTIONS
    Stores the post request processing actions(e.g., print, notify) for
    submitted request set programs that are stored in FND_RUN_REQUESTS.
    Reference Documents
    Note 132823.1

  • The application was unable to start correctly (0x0000906). Click OK to close the application

    Hello People
    I am receiving the error "The application was unable to start correctly (0x0000906). Click OK to close the application" in a couple of Windows 7 Computers, one 64bits one 32bits.
    I have searched the web with no specific solution, so I am requesting help here.
    Thanks in advance.
    Best regards
    Fernando Puntel
    IT support
    [email protected]
    [email protected]

    Hi
    I believe you need to add more detail about this issue
    Can you help me to check at event viewer log maybe we can find cause for this issue
    http://windows.microsoft.com/en-us/windows/what-information-event-logs-event-viewer#1TC=windows-7
    May I know when this issue start happen? any change software or hardware before this issue happen?

  • How to schedule a concurrent request to run at a specified time/day?

    Hi All,
    How to schedule a concurrent request to run at a specified time/day (ex: Sunday 12pm)?
    Thanks,
    Chiru
    Message was edited by:
    Megastar_Chiru

    Is this to run periodically ?
    During the request submission, click schedule, choose the specific days, and click on S = Sunday.
    Change the start date on the date of the sunday you want to run, eg : 15-JUL-07 14:00:00, change the end date as well.

  • How to submit a concurrent request from a button in Selfservice

    Hi,
    I hope this is the forum where to start.
    I want to submit a concurrent request when a button is pushed in selfservice.
    I've implementend the event for button in java and its woring fine, but how to submit a conurrent request in java?
    Can anyone help me or tell me if this is not the correct forum?
    Thank you!
    Best regards
    Gjermund Lunder
    Developer/DBA

    hi,
    This question suppose to be in framework forum.
    you can try:
    OA Framework provides the ConcurrentRequest class to call the concurrent program from the page. The submitRequest() method in the ConcurrentRequest class takes 6 parameters and returns request id of the submitted concurrent request:
    public int submitRequest(
    String ProgramApplication ,
    String ProgramName ,
    String ProgramDescription ,
    String StartTime,
    boolean SubRequest,
    Vector Parameters ) throws RequestSubmissionException
    ProgramApplication -Application Short name of application under which the program is registered.
    ProgramName - Concurrent Program Name for which the request has to be submitted
    ProgramDescription - Concurrent Program Description
    StartTime - Time at which the request has to start running.
    SubRequest - Set to TRUE if the request is submitted from another running request and has to be treated as a sub request.
    Parameters - Parameters of the concurrent Request
    Here is the example for calling a concurrent program from a OA framework page.
    import oracle.apps.fnd.cp.request.ConcurrentRequest;
    import oracle.apps.fnd.framework.server.OADBTransaction;
    public int submitCPRequest(Number headerId) {
    try {
    OADBTransaction tx = (OADBTransaction)getDBTransaction();
    java.sql.Connection pConncection = tx.getJdbcConnection();
    ConcurrentRequest cr = new ConcurrentRequest(pConncection);
    String applnName = "PO"; //Application that contains the concurrent program
    String cpName = "POXXXX"; //Concurrent program name
    String cpDesc = "Concurrent Program Description"; // concurrent Program description
    // Pass the Arguments using vector
    // Here i have added my parameter headerId to the vector and passed the vector to the concurrent program
    Vector cpArgs = new Vector();
    cpArgs.addElement(headerId.stringValue());
    // Calling the Concurrent Program
    int requestId = cr.submitRequest(applnName, cpName, cpDesc, null, false, cpArgs);
    tx.commit();
    return requestId;
    } catch (RequestSubmissionException e) {
    OAException oe = new OAException(e.getMessage());
    oe.setApplicationModule(this);
    throw oe;
    I got it from http://prasanna-adf.blogspot.com/2008/11/call-concurrent-program-from-oa.html

Maybe you are looking for

  • Export animation to SWF and plays as MovieClip

    Hi to EveryBody. We are evaluating the Rome AIR  applicaction in order to create presetations and swf animations. We  have made an animation, the Anim Clips Animation,  without anything  more. We have exported to SWF (Flash Player Compatible)  and ev

  • How can I stop my iTunes Store purchases automatically going onto my iPhone?

    How can I stop my iTunes Store purchases automatically going onto my iPhone? I've downloaded several thing, including Christmas songs, but do not want them on my iPhone anymore - but no matter what I do, every time I sync my phone, all my purchases r

  • IPhone 5 Power Button flaky since upgrade to iOS 7

    I never had any issues with the power/sleep button on my iPhone 5 in the past.  However, immediately after upgrading to iOS 7 I started having issues with the button not responding very well.  It can take numerous presses to get it to work, or someti

  • How to make own bootable CD?

    My Arch with gnome is now very very fine tuned. It works well. Before trying another changes, I want to save my present system as bootable CD or DVD. How can I do it?

  • ITunes Crash, Too Much Music?

    First of all, I was listening to my iTunes with my iPod not having fully updated with iTunes, meaning, not having gotten the latest iTunes music onto the Mini iPod. Second of all, I deleted about half of my library right before the occurrence. Then I