Log Configuration with config tool

Hi All,
In my application, I am using Logging.
I have created  Location and Category controllers and it is working fine.My Application specific log files(destinations) are being updated correctly.Now my question are that:
1. Can we access my application specific Controllers(Location and Category) in ConfigTool and configure them.?
My Application specific Controllers are not appearing in the ConfigTool.
Can you explain the usage Config tool from the perspective of logging?.
Thanks
Sampath

Hi,
Just my question is: can we access/configure our application control Log Controllers from ConfigTool?.
It is urgent.
Sampath

Similar Messages

  • Problems with Config Tool; ADS not running

    Hello everyone,
    I'm trying to create an Interactive Form, but I get the following error
    com.sap.tc.webdynpro.pdfobject.core.PDFObjectRuntimeException: Service call exception; nested exception is:
    com.sap.engine.services.webservices.jaxrpc.exceptions.InvalidResponseCodeException: Invalid Response Code: (404) Not Found.
    I assume that Adobe Document Services is not running. I typed http://localhost:50000/AdobeDocumentServices/config in my browser. The result was an Error 404, too.
    In a documentation sheet about administration of ADS, I found that service IIOP in the config tool should be set to startup mode "always".
    When I tried to apply the changes in the config tool, it terminated with a critical error. Logfile says the following:
    Error occurred while working with Configuration.
    com.sap.engine.frame.core.configuration.ConfigurationException: Error occurred during DB access: ,
         at com.sap.engine.core.configuration.impl.persistence.rdbms.UpdateProcessor.flush(UpdateProcessor.java:294)
         at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.commitConfigurationHandler(ConfigurationCache.java:1217)
         at com.sap.engine.core.configuration.impl.ConfigurationHandlerImpl.commit(ConfigurationHandlerImpl.java:833)
         at com.sap.engine.configtool.batch.task.TaskUtil.changeProperties(TaskUtil.java:335)
         at com.sap.engine.configtool.batch.task.ChangeServicePropsTask.go(ChangeServicePropsTask.java:64)
         at com.sap.engine.configtool.batch.task.TasksThread.run(TasksThread.java:46)
    Caused by: com.sap.dbtech.jdbc.exceptions.BatchUpdateExceptionSapDB: [-3018]: Invalid numeric parameter(input position 2)
         at com.sap.dbtech.jdbc.CallableStatementSapDB.executeBatch(CallableStatementSapDB.java:649)
         at com.sap.sql.jdbc.direct.DirectPreparedStatement.executeBatch(DirectPreparedStatement.java:1102)
         at com.sap.sql.jdbc.direct.DirectPreparedStatement.executeBatch(DirectPreparedStatement.java:1066)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBAccessDefault.execInsertEntryBatch(DBAccessDefault.java:1170)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.UpdateProcessor.flush(UpdateProcessor.java:257)
         ... 5 more
    What can I do about the two problems?

    Just for the sake of learning how to use the tool i start with drawing a rectangle then click and drag the gradient tool across the box. i see the gradient line appear but when i release the mouse the gradient line disappears
    i end up witha box with a gradient but all my editing has to be done in the gradient box as shown in this screen shot:
    What I'm wanting to achieve is how the lades hat is edited in this video Working with gradients | Visual Design CS4 | Adobe TV

  • JAVA parameters with Config tool

    Hi,
    I am new to working with the JAVA stack.
    Could you please reveal us on the general parameters that we configure with the Config tool.
    I have already referred the SNOTE: 723909 which describes all the parameters. But we need the details of the
    parameters that are changed frequently with the JAVA stack administration.
    Any link to the document would be more helpful.
    Thanks & Regards
    DVRK

    No interview questions.
    That info is widely available.
    Read the "Rules of Engagement"
    Regards
    Juan

  • Analzing log files with external tools?

    Hi,
    is there any way to use web analytics software like Webtrends with EP? In other words, does EP produce
    an access log file with date, URL, user, referrer,
    etc.?
    Thanks in advance,
    Stefan.

    Thanks for the hint. Apparently httpaccess\responses.0.trc contains log entries that look very familiar to something an ordinary web server produces, which is good.
    A simple perl script could transform the logfile (date, etc.) into a format that a Web statistics tool on the market (e.g. WebTrends) could use.
    The SAP built-in reports are not something that drives a marketing department wild.
    Thanks,
    Stefan

  • Log-configuration.xml config does not show up in Visual Admin

    I have the following log-configuration.xml file created for a EAR project. When I deploy the file I cannot see the formatters/destinations/controllers in the log configurator.
    Please help.. thanks in advance
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE log-configuration SYSTEM "log-configuration.dtd">
    <log-configuration>
         <log-formatters>
              <log-formatter
                   name="XBTR_SERVICE_EJB_Formatter"
                   pattern="[%s] %24d [%t] %l  %m"
                   type="TraceFormatter"/>
         </log-formatters>
         <log-destinations>
              <log-destination
                   count="1"
                   effective-severity="ALL"
                   limit="1000000"
                   name="XBTR_SERVICE_EJB_Destination"
                   pattern="./logs/applications/java/ejb/xBTRservice.log"
                   type="FileLog">
                   <formatter-ref
                        name="XBTR_SERVICE_EJB_Formatter"/>
              </log-destination>
         </log-destinations>
         <log-controllers>
              <log-controller
                   effective-severity="ALL"
                   maximum-severity="ALL"
                   minimum-severity="ALL"
                   name="XBTRService_Log_Controller">
                   <associated-destinations>
                        <destination-ref
                             association-type="LOG"
                             name="XBTR_SERVICE_EJB_Destination"/>
                   </associated-destinations>
              </log-controller>
         </log-controllers>
    </log-configuration>

    Hi Rajeshkr,
    Sorry, i am kinda new to web dynpro and sap in general so i may need you to be more explicit
    I am not quite sure what this part means or how to check "...has been deployed successfully in the deploy node of the visual Node and check for the Log Configuratior Node and check for your deployed application...."
    What i did do is go to the server to and search the entire directory structure for the log-configuration.xml but could not find it. Also, the config cannot be seen via the log-configurator in visual administration engine which its supposed too i think. and lastly the behavoiur i set in the log-configuration.xml is not reflected in the defaultTrace
    Then i saw this post so i went to check the EAR file in my workspace and found that it was just like Manik described.
    Maybe u could check this link where i posted more about my problem Log-Configuration.xml Problems
    I would love to award points if it helps

  • Log-Configuration with PropertiesConfigurator

    Hi all,
    I'm trying to configure my logging using class com.sap.tc.logging.PropertiesConfigurator with following code:
    File pFile = new File("/tmp/logging.properties");
    if (pFile == null || pFile.exists() == false) {
        System.err.println("PROPFILE NOT FOUND");
    } else {
        PropertiesConfigurator _propConfig = new PropertiesConfigurator(pFile);
        _propConfig.configure();
        Properties props = _propConfig.getProperties();
        if (props == null) {
            System.err.println("PROPS == NULL");
        } else {
            props.list(System.err);
    When I run the code I see only the message "PROPS == NULL". Where's my error? I'd expect to see the properties defined in my file!
    Thanks for help,
    Christoph

    Hallo Christoph,
    Is your properties file in the format specified by SAP?
    You can find the format at this
    <a href="http://help.sap.com/javadocs/NW04S/current/en/com/sap/tc/logging/PropertiesConfigurator.html">link.</a>
    Bye,
    Sameer

  • Log Configuration with ConfigTool

    Hi All,
    We are using NE CE 7.1 server.
    In my Application, I have implemented Logging API and created Log Controllers(Location, and Category).I am able to access these controllers form NWA and change the severity levels on line.Up to that it is fine.
    In the SAP Help, it is given that we can perform log configuration(creation and updation of Log controllers) in the ConfigTool .
    Now my questions are:
    1) With this feature, Can I access my Application Specific Log Controllers and update them(updation of severity, detinations, and Fromatters etc)?. Or this featue is only for Server Log controllers?.Because in the ConfigTool It is showing only Server related Log Controllers , not showing My Application related Log controllers.
    Can you answer my questions and explain the usage of ConfigTool from the perpective of Log Configutation.
    <removed_by_moderator>
    Thanks in advance
    Sampath
    Edited by: Julius Bussche on Jun 24, 2008 8:28 AM

    Hi Rey,
    Than Q for your response.
    In the SAP Help Doc, it is given that we can perform Log confiuration. Will it be only for Server related log controllers or we can access our application related Log controllers.
    Sampath

  • Error connecting with config tool

    Hi all,
    i am not able to connect to Cnfig Tool,error is showing like
    " Error occured while working with Configuration (scanning) MSG:Error while connecting to DB"
    my J2ee processes are not running,
    Can anybody pls suggest .
    Thanks

    Hi Raj,
    See this thread:
    /thread/91761 [original link is broken]
    Regards, Suresh KB

  • Translation of lables, changed with the UI config tool

    Hi all,
    I just created/changed a field with the UI config tool. I renamed the label in source language EN, and tried to translate via SE63>Abap Objects>short texts>s6>BSP2
    But I cannot receive nay entry there..any hints?
    Regards
    Christian

    Hello,
    In your case, you have to code to render the new configuration you have created. By default the DEFAULT configuration would be rendered for all the SAP components. In the view controller class, there would be a method called DO_CONFIG_DETERMINATION. In this method , depending on your condition, make a call to the method SET_CONFIG_KEYS for which you would have pass the attributes of new configuration like ROLE_KEY, OBJECT_TYPE etc..
    This should resolve the problem. Let me know if you have any queries.
    Regards,
    Nag

  • Error while configuring Config Tool

    HI,
    I tried to change the JVM settings using config tool but it is giving an error and the config tool is automatically closing.can anybody help me to resolve this problem.
    Error Occured...
    Error occurred while working with Configuration.
    com.sap.engine.frame.core.configuration.ConfigurationException: Error occurred during DB access: ,
    at com.sap.engine.core.configuration.impl.persistence.rdbms.UpdateProcessor.flush(UpdateProcessor.java:294)
    at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.commitConfigurationHandler(ConfigurationCache.java:1217)
    at com.sap.engine.core.configuration.impl.ConfigurationHandlerImpl.commit(ConfigurationHandlerImpl.java:833)
    at com.sap.engine.configtool.batch.task.ChangeInstancePropsTask.go(ChangeInstancePropsTask.java:118)
    at com.sap.engine.configtool.batch.task.TasksThread.run(TasksThread.java:46)
    Caused by: com.sap.dbtech.jdbc.exceptions.BatchUpdateExceptionSapDB: [-3018]: Invalid numeric parameter(input position 8)
    at com.sap.dbtech.jdbc.CallableStatementSapDB.executeBatch(CallableStatementSapDB.java:608)
    at com.sap.sql.jdbc.direct.DirectPreparedStatement.executeBatch(DirectPreparedStatement.java:1102)
    at com.sap.sql.jdbc.direct.DirectPreparedStatement.executeBatch(DirectPreparedStatement.java:1066)
    at com.sap.engine.core.configuration.impl.persistence.rdbms.DBAccessDefault.execUpdateEntryBatch(DBAccessDefault.java:1180)
    at com.sap.engine.core.configuration.impl.persistence.rdbms.UpdateProcessor.flush(UpdateProcessor.java:261)
    ... 4 more
    Regards,
    Kiran.

    Hello Bhogi,
    Look at this thread:
    Re: CRITICAL: Error occured while working with configuring .in WAS deployto It deals with the same problem. Check if you are not using java 1.5.
    Best Regards
    Vyara

  • Error starting the Config Tool with NW04s Sneak Preview

    All...
    I am running the Java NW04s Sneak Preview (SP9).
    When I try to start the config tool, I get the following error on the dos session
    <b>The system cannot find the path specified.
    Program terminated abnormally
    Press any key to continue...</b>
    I realize that this is probably a very simple problem to fix... so can anyone tell me how?
    Also... when I log on to the Visual Administrator or the NetWeaver Administrator, I cannot edit any parameters.  I have tried logging in as "Administrator" and as "admin".  Is the Sneak Preview locked out, or am I doing something wrong?
    Regards

    Srikishan --
    I did check the bat file, and it says:
    %JAVA_CMD% -Dsun.java2d.noddraw=true -Duser.language=en -classpath .\lib\launcher.jar;. com.sap.engine.offline.OfflineToolStart com.sap.engine.configtool.visual.ConfigTool ./lib/
    where JAVA_CMD should equal %JAVA_HOME%\bin\java.
    I have JAVA_HOME set in my environment variables.
    I did a "set" command in DOS to check, and it is there.
    The properties file in its entirety says:
    #Generated by Config Tool
    #Sat Nov 18 15:33:41 CST 2006
    rdbms.maximum_connections=5
    system.name=J2E
    secstorefs.keyfile=
    DALTFC-HEILEE
    sapmnt
    J2E
    SYS
    global
    security
    data
    SecStore.key
    secstorefs.secfile=
    DALTFC-HEILEE
    sapmnt
    J2E
    SYS
    global
    security
    data
    SecStore.properties
    secstorefs.lib=
    DALTFC-HEILEE
    sapmnt
    J2E
    SYS
    global
    security
    lib
    rdbms.driverLocation=C\:
    sapdb
    programs
    runtime
    jar
    sapdbc.jar
    rdbms.connection=jdbc/pool/J2E
    rdbms.initial_connections=1
    Honestly, I can't tell you anything about this file.
    The file C\:
    sapdb
    programs
    runtime
    jar
    sapdbc.jar does exist.
    Any other ideas?

  • Config tool on os 400 with DB integreated

    Hi Guru's
       I want to know how to run the config tool from OS400 because it doesn't let you open any Gui from OS level.
    Thanks

    Here's our method:
    On a Windows workstation, map a drive to the IFS on the partition that you want to connect to (usually use "rootbin" share, but your installation may be different).
    Drill down
    /usr
       /sap
          /<sid>
             /<instance>  for example, JC<instance number>
                /j2ee
                   /configtool
    Double-click on the file there called "configtool.bat".
    See if that works for you.

  • Error in connecting to config tool : NW04 SP16

    hie
    m doing upgrade of NW04 with 9i to NW04s with 10g
    successfully completed the oracle upgarde from 9.2.0.6 to 10.2.0.2
    database is up & running : listener is up & running
    but jcontrol stopped
    kindly help
    unable to connect to config tool; gives error as
    "error occurred while working with configuration (scanning)
    Msg: errror while connecting to DB"
    all the setting & changes for post upgarde activities are done successfully.
    <u><b>system log is as follows</b></u>
    <!LOGHEADER[START]/>
    <!HELP[Manual modification of the header may cause parsing problem!]/>
    <!LOGGINGVERSION[1.5.3.7186 - 630]/>
    <!NAME[.\system.log]/>
    <!PATTERN[system.log]/>
    <!FORMATTER[com.sap.tc.logging.ListFormatter]/>
    <!ENCODING[Cp1252]/>
    <!LOGHEADER[END]/>
    #1.5#0002E3572B4500000000000001A8BD74000437CD0F1D281E#1187253767453#/System/Configuration/Logging##com.sap.tc.logging.APILogger.LogController[addLog()]#######Thread[main,5,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_NEW_ITEMS[C0000A305666000000000002018FB1F70003D67C779ECE88]##The () has been added to the !#3#Log#.
    system.log#/System#
    #1.5#0002E3572B4500000000000101A8BD74000437CD0F1D3C79#1187253768234#/System/Server##com.sap.engine.core.configuration#######Thread[main,5,main]##0#0#Warning#1#com.sap.engine.core.configuration#Plain###No db driver found for rdbms.driverLocation = E:/oracle/UX1/ora92/jdbc/lib/classes12.jar. Assume drivers are already available#
    #1.5#0002E3572B4500000000000201A8BD74000437CD0F1D40A5#1187253768234#/System/Server##com.sap.engine.core.configuration#######Thread[main,5,main]##0#0#Info#1#com.sap.engine.core.configuration#Plain###ConfigurationManager: found jar for secure store E:
    usr
    sap
    MYP
    SYS
    global
    security
    lib
    tools
    iaik_jce_export.jar#
    #1.5#0002E3572B4500000000000301A8BD74000437CD0F1D41F6#1187253768234#/System/Server##com.sap.engine.core.configuration#######Thread[main,5,main]##0#0#Info#1#com.sap.engine.core.configuration#Plain###ConfigurationManager: found jar for secure store E:
    usr
    sap
    MYP
    SYS
    global
    security
    lib
    tools
    iaik_jsse.jar#
    #1.5#0002E3572B4500000000000401A8BD74000437CD0F1D44FF#1187253768234#/System/Server##com.sap.engine.core.configuration#######Thread[main,5,main]##0#0#Info#1#com.sap.engine.core.configuration#Plain###ConfigurationManager: found jar for secure store E:
    usr
    sap
    MYP
    SYS
    global
    security
    lib
    tools
    iaik_smime.jar#
    #1.5#0002E3572B4500000000000501A8BD74000437CD0F1D56F6#1187253768234#/System/Server##com.sap.engine.core.configuration#######Thread[main,5,main]##0#0#Info#1#com.sap.engine.core.configuration#Plain###ConfigurationManager: found jar for secure store E:
    usr
    sap
    MYP
    SYS
    global
    security
    lib
    tools
    iaik_ssl.jar#
    #1.5#0002E3572B4500000000000601A8BD74000437CD0F1D579C#1187253768234#/System/Server##com.sap.engine.core.configuration#######Thread[main,5,main]##0#0#Info#1#com.sap.engine.core.configuration#Plain###ConfigurationManager: found jar for secure store E:
    usr
    sap
    MYP
    SYS
    global
    security
    lib
    tools
    w3c_http.jar#
    #1.5#0002E3572B4500000000000701A8BD74000437CD0F1EEE0F#1187253768343#/System/Configuration/Logging##com.sap.tc.logging.APILogger.LogController[setResourceBundleName(String resourceBundleName)]#######Thread[main,5,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#resource bundle name#LogController#com.sap.security.core.server.secstorefs.SecStoreFS#<null>#com.sap.security.core.server.secstorefs.SecStoreFSResources#
    #1.5#0002E3572B4500000000000801A8BD74000437CD0F1EF21F#1187253768343#/System/Configuration/Logging##com.sap.tc.logging.APILogger.LogController[setResourceBundleName(String resourceBundleName)]#######Thread[main,5,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#resource bundle name#LogController#/System/Security/SecStoreFS#<null>#com.sap.security.core.server.secstorefs.SecStoreFSResources#
    #1.5#0002E3572B4500000000000901A8BD74000437CD0F2336AB#1187253768625#/System/Server##com.sap.engine.core.configuration#######Thread[main,5,main]##0#0#Info#1#com.sap.engine.core.configuration#Plain###OpenSQLDataSource successfully created with secure store.#
    #1.5#0002E3572B4500000000000A01A8BD74000437CD0F238F77#1187253768640#/System/Configuration/Logging##com.sap.tc.logging.APILogger.LogController[setResourceBundleName(String resourceBundleName)]#######Thread[main,5,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#resource bundle name#LogController#/System/Database/sql/jdbc#<null>#com.sap.sql.log.OpenSQLResourceBundle#
    #1.5#0002E3572B4500000000000B01A8BD74000437CD0F2393B1#1187253768656#/System/Configuration/Logging##com.sap.tc.logging.APILogger.LogController[setResourceBundleName(String resourceBundleName)]#######Thread[main,5,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#resource bundle name#LogController#/System/Database/sql/jdbc#com.sap.sql.log.OpenSQLResourceBundle#com.sap.sql.log.OpenSQLResourceBundle#
    #1.5#0002E3572B4500000000000C01A8BD74000437CD0F23981C#1187253768656#/System/Database/sql/jdbc##com.sap.sql.jdbc.NativeConnectionFactory#######Thread[main,5,main]##0#0#Error#1#com.sap.sql.jdbc.NativeConnectionFactory#Java#com.sap.sql_0006#com.sap.sql.log.OpenSQLResourceBundle#Could not load class .#1#oracle.jdbc.OracleDriver#
    #1.5#0002E3572B4500000000000D01A8BD74000437CD0F2398C7#1187253768656#/System/Configuration/Logging##com.sap.tc.logging.APILogger.LogController[setResourceBundleName(String resourceBundleName)]#######Thread[main,5,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#resource bundle name#LogController#/System/Database/sql/jdbc#com.sap.sql.log.OpenSQLResourceBundle#com.sap.sql.log.OpenSQLResourceBundle#
    #1.5#0002E3572B4500010000000001A8BD74000437CD14642532#1187253856765#/System/Logging##com.sap.tc.logging.FileLogInfoData.[getFileHeader(String fileName, int cntHeadLines)]#######Thread[AWT-EventQueue-0,6,main]##0#0#Warning##Java#SAP_LOGGING_UNEXPECTED##Unexcepted error occured on !#1#FileHeader parsing#
    #1.5#0002E3572B4500010000000101A8BD74000437CD14642C45#1187253856765#/System/Logging##/System/Logging#######Thread[AWT-EventQueue-0,6,main]##0#0#Path##Java###Caught #1#java.lang.Exception: sqltrace.xml (The system cannot find the file specified)
         at com.sap.tc.logging.FileLogInfoData.getEOLLength(FileLogInfoData.java:432)
         at com.sap.tc.logging.FileLogInfoData.getFileHeaderLines(FileLogInfoData.java:348)
         at com.sap.tc.logging.FileLogInfoData.getFileHeaderLines(FileLogInfoData.java:334)
         at com.sap.tc.logging.FileLogInfoData.loadFileLogHeader(FileLogInfoData.java:320)
         at com.sap.tc.logging.FileLogInfoData.init(FileLogInfoData.java:260)
         at com.sap.tc.logging.FileLogInfoData.<init>(FileLogInfoData.java:119)
         at com.sap.tc.logging.FileLog.init(FileLog.java:373)
         at com.sap.tc.logging.FileLog.<init>(FileLog.java:282)
         at com.sap.tc.logging.FileLog.<init>(FileLog.java:246)
         at com.sap.tc.logging.PropertiesConfigurator.configure(PropertiesConfigurator.java:863)
         at com.sap.engine.core.configuration.impl.Logging.<init>(Logging.java:54)
         at com.sap.engine.core.configuration.bootstrap.ConfigurationManagerBootstrapImpl.init(ConfigurationManagerBootstrapImpl.java:176)
         at com.sap.engine.core.configuration.bootstrap.ConfigurationManagerBootstrapImpl.<init>(ConfigurationManagerBootstrapImpl.java:49)
         at com.sap.engine.configtool.visual.ConfigTool.loadClusterData(ConfigTool.java:99)
         at com.sap.engine.configtool.visual.ConfigTool.initScan(ConfigTool.java:87)
         at com.sap.engine.configtool.visual.ConfigTool.scanAction(ConfigTool.java:277)
         at com.sap.engine.configtool.visual.ConfigTool.actionPerformed(ConfigTool.java:209)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1786)
         at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1839)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
         at javax.swing.AbstractButton.doClick(AbstractButton.java:289)
         at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:1113)
         at javax.swing.plaf.basic.BasicMenuItemUI$MouseInputHandler.mouseReleased(BasicMenuItemUI.java:943)
         at java.awt.Component.processMouseEvent(Component.java:5100)
         at java.awt.Component.processEvent(Component.java:4897)
         at java.awt.Container.processEvent(Container.java:1569)
         at java.awt.Component.dispatchEventImpl(Component.java:3615)
         at java.awt.Container.dispatchEventImpl(Container.java:1627)
         at java.awt.Component.dispatchEvent(Component.java:3477)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3483)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3198)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3128)
         at java.awt.Container.dispatchEventImpl(Container.java:1613)
         at java.awt.Window.dispatchEventImpl(Window.java:1606)
         at java.awt.Component.dispatchEvent(Component.java:3477)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:480)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
    #1.5#0002E3572B4500010000000201A8BD74000437CD14643001#1187253856765#/System/Configuration/Logging##com.sap.tc.logging.APILogger.Log[setFormatter()]#######Thread[AWT-EventQueue-0,6,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#formatter#Log#sqltrace.xml#com.sap.tc.logging.ListFormatter#com.sap.sql.trace.SQLTraceXMLFormatter#
    #1.5#0002E3572B4500010000000301A8BD74000437CD14643096#1187253856765#/System/Configuration/Logging##com.sap.tc.logging.APILogger.FileLog[setFormatter()]#######Thread[AWT-EventQueue-0,6,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#formatter#FileLog#sqltrace.xml#com.sap.tc.logging.ListFormatter#com.sap.sql.trace.SQLTraceXMLFormatter#
    #1.5#0002E3572B4500010000000401A8BD74000437CD1464326F#1187253856765#/System/Logging##com.sap.tc.logging.FileLogInfoData.[getFileHeader(String fileName, int cntHeadLines)]#######Thread[AWT-EventQueue-0,6,main]##0#0#Warning##Java#SAP_LOGGING_UNEXPECTED##Unexcepted error occured on !#1#FileHeader parsing#
    #1.5#0002E3572B4500010000000501A8BD74000437CD14644558#1187253856781#/System/Logging##/System/Logging#######Thread[AWT-EventQueue-0,6,main]##0#0#Path##Java###Caught #1#java.lang.Exception: default.trc (The system cannot find the file specified)
         at com.sap.tc.logging.FileLogInfoData.getEOLLength(FileLogInfoData.java:432)
         at com.sap.tc.logging.FileLogInfoData.getFileHeaderLines(FileLogInfoData.java:348)
         at com.sap.tc.logging.FileLogInfoData.getFileHeaderLines(FileLogInfoData.java:334)
         at com.sap.tc.logging.FileLogInfoData.loadFileLogHeader(FileLogInfoData.java:320)
         at com.sap.tc.logging.FileLogInfoData.init(FileLogInfoData.java:260)
         at com.sap.tc.logging.FileLogInfoData.<init>(FileLogInfoData.java:119)
         at com.sap.tc.logging.FileLog.init(FileLog.java:373)
         at com.sap.tc.logging.FileLog.<init>(FileLog.java:282)
         at com.sap.tc.logging.FileLog.<init>(FileLog.java:246)
         at com.sap.tc.logging.PropertiesConfigurator.configure(PropertiesConfigurator.java:863)
         at com.sap.engine.core.configuration.impl.Logging.<init>(Logging.java:54)
         at com.sap.engine.core.configuration.bootstrap.ConfigurationManagerBootstrapImpl.init(ConfigurationManagerBootstrapImpl.java:176)
         at com.sap.engine.core.configuration.bootstrap.ConfigurationManagerBootstrapImpl.<init>(ConfigurationManagerBootstrapImpl.java:49)
         at com.sap.engine.configtool.visual.ConfigTool.loadClusterData(ConfigTool.java:99)
         at com.sap.engine.configtool.visual.ConfigTool.initScan(ConfigTool.java:87)
         at com.sap.engine.configtool.visual.ConfigTool.scanAction(ConfigTool.java:277)
         at com.sap.engine.configtool.visual.ConfigTool.actionPerformed(ConfigTool.java:209)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1786)
         at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1839)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
         at javax.swing.AbstractButton.doClick(AbstractButton.java:289)
         at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:1113)
         at javax.swing.plaf.basic.BasicMenuItemUI$MouseInputHandler.mouseReleased(BasicMenuItemUI.java:943)
         at java.awt.Component.processMouseEvent(Component.java:5100)
         at java.awt.Component.processEvent(Component.java:4897)
         at java.awt.Container.processEvent(Container.java:1569)
         at java.awt.Component.dispatchEventImpl(Component.java:3615)
         at java.awt.Container.dispatchEventImpl(Container.java:1627)
         at java.awt.Component.dispatchEvent(Component.java:3477)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3483)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3198)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3128)
         at java.awt.Container.dispatchEventImpl(Container.java:1613)
         at java.awt.Window.dispatchEventImpl(Window.java:1606)
         at java.awt.Component.dispatchEvent(Component.java:3477)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:480)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
    #1.5#0002E3572B4500010000000601A8BD74000437CD1464477C#1187253856781#/System/Configuration/Logging##com.sap.tc.logging.APILogger.Log[setFormatter()]#######Thread[AWT-EventQueue-0,6,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#formatter#Log#default.trc#com.sap.tc.logging.ListFormatter#com.sap.tc.logging.ListFormatter#
    #1.5#0002E3572B4500010000000701A8BD74000437CD1464480B#1187253856781#/System/Configuration/Logging##com.sap.tc.logging.APILogger.FileLog[setFormatter()]#######Thread[AWT-EventQueue-0,6,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#formatter#FileLog#default.trc#com.sap.tc.logging.ListFormatter#com.sap.tc.logging.ListFormatter#
    #1.5#0002E3572B4500010000000801A8BD74000437CD14646125#1187253856781#/System/Configuration/Logging##com.sap.tc.logging.APILogger.Log[setFormatter()]#######Thread[AWT-EventQueue-0,6,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#formatter#Log#.
    system.log#com.sap.tc.logging.ListFormatter#com.sap.tc.logging.ListFormatter#
    #1.5#0002E3572B4500010000000901A8BD74000437CD146461F5#1187253856781#/System/Configuration/Logging##com.sap.tc.logging.APILogger.FileLog[setFormatter()]#######Thread[AWT-EventQueue-0,6,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#formatter#FileLog#.
    system.log#com.sap.tc.logging.ListFormatter#com.sap.tc.logging.ListFormatter#
    #1.5#0002E3572B4500010000000A01A8BD74000437CD146462D6#1187253856781#/System/Configuration/Logging##com.sap.tc.logging.APILogger.Log[setFormatter()]#######Thread[AWT-EventQueue-0,6,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#formatter#Log#default.trc#com.sap.tc.logging.ListFormatter#com.sap.tc.logging.ListFormatter#
    #1.5#0002E3572B4500010000000B01A8BD74000437CD146463B9#1187253856781#/System/Configuration/Logging##com.sap.tc.logging.APILogger.FileLog[setFormatter()]#######Thread[AWT-EventQueue-0,6,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#formatter#FileLog#default.trc#com.sap.tc.logging.ListFormatter#com.sap.tc.logging.ListFormatter#
    #1.5#0002E3572B4500010000000C01A8BD74000437CD14646483#1187253856781#/System/Configuration/Logging##com.sap.tc.logging.APILogger.Log[setFormatter()]#######Thread[AWT-EventQueue-0,6,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#formatter#Log#sqltrace.xml#com.sap.sql.trace.SQLTraceXMLFormatter#com.sap.sql.trace.SQLTraceXMLFormatter#
    #1.5#0002E3572B4500010000000D01A8BD74000437CD14646510#1187253856781#/System/Configuration/Logging##com.sap.tc.logging.APILogger.FileLog[setFormatter()]#######Thread[AWT-EventQueue-0,6,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#formatter#FileLog#sqltrace.xml#com.sap.sql.trace.SQLTraceXMLFormatter#com.sap.sql.trace.SQLTraceXMLFormatter#
    #1.5#0002E3572B4500010000000E01A8BD74000437CD146465DA#1187253856781#/System/Logging##com.sap.tc.logging.APILogger.FileLog[setFormatter()]#######Thread[AWT-EventQueue-0,6,main]##0#0#Warning##Java#SAP_LOGGING_FORMATTER_ERROR##Attempting to change a formatter on active log ! The reset() method must be called first!#1#.
    system.log#
    #1.5#0002E3572B4500010000000F01A8BD74000437CD1464665A#1187253856781#/System/Configuration/Logging##com.sap.tc.logging.APILogger.FileLog[setFormatter()]#######Thread[AWT-EventQueue-0,6,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#formatter#FileLog#.
    system.log#com.sap.tc.logging.ListFormatter#com.sap.tc.logging.ListFormatter#
    #1.5#0002E3572B4500010000001001A8BD74000437CD14646C95#1187253856781#/System/Server##com.sap.engine.core.configuration#######Thread[AWT-EventQueue-0,6,main]##0#0#Info#1#com.sap.engine.core.configuration#Plain###ConfigurationManager: found jar for secure store E:
    usr
    sap
    MYP
    SYS
    global
    security
    lib
    tools
    iaik_jce_export.jar#
    #1.5#0002E3572B4500010000001101A8BD74000437CD14646D37#1187253856781#/System/Server##com.sap.engine.core.configuration#######Thread[AWT-EventQueue-0,6,main]##0#0#Info#1#com.sap.engine.core.configuration#Plain###ConfigurationManager: found jar for secure store E:
    usr
    sap
    MYP
    SYS
    global
    security
    lib
    tools
    iaik_jsse.jar#
    #1.5#0002E3572B4500010000001201A8BD74000437CD14646DBF#1187253856781#/System/Server##com.sap.engine.core.configuration#######Thread[AWT-EventQueue-0,6,main]##0#0#Info#1#com.sap.engine.core.configuration#Plain###ConfigurationManager: found jar for secure store E:
    usr
    sap
    MYP
    SYS
    global
    security
    lib
    tools
    iaik_smime.jar#
    #1.5#0002E3572B4500010000001301A8BD74000437CD14646E47#1187253856781#/System/Server##com.sap.engine.core.configuration#######Thread[AWT-EventQueue-0,6,main]##0#0#Info#1#com.sap.engine.core.configuration#Plain###ConfigurationManager: found jar for secure store E:
    usr
    sap
    MYP
    SYS
    global
    security
    lib
    tools
    iaik_ssl.jar#
    #1.5#0002E3572B4500010000001401A8BD74000437CD14646ECD#1187253856781#/System/Server##com.sap.engine.core.configuration#######Thread[AWT-EventQueue-0,6,main]##0#0#Info#1#com.sap.engine.core.configuration#Plain###ConfigurationManager: found jar for secure store E:
    usr
    sap
    MYP
    SYS
    global
    security
    lib
    tools
    w3c_http.jar#
    #1.5#0002E3572B4500010000001501A8BD74000437CD14647F97#1187253856796#/System/Server##com.sap.engine.core.configuration#######Thread[AWT-EventQueue-0,6,main]##0#0#Info#1#com.sap.engine.core.configuration#Plain###OpenSQLDataSource successfully created with secure store.#
    #1.5#0002E3572B4500010000001601A8BD74000437CD147BEE74#1187253858328#/System/Configuration/Logging##com.sap.tc.logging.APILogger.LogController[setResourceBundleName(String resourceBundleName)]#######Thread[AWT-EventQueue-0,6,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#resource bundle name#LogController#/System/Database/sql/jdbc#com.sap.sql.log.OpenSQLResourceBundle#com.sap.sql.log.OpenSQLResourceBundle#
    #1.5#0002E3572B4500010000001701A8BD74000437CD147BFD37#1187253858328#/System/Database/sql/jdbc##com.sap.sql.jdbc.NativeConnectionFactory#######Thread[AWT-EventQueue-0,6,main]##0#0#Error#1#com.sap.sql.jdbc.NativeConnectionFactory#Java#com.sap.sql_0002#com.sap.sql.log.OpenSQLResourceBundle#SQL error occurred on connection : code={0,number,integer}, state="", message="".#5#17002#<null>#Io exception: The Network Adapter could not establish the connection#jdbc:oracle:thin:@infpw01621:1527:UX1#<null>#
    #1.5#0002E3572B4500010000001801A8BD74000437CD147CA554#1187253858375#/System/Logging##com.sap.tc.logging.FileLogInfoData.[getFileHeader(String fileName, int cntHeadLines)]#######Thread[AWT-EventQueue-0,6,main]##0#0#Warning##Java#SAP_LOGGING_UNEXPECTED##Unexcepted error occured on !#1#FileHeader parsing#
    #1.5#0002E3572B4500010000001901A8BD74000437CD147CA8B7#1187253858375#/System/Logging##/System/Logging#######Thread[AWT-EventQueue-0,6,main]##0#0#Path##Java###Caught #1#java.lang.Exception: sqltrace.xml (The system cannot find the file specified)
         at com.sap.tc.logging.FileLogInfoData.getEOLLength(FileLogInfoData.java:432)
         at com.sap.tc.logging.FileLogInfoData.getFileHeaderLines(FileLogInfoData.java:348)
         at com.sap.tc.logging.FileLogInfoData.getFileHeaderLines(FileLogInfoData.java:334)
         at com.sap.tc.logging.FileLogInfoData.loadFileLogHeader(FileLogInfoData.java:320)
         at com.sap.tc.logging.FileLogInfoData.init(FileLogInfoData.java:260)
         at com.sap.tc.logging.FileLogInfoData.<init>(FileLogInfoData.java:119)
         at com.sap.tc.logging.FileLog.init(FileLog.java:373)
         at com.sap.tc.logging.FileLog.<init>(FileLog.java:282)
         at com.sap.tc.logging.FileLog.<init>(FileLog.java:246)
         at com.sap.tc.logging.PropertiesConfigurator.configure(PropertiesConfigurator.java:863)
         at com.sap.engine.core.configuration.impl.Logging.<init>(Logging.java:54)
         at com.sap.engine.core.configuration.bootstrap.ConfigurationManagerBootstrapImpl.init(ConfigurationManagerBootstrapImpl.java:176)
         at com.sap.engine.core.configuration.bootstrap.ConfigurationManagerBootstrapImpl.<init>(ConfigurationManagerBootstrapImpl.java:49)
         at com.sap.engine.configtool.visual.ConfigTool.loadClusterData(ConfigTool.java:121)
         at com.sap.engine.configtool.visual.ConfigTool.initScan(ConfigTool.java:87)
         at com.sap.engine.configtool.visual.ConfigTool.scanAction(ConfigTool.java:277)
         at com.sap.engine.configtool.visual.ConfigTool.actionPerformed(ConfigTool.java:209)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1786)
         at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1839)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
         at javax.swing.AbstractButton.doClick(AbstractButton.java:289)
         at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:1113)
         at javax.swing.plaf.basic.BasicMenuItemUI$MouseInputHandler.mouseReleased(BasicMenuItemUI.java:943)
         at java.awt.Component.processMouseEvent(Component.java:5100)
         at java.awt.Component.processEvent(Component.java:4897)
         at java.awt.Container.processEvent(Container.java:1569)
         at java.awt.Component.dispatchEventImpl(Component.java:3615)
         at java.awt.Container.dispatchEventImpl(Container.java:1627)
         at java.awt.Component.dispatchEvent(Component.java:3477)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3483)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3198)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3128)
         at java.awt.Container.dispatchEventImpl(Container.java:1613)
         at java.awt.Window.dispatchEventImpl(Window.java:1606)
         at java.awt.Component.dispatchEvent(Component.java:3477)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:480)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
    #1.5#0002E3572B4500010000001A01A8BD74000437CD147CAABE#1187253858375#/System/Configuration/Logging##com.sap.tc.logging.APILogger.Log[setFormatter()]#######Thread[AWT-EventQueue-0,6,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#formatter#Log#sqltrace.xml#com.sap.tc.logging.ListFormatter#com.sap.sql.trace.SQLTraceXMLFormatter#
    #1.5#0002E3572B4500010000001B01A8BD74000437CD147CAB4C#1187253858375#/System/Configuration/Logging##com.sap.tc.logging.APILogger.FileLog[setFormatter()]#######Thread[AWT-EventQueue-0,6,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#formatter#FileLog#sqltrace.xml#com.sap.tc.logging.ListFormatter#com.sap.sql.trace.SQLTraceXMLFormatter#
    #1.5#0002E3572B4500010000001C01A8BD74000437CD147CACD7#1187253858375#/System/Logging##com.sap.tc.logging.FileLogInfoData.[getFileHeader(String fileName, int cntHeadLines)]#######Thread[AWT-EventQueue-0,6,main]##0#0#Warning##Java#SAP_LOGGING_UNEXPECTED##Unexcepted error occured on !#1#FileHeader parsing#
    #1.5#0002E3572B4500010000001D01A8BD74000437CD147CAFFB#1187253858375#/System/Logging##/System/Logging#######Thread[AWT-EventQueue-0,6,main]##0#0#Path##Java###Caught #1#java.lang.Exception: default.trc (The system cannot find the file specified)
         at com.sap.tc.logging.FileLogInfoData.getEOLLength(FileLogInfoData.java:432)
         at com.sap.tc.logging.FileLogInfoData.getFileHeaderLines(FileLogInfoData.java:348)
         at com.sap.tc.logging.FileLogInfoData.getFileHeaderLines(FileLogInfoData.java:334)
         at com.sap.tc.logging.FileLogInfoData.loadFileLogHeader(FileLogInfoData.java:320)
         at com.sap.tc.logging.FileLogInfoData.init(FileLogInfoData.java:260)
         at com.sap.tc.logging.FileLogInfoData.<init>(FileLogInfoData.java:119)
         at com.sap.tc.logging.FileLog.init(FileLog.java:373)
         at com.sap.tc.logging.FileLog.<init>(FileLog.java:282)
         at com.sap.tc.logging.FileLog.<init>(FileLog.java:246)
         at com.sap.tc.logging.PropertiesConfigurator.configure(PropertiesConfigurator.java:863)
         at com.sap.engine.core.configuration.impl.Logging.<init>(Logging.java:54)
         at com.sap.engine.core.configuration.bootstrap.ConfigurationManagerBootstrapImpl.init(ConfigurationManagerBootstrapImpl.java:176)
         at com.sap.engine.core.configuration.bootstrap.ConfigurationManagerBootstrapImpl.<init>(ConfigurationManagerBootstrapImpl.java:49)
         at com.sap.engine.configtool.visual.ConfigTool.loadClusterData(ConfigTool.java:121)
         at com.sap.engine.configtool.visual.ConfigTool.initScan(ConfigTool.java:87)
         at com.sap.engine.configtool.visual.ConfigTool.scanAction(ConfigTool.java:277)
         at com.sap.engine.configtool.visual.ConfigTool.actionPerformed(ConfigTool.java:209)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1786)
         at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1839)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
         at javax.swing.AbstractButton.doClick(AbstractButton.java:289)
         at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:1113)
         at javax.swing.plaf.basic.BasicMenuItemUI$MouseInputHandler.mouseReleased(BasicMenuItemUI.java:943)
         at java.awt.Component.processMouseEvent(Component.java:5100)
         at java.awt.Component.processEvent(Component.java:4897)
         at java.awt.Container.processEvent(Container.java:1569)
         at java.awt.Component.dispatchEventImpl(Component.java:3615)
         at java.awt.Container.dispatchEventImpl(Container.java:1627)
         at java.awt.Component.dispatchEvent(Component.java:3477)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3483)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3198)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3128)
         at java.awt.Container.dispatchEventImpl(Container.java:1613)
         at java.awt.Window.dispatchEventImpl(Window.java:1606)
         at java.awt.Component.dispatchEvent(Component.java:3477)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:480)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
    #1.5#0002E3572B4500010000001E01A8BD74000437CD147CB1E2#1187253858375#/System/Configuration/Logging##com.sap.tc.logging.APILogger.Log[setFormatter()]#######Thread[AWT-EventQueue-0,6,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#formatter#Log#default.trc#com.sap.tc.logging.ListFormatter#com.sap.tc.logging.ListFormatter#
    #1.5#0002E3572B4500010000001F01A8BD74000437CD147CB26E#1187253858375#/System/Configuration/Logging##com.sap.tc.logging.APILogger.FileLog[setFormatter()]#######Thread[AWT-EventQueue-0,6,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#formatter#FileLog#default.trc#com.sap.tc.logging.ListFormatter#com.sap.tc.logging.ListFormatter#
    #1.5#0002E3572B4500010000002001A8BD74000437CD147CC41B#1187253858375#/System/Configuration/Logging##com.sap.tc.logging.APILogger.Log[setFormatter()]#######Thread[AWT-EventQueue-0,6,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#formatter#Log#.
    system.log#com.sap.tc.logging.ListFormatter#com.sap.tc.logging.ListFormatter#
    #1.5#0002E3572B4500010000002101A8BD74000437CD147CC4BE#1187253858375#/System/Configuration/Logging##com.sap.tc.logging.APILogger.FileLog[setFormatter()]#######Thread[AWT-EventQueue-0,6,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#formatter#FileLog#.
    system.log#com.sap.tc.logging.ListFormatter#com.sap.tc.logging.ListFormatter#
    #1.5#0002E3572B4500010000002201A8BD74000437CD147CC57B#1187253858375#/System/Configuration/Logging##com.sap.tc.logging.APILogger.Log[setFormatter()]#######Thread[AWT-EventQueue-0,6,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#formatter#Log#default.trc#com.sap.tc.logging.ListFormatter#com.sap.tc.logging.ListFormatter#
    #1.5#0002E3572B4500010000002301A8BD74000437CD147CC603#1187253858375#/System/Configuration/Logging##com.sap.tc.logging.APILogger.FileLog[setFormatter()]#######Thread[AWT-EventQueue-0,6,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#formatter#FileLog#default.trc#com.sap.tc.logging.ListFormatter#com.sap.tc.logging.ListFormatter#
    #1.5#0002E3572B4500010000002401A8BD74000437CD147CC7B4#1187253858390#/System/Configuration/Logging##com.sap.tc.logging.APILogger.Log[setFormatter()]#######Thread[AWT-EventQueue-0,6,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#formatter#Log#sqltrace.xml#com.sap.sql.trace.SQLTraceXMLFormatter#com.sap.sql.trace.SQLTraceXMLFormatter#
    #1.5#0002E3572B4500010000002501A8BD74000437CD147CC89B#1187253858390#/System/Configuration/Logging##com.sap.tc.logging.APILogger.FileLog[setFormatter()]#######Thread[AWT-EventQueue-0,6,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#formatter#FileLog#sqltrace.xml#com.sap.sql.trace.SQLTraceXMLFormatter#com.sap.sql.trace.SQLTraceXMLFormatter#
    #1.5#0002E3572B4500010000002601A8BD74000437CD147CC958#1187253858390#/System/Logging##com.sap.tc.logging.APILogger.FileLog[setFormatter()]#######Thread[AWT-EventQueue-0,6,main]##0#0#Warning##Java#SAP_LOGGING_FORMATTER_ERROR##Attempting to change a formatter on active log ! The reset() method must be called first!#1#.
    system.log#
    #1.5#0002E3572B4500010000002701A8BD74000437CD147CC9D8#1187253858390#/System/Configuration/Logging##com.sap.tc.logging.APILogger.FileLog[setFormatter()]#######Thread[AWT-EventQueue-0,6,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#formatter#FileLog#.
    system.log#com.sap.tc.logging.ListFormatter#com.sap.tc.logging.ListFormatter#
    #1.5#0002E3572B4500010000002801A8BD74000437CD147CCD91#1187253858390#/System/Server##com.sap.engine.core.configuration#######Thread[AWT-EventQueue-0,6,main]##0#0#Info#1#com.sap.engine.core.configuration#Plain###Properties for connect through secure store not set. Please check your connect properties. Trying to connect via plain user/password.#
    #1.5#0002E3572B4500010000002901A8BD74000437CD147CD3CF#1187253858390#/System/Configuration/Logging##com.sap.tc.logging.APILogger.LogController[setResourceBundleName(String resourceBundleName)]#######Thread[AWT-EventQueue-0,6,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#resource bundle name#LogController#/System/Database/sql/jdbc#com.sap.sql.log.OpenSQLResourceBundle#com.sap.sql.log.OpenSQLResourceBundle#
    #1.5#0002E3572B4500010000002A01A8BD74000437CD147CD4D8#1187253858390#/System/Configuration/Logging##com.sap.tc.logging.APILogger.LogController[setResourceBundleName(String resourceBundleName)]#######Thread[AWT-EventQueue-0,6,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#resource bundle name#LogController#/System/Database/sql/jdbc#com.sap.sql.log.OpenSQLResourceBundle#com.sap.sql.log.OpenSQLResourceBundle#
    #1.5#0002E3572B4500010000002B01A8BD74000437CD147CD5A1#1187253858390#/System/Database/sql/jdbc##com.sap.sql.jdbc.NativeConnectionFactory#######Thread[AWT-EventQueue-0,6,main]##0#0#Error#1#com.sap.sql.jdbc.NativeConnectionFactory#Java#com.sap.sql_0015#com.sap.sql.log.OpenSQLResourceBundle#Value "" is not allowed for parameter .#2#url##
    #1.5#0002E3572B4500010000002C01A8BD74000437CD147CD625#1187253858390#/System/Configuration/Logging##com.sap.tc.logging.APILogger.LogController[setResourceBundleName(String resourceBundleName)]#######Thread[AWT-EventQueue-0,6,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#resource bundle name#LogController#/System/Database/sql/jdbc#com.sap.sql.log.OpenSQLResourceBundle#com.sap.sql.log.OpenSQLResourceBundle#
    #1.5#0002E3572B4500010000002D01A8BD74000437CD154CBFB4#1187253872015#/System/Logging##com.sap.tc.logging.FileLogInfoData.[getFileHeader(String fileName, int cntHeadLines)]#######Thread[AWT-EventQueue-0,6,main]##0#0#Warning##Java#SAP_LOGGING_UNEXPECTED##Unexcepted error occured on !#1#FileHeader parsing#
    #1.5#0002E3572B4500010000002E01A8BD74000437CD154CC545#1187253872015#/System/Logging##/System/Logging#######Thread[AWT-EventQueue-0,6,main]##0#0#Path##Java###Caught #1#java.lang.Exception: sqltrace.xml (The system cannot find the file specified)
         at com.sap.tc.logging.FileLogInfoData.getEOLLength(FileLogInfoData.java:432)
         at com.sap.tc.logging.FileLogInfoData.getFileHeaderLines(FileLogInfoData.java:348)
         at com.sap.tc.logging.FileLogInfoData.getFileHeaderLines(FileLogInfoData.java:334)
         at com.sap.tc.logging.FileLogInfoData.loadFileLogHeader(FileLogInfoData.java:320)
         at com.sap.tc.logging.FileLogInfoData.init(FileLogInfoData.java:260)
         at com.sap.tc.logging.FileLogInfoData.<init>(FileLogInfoData.java:119)
         at com.sap.tc.logging.FileLog.init(FileLog.java:373)
         at com.sap.tc.logging.FileLog.<init>(FileLog.java:282)
         at com.sap.tc.logging.FileLog.<init>(FileLog.java:246)
         at com.sap.tc.logging.PropertiesConfigurator.configure(PropertiesConfigurator.java:863)
         at com.sap.engine.core.configuration.impl.Logging.<init>(Logging.java:54)
         at com.sap.engine.core.configuration.bootstrap.ConfigurationManagerBootstrapImpl.init(ConfigurationManagerBootstrapImpl.java:176)
         at com.sap.engine.core.configuration.bootstrap.ConfigurationManagerBootstrapImpl.<init>(ConfigurationManagerBootstrapImpl.java:49)
         at com.sap.engine.configtool.visual.ConfigTool.loadClusterData(ConfigTool.java:99)
         at com.sap.engine.configtool.visual.ConfigTool.initScan(ConfigTool.java:87)
         at com.sap.engine.configtool.visual.ConfigTool.scanAction(ConfigTool.java:277)
         at com.sap.engine.configtool.visual.ConfigTool.actionPerformed(ConfigTool.java:209)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1786)
         at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1839)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:245)
         at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:231)
         at java.awt.Component.processMouseEvent(Component.java:5100)
         at java.awt.Component.processEvent(Component.java:4897)
         at java.awt.Container.processEvent(Container.java:1569)
         at java.awt.Component.dispatchEventImpl(Component.java:3615)
         at java.awt.Container.dispatchEventImpl(Container.java:1627)
         at java.awt.Component.dispatchEvent(Component.java:3477)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3483)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3198)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3128)
         at java.awt.Container.dispatchEventImpl(Container.java:1613)
         at java.awt.Window.dispatchEventImpl(Window.java:1606)
         at java.awt.Component.dispatchEvent(Component.java:3477)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:480)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
    #1.5#0002E3572B4500010000002F01A8BD74000437CD154CC8BB#1187253872015#/System/Configuration/Logging##com.sap.tc.logging.APILogger.Log[setFormatter()]#######Thread[AWT-EventQueue-0,6,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#formatter#Log#sqltrace.xml#com.sap.tc.logging.ListFormatter#com.sap.sql.trace.SQLTraceXMLFormatter#
    #1.5#0002E3572B4500010000003001A8BD74000437CD154CC9A1#1187253872015#/System/Configuration/Logging##com.sap.tc.logging.APILogger.FileLog[setFormatter()]#######Thread[AWT-EventQueue-0,6,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#formatter#FileLog#sqltrace.xml#com.sap.tc.logging.ListFormatter#com.sap.sql.trace.SQLTraceXMLFormatter#
    #1.5#0002E3572B4500010000003101A8BD74000437CD154CCE37#1187253872015#/System/Logging##com.sap.tc.logging.FileLogInfoData.[getFileHeader(String fileName, int cntHeadLines)]#######Thread[AWT-EventQueue-0,6,main]##0#0#Warning##Java#SAP_LOGGING_UNEXPECTED##Unexcepted error occured on !#1#FileHeader parsing#
    #1.5#0002E3572B4500010000003201A8BD74000437CD154CD14D#1187253872015#/System/Logging##/System/Logging#######Thread[AWT-EventQueue-0,6,main]##0#0#Path##Java###Caught #1#java.lang.Exception: default.trc (The system cannot find the file specified)
         at com.sap.tc.logging.FileLogInfoData.getEOLLength(FileLogInfoData.java:432)
         at com.sap.tc.logging.FileLogInfoData.getFileHeaderLines(FileLogInfoData.java:348)
         at com.sap.tc.logging.FileLogInfoData.getFileHeaderLines(FileLogInfoData.java:334)
         at com.sap.tc.logging.FileLogInfoData.loadFileLogHeader(FileLogInfoData.java:320)
         at com.sap.tc.logging.FileLogInfoData.init(FileLogInfoData.java:260)
         at com.sap.tc.logging.FileLogInfoData.<init>(FileLogInfoData.java:119)
         at com.sap.tc.logging.FileLog.init(FileLog.java:373)
         at com.sap.tc.logging.FileLog.<init>(FileLog.java:282)
         at com.sap.tc.logging.FileLog.<init>(FileLog.java:246)
         at com.sap.tc.logging.PropertiesConfigurator.configure(PropertiesConfigurator.java:863)
         at com.sap.engine.core.configuration.impl.Logging.<init>(Logging.java:54)
         at com.sap.engine.core.configuration.bootstrap.ConfigurationManagerBootstrapImpl.init(ConfigurationManagerBootstrapImpl.java:176)
         at com.sap.engine.core.configuration.bootstrap.ConfigurationManagerBootstrapImpl.<init>(ConfigurationManagerBootstrapImpl.java:49)
         at com.sap.engine.configtool.visual.ConfigTool.loadClusterData(ConfigTool.java:99)
         at com.sap.engine.configtool.visual.ConfigTool.initScan(ConfigTool.java:87)
         at com.sap.engine.configtool.visual.ConfigTool.scanAction(ConfigTool.java:277)
         at com.sap.engine.configtool.visual.ConfigTool.actionPerformed(ConfigTool.java:209)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1786)
         at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1839)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:245)
         at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:231)
         at java.awt.Component.processMouseEvent(Component.java:5100)
         at java.awt.Component.processEvent(Component.java:4897)
         at java.awt.Container.processEvent(Container.java:1569)
         at java.awt.Component.dispatchEventImpl(Component.java:3615)
         at java.awt.Container.dispatchEventImpl(Container.java:1627)
         at java.awt.Component.dispatchEvent(Component.java:3477)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3483)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3198)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3128)
         at java.awt.Container.dispatchEventImpl(Container.java:1613)
         at java.awt.Window.dispatchEventImpl(Window.java:1606)
         at java.awt.Component.dispatchEvent(Component.java:3477)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:480)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
    #1.5#0002E3572B4500010000003301A8BD74000437CD154CD32F#1187253872015#/System/Configuration/Logging##com.sap.tc.logging.APILogger.Log[setFormatter()]#######Thread[AWT-EventQueue-0,6,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#formatter#Log#default.trc#com.sap.tc.logging.ListFormatter#com.sap.tc.logging.ListFormatter#
    #1.5#0002E3572B4500010000003401A8BD74000437CD154CD3C3#1187253872015#/System/Configuration/Logging##com.sap.tc.logging.APILogger.FileLog[setFormatter()]#######Thread[AWT-EventQueue-0,6,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#formatter#FileLog#default.trc#com.sap.tc.logging.ListFormatter#com.sap.tc.logging.ListFormatter#
    #1.5#0002E3572B4500010000003501A8BD74000437CD154CDFD3#1187253872015#/System/Configuration/Logging##com.sap.tc.logging.APILogger.Log[setFormatter()]#######Thread[AWT-EventQueue-0,6,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#formatter#Log#.
    system.log#com.sap.tc.logging.ListFormatter#com.sap.tc.logging.ListFormatter#
    #1.5#0002E3572B4500010000003601A8BD74000437CD154CE08C#1187253872015#/System/Configuration/Logging##com.sap.tc.logging.APILogger.FileLog[setFormatter()]#######Thread[AWT-EventQueue-0,6,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#formatter#FileLog#.
    system.log#com.sap.tc.logging.ListFormatter#com.sap.tc.logging.ListFormatter#
    #1.5#0002E3572B4500010000003701A8BD74000437CD154CE289#1187253872015#/System/Configuration/Logging##com.sap.tc.logging.APILogger.Log[setFormatter()]#######Thread[AWT-EventQueue-0,6,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#formatter#Log#default.trc#com.sap.tc.logging.ListFormatter#com.sap.tc.logging.ListFormatter#
    #1.5#0002E3572B4500010000003801A8BD74000437CD154CE31F#1187253872015#/System/Configuration/Logging##com.sap.tc.logging.APILogger.FileLog[setFormatter()]#######Thread[AWT-EventQueue-0,6,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#formatter#FileLog#default.trc#com.sap.tc.logging.ListFormatter#com.sap.tc.logging.ListFormatter#
    #1.5#0002E3572B4500010000003901A8BD74000437CD154CE5BD#1187253872015#/System/Configuration/Logging##com.sap.tc.logging.APILogger.Log[setFormatter()]#######Thread[AWT-EventQueue-0,6,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#formatter#Log#sqltrace.xml#com.sap.sql.trace.SQLTraceXMLFormatter#com.sap.sql.trace.SQLTraceXMLFormatter#
    #1.5#0002E3572B4500010000003A01A8BD74000437CD154CE661#1187253872015#/System/Configuration/Logging##com.sap.tc.logging.APILogger.FileLog[setFormatter()]#######Thread[AWT-EventQueue-0,6,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#formatter#FileLog#sqltrace.xml#com.sap.sql.trace.SQLTraceXMLFormatter#com.sap.sql.trace.SQLTraceXMLFormatter#
    #1.5#0002E3572B4500010000003B01A8BD74000437CD154CE723#1187253872015#/System/Logging##com.sap.tc.logging.APILogger.FileLog[setFormatter()]#######Thread[AWT-EventQueue-0,6,main]##0#0#Warning##Java#SAP_LOGGING_FORMATTER_ERROR##Attempting to change a formatter on active log ! The reset() method must be called first!#1#.
    system.log#
    #1.5#0002E3572B4500010000003C01A8BD74000437CD154CE7A6#1187253872015#/System/Configuration/Logging##com.sap.tc.logging.APILogger.FileLog[setFormatter()]#######Thread[AWT-EventQueue-0,6,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#formatter#FileLog#.
    system.log#com.sap.tc.logging.ListFormatter#com.sap.tc.logging.ListFormatter#
    #1.5#0002E3572B4500010000003D01A8BD74000437CD154CF331#1187253872031#/System/Server##com.sap.engine.core.configuration#######Thread[AWT-EventQueue-0,6,main]##0#0#Info#1#com.sap.engine.core.configuration#Plain###ConfigurationManager: found jar for secure store E:
    usr
    sap
    MYP
    SYS
    global
    security
    lib
    tools
    iaik_jce_export.jar#
    #1.5#0002E3572B4500010000003E01A8BD74000437CD154CF3DD#1187253872031#/System/Server##com.sap.engine.core.configuration#######Thread[AWT-EventQueue-0,6,main]##0#0#Info#1#com.sap.engine.core.configuration#Plain###ConfigurationManager: found jar for secure store E:
    usr
    sap
    MYP
    SYS
    global
    security
    lib
    tools
    iaik_jsse.jar#
    #1.5#0002E3572B4500010000003F01A8BD74000437CD154CF852#1187253872031#/System/Server##com.sap.engine.core.configuration#######Thread[AWT-EventQueue-0,6,main]##0#0#Info#1#com.sap.engine.core.configuration#Plain###ConfigurationManager: found jar for secure store E:
    usr
    sap
    MYP
    SYS
    global
    security
    lib
    tools
    iaik_smime.jar#
    #1.5#0002E3572B4500010000004001A8BD74000437CD154CF8D7#1187253872031#/System/Server##com.sap.engine.core.configuration#######Thread[AWT-EventQueue-0,6,main]##0#0#Info#1#com.sap.engine.core.configuration#Plain###ConfigurationManager: found jar for secure store E:
    usr
    sap
    MYP
    SYS
    global
    security
    lib
    tools
    iaik_ssl.jar#
    #1.5#0002E3572B4500010000004101A8BD74000437CD154CF957#1187253872031#/System/Server##com.sap.engine.core.configuration#######Thread[AWT-EventQueue-0,6,main]##0#0#Info#1#com.sap.engine.core.configuration#Plain###ConfigurationManager: found jar for secure store E:
    usr
    sap
    MYP
    SYS
    global
    security
    lib
    tools
    w3c_http.jar#
    #1.5#0002E3572B4500010000004201A8BD74000437CD154D06D3#1187253872031#/System/Server##com.sap.engine.core.configuration#######Thread[AWT-EventQueue-0,6,main]##0#0#Info#1#com.sap.engine.core.configuration#Plain###OpenSQLDataSource successfully created with secure store.#
    #1.5#0002E3572B4500010000004301A8BD74000437CD155AFC70#1187253872953#/System/Configuration/Logging##com.sap.tc.logging.APILogger.LogController[setResourceBundleName(String resourceBundleName)]#######Thread[AWT-EventQueue-0,6,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#resource bundle name#LogController#/System/Database/sql/jdbc#com.sap.sql.log.OpenSQLResourceBundle#com.sap.sql.log.OpenSQLResourceBundle#
    #1.5#0002E3572B4500010000004401A8BD74000437CD155AFE5B#1187253872953#/System/Database/sql/jdbc##com.sap.sql.jdbc.NativeConnectionFactory#######Thread[AWT-EventQueue-0,6,main]##0#0#Error#1#com.sap.sql.jdbc.NativeConnectionFactory#Java#com.sap.sql_0002#com.sap.sql.log.OpenSQLResourceBundle#SQL error occurred on connection : code={0,number,integer}, state="", message="".#5#17002#<null>#Io exception: The Network Adapter could not establish the connection#jdbc:oracle:thin:@infpw01621:1527:UX1#<null>#
    #1.5#0002E3572B4500010000004501A8BD74000437CD155B9932#1187253872984#/System/Logging##com.sap.tc.logging.FileLogInfoData.[getFileHeader(String fileName, int cntHeadLines)]#######Thread[AWT-EventQueue-0,6,main]##0#0#Warning##Java#SAP_LOGGING_UNEXPECTED##Unexcepted error occured on !#1#FileHeader parsing#
    #1.5#0002E3572B4500010000004601A8BD74000437CD155B9C3B#1187253872984#/System/Logging##/System/Logging#######Thread[AWT-EventQueue-0,6,main]##0#0#Path##Java###Caught #1#java.lang.Exception: sqltrace.xml (The system cannot find the file specified)
         at com.sap.tc.logging.FileLogInfoData.getEOLLength(FileLogInfoData.java:432)
         at com.sap.tc.logging.FileLogInfoData.getFileHeaderLines(FileLogInfoData.java:348)
         at com.sap.tc.logging.FileLogInfoData.getFileHeaderLines(FileLogInfoData.java:334)
         at com.sap.tc.logging.FileLogInfoData.loadFileLogHeader(FileLogInfoData.java:320)
         at com.sap.tc.logging.FileLogInfoData.init(FileLogInfoData.java:260)
         at com.sap.tc.logging.FileLogInfoData.<init>(FileLogInfoData.java:119)
         at com.sap.tc.logging.FileLog.init(FileLog.java:373)
         at com.sap.tc.logging.FileLog.<init>(FileLog.java:282)
         at com.sap.tc.logging.FileLog.<init>(FileLog.java:246)
         at com.sap.tc.logging.PropertiesConfigurator.configure(PropertiesConfigurator.java:863)
         at com.sap.engine.core.configuration.impl.Logging.<init>(Logging.java:54)
         at com.sap.engine.core.configuration.bootstrap.ConfigurationManagerBootstrapImpl.init(ConfigurationManagerBootstrapImpl.java:176)
         at com.sap.engine.core.configuration.bootstrap.ConfigurationManagerBootstrapImpl.<init>(ConfigurationManagerBootstrapImpl.java:49)
         at com.sap.engine.configtool.visual.ConfigTool.loadClusterData(ConfigTool.java:121)
         at com.sap.engine.configtool.visual.ConfigTool.initScan(ConfigTool.java:87)
         at com.sap.engine.configtool.visual.ConfigTool.scanAction(ConfigTool.java:277)
         at com.sap.engine.configtool.visual.ConfigTool.actionPerformed(ConfigTool.java:209)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1786)
         at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1839)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:245)
         at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:231)
         at java.awt.Component.processMouseEvent(Component.java:5100)
         at java.awt.Component.processEvent(Component.java:4897)
         at java.awt.Container.processEvent(Container.java:1569)
         at java.awt.Component.dispatchEventImpl(Component.java:3615)
         at java.awt.Container.dispatchEventImpl(Container.java:1627)
         at java.awt.Component.dispatchEvent(Component.java:3477)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3483)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3198)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3128)
         at java.awt.Container.dispatchEventImpl(Container.java:1613)
         at java.awt.Window.dispatchEventImpl(Window.java:1606)
         at java.awt.Component.dispatchEvent(Component.java:3477)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:480)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
    #1.5#0002E3572B4500010000004701A8BD74000437CD155BA2E6#1187253872984#/System/Configuration/Logging##com.sap.tc.logging.APILogger.Log[setFormatter()]#######Thread[AWT-EventQueue-0,6,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#formatter#Log#sqltrace.xml#com.sap.tc.logging.ListFormatter#com.sap.sql.trace.SQLTraceXMLFormatter#
    #1.5#0002E3572B4500010000004801A8BD74000437CD155BA379#1187253872984#/System/Configuration/Logging##com.sap.tc.logging.APILogger.FileLog[setFormatter()]#######Thread[AWT-EventQueue-0,6,main]##0#0#Info##Java#TC_LOGGING_CONFIGURATION_IS_CHANGED[C0000A305666000000000000018FB1F70003D67C779CD2B8]##The for the has been changed from to )!#5#formatter#FileLog#sqltrace.xml#com.sap.tc.logging.ListFormatter#com.sap.sql.trace.SQLTraceXMLFormatter#
    #1.5#0002E3572B4500010000004901A8BD74000437CD155BA541#1187253872984#/System/Logging##com.sap.tc.logging.FileLogInfoData.[getFileHeader(String fileName, int cntHeadLines)]#######Thread[AWT-EventQueue-0,6,main]##0#0#Warning##Java#SAP_LOGGING_UNEXPECTED##Unexcepted error occured on !#1#FileHeader parsing#
    #1.5#0002E3572B4500010000004A01A8BD74000437CD155BA82F#1187253872984#/System/Logging##/System/Logging#######Thread[AWT-EventQueue-0,6,main]##0#0#Path##Java###Caught #1#java.lang.Exception: default.trc (The system cannot find the file specified)
         at com.sap.tc.logging.FileLogInfoData.getEOLLength(FileLogInfoData.java:432)
         at com.sap.tc.logging.FileLogInfoData.getFileHeaderLines(FileLogInfoData.java:348)
         at com.sap.tc.logging.FileLogInfoData.getFileHeaderLines(FileLogInfoData.java:334)
         at com.sap.tc.logging.FileLogInfoData.loadFileLogHeader(FileLogInfoData.java:320)
         at com.sap.tc.logging.FileLogInfoData.init(FileLogInfoData.java:260)
         at com.sap.tc.logging.FileLogInfoData.<init>(FileLogInfoData.java:119)
         at com.sap.tc.logging.FileLog.init(FileLog.java:373)
         at com.sap.tc.logging.FileLog.<init>(FileLog.java:282)
         at com.sap.tc.logging.FileLog.<init>(FileLog.java:246)
         at com.sap.tc.logging.PropertiesConfigurator.configure(PropertiesConfigurator.java:863)
         at com.sap.engine.core.configuration.impl.Logging.<init>(Logging.java:54)
         at com.sap.engine.core.configuration.bootstrap.ConfigurationManagerBootstrapImpl.ini

    <u><b>dev_jcontrol</b></u>
    trc file: "E:\usr\sap\MYP\JC00\work\dev_jcontrol", trc level: 1, release: "640"
    node name   : jcontrol
    pid         : 364
    system name : MYP
    system nr.  : 00
    started at  : Thu Aug 16 21:28:07 2007
    arguments   :
        arg[00] : E:\usr\sap\MYP\JC00\j2ee\os_libs\jcontrol.exe
        arg[01] : pf=E:\usr\sap\MYP\SYS\profile\MYP_JC00_infpw01621
    [Thr 3752] Thu Aug 16 21:28:07 2007
    [Thr 3752] *** ERROR => Invalid property value [box.number/MYPJC00infpw01621] [jstartxx.c   789]
    [Thr 3752] *** ERROR => Invalid property value [en.host/sapux1] [jstartxx.c   789]
    [Thr 3752] *** ERROR => Invalid property value [en.port/3201] [jstartxx.c   789]
    [Thr 3752] *** ERROR => Invalid property value [system.id/0] [jstartxx.c   789]
    JStartupReadInstanceProperties: read instance properties [E:\usr\sap\MYP\JC00\j2ee\cluster\instance.properties;E:\usr\sap\MYP\JC00\SDM\program\config\sdm_jstartup.properties]
    -> ms host    : infpw01621
    -> ms port    : 3601
    -> OS libs    : E:\usr\sap\MYP\JC00\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : E:\usr\sap\MYP\JC00\j2ee\cluster\instance.properties
    -> files [01] : E:\usr\sap\MYP\JC00\SDM\program\config\sdm_jstartup.properties
    Instance properties
    -> ms host    : infpw01621
    -> ms port    : 3601
    -> os libs    : E:\usr\sap\MYP\JC00\j2ee\os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : E:\usr\sap\MYP\JC00\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID6880900  : E:\usr\sap\MYP\JC00\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID6880950  : E:\usr\sap\MYP\JC00\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID6880900            : E:\usr\sap\MYP\JC00\j2ee\cluster\instance.properties
    -> [01] ID6880950            : E:\usr\sap\MYP\JC00\j2ee\cluster\instance.properties
    -> [02] sdm                  : E:\usr\sap\MYP\JC00\SDM\program\config\sdm_jstartup.properties
    [Thr 3752] JControlExecuteBootstrap: execute bootstrap process [bootstrap]
    [Thr 3752] [Node: bootstrap] java home is set by profile parameter
         Java Home: C:\j2sdk1.4.2_09
    JStartupIReadSection: read node properties [bootstrap]
    -> node name       : bootstrap
    -> node type       : bootstrap
    -> java path       : C:\j2sdk1.4.2_09
    -> java parameters : -Djco.jarm=1 -Djco.jarm=1 -Djco.jarm=1
    -> java vm version : 1.4.2_09-b05
    -> java vm vendor  : Java HotSpot(TM) Server VM (Sun Microsystems Inc.)
    -> java vm type    : server
    -> java vm cpu     : x86
    -> heap size       : 128M
    -> root path       : E:\usr\sap\MYP\JC00\j2ee\cluster
    -> class path      : .\bootstrap\launcher.jar
    -> OS libs path    : E:\usr\sap\MYP\JC00\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\MYP\JC00\j2ee\os_libs\jstartup.jar
    -> parameters      : com.sap.engine.bootstrap.Bootstrap ./bootstrap ID0068809
    -> debuggable      : yes
    -> debug mode      : no
    -> debug port      : 60000
    -> shutdown timeout: 120000
    JStartupStartJLaunch: program = E:\usr\sap\MYP\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[00] = E:\usr\sap\MYP\JC00/j2ee/os_libs/jlaunch.exe
    -> arg[01] = pf=E:\usr\sap\MYP\SYS\profile\MYP_JC00_infpw01621
    -> arg[02] = -DSAPINFO=MYP_00_bootstrap
    -> arg[03] = -file=E:\usr\sap\MYP\JC00\j2ee\cluster\instance.properties
    -> arg[04] = -nodeName=bootstrap
    -> arg[05] = -nodeId=-1
    -> arg[06] = -syncSem=JSTARTUP_WAIT_ON_364
    -> arg[07] = -jvmOutFile=E:\usr\sap\MYP\JC00\work\jvm_bootstrap.out
    -> arg[08] = -stdOutFile=E:\usr\sap\MYP\JC00\work\std_bootstrap.out
    -> arg[09] = -locOutFile=E:\usr\sap\MYP\JC00\work\dev_bootstrap
    -> arg[10] = -mode=BOOTSTRAP
    -> arg[11] = pf=E:\usr\sap\MYP\SYS\profile\MYP_JC00_infpw01621
    -> lib path = PATH=C:\j2sdk1.4.2_09\jre\bin\server;C:\j2sdk1.4.2_09\jre\bin;E:\oracle\UX1\102;E:\oracle\UX1\102\bin;E:\oracle\UX1\102\jre\1.4.2\bin\client;E:\oracle\UX1\102\jre\1.4.2\bin;C:\Program Files\CA\SC\CAWIN\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\PROGRA~1\CA\SC\CAM\bin;C:\Program Files\CA\DSM\bin;D:\SAP_Store\6013105;E:\oracle\UX1\102\OPatch;C:\Program Files\Java\j2re1.4.2_09\bin;E:\oracle\UX1\102\OPatch;C:\Program Files\Java\j2re1.4.2_09\lib;E:\usr\sap\MYP\SYS\exe\run;C:\j2sdk1.4.2_09;E:\oracle\UX1\102\OPatch;E:\oracle\UX1\102;E:\usr\sap\MYP\SCS01\exe;E:\usr\sap\MYP\JC00\exe;E:\usr\sap\MYP\SYS\exe\run;D:\SAP_Store\6013105;E:\oracle\UX1\102\OPatch;C:\Program Files\Java\j2re1.4.2_09\bin;E:\oracle\UX1\102\bin;E:\oracle\UX1\102\OPatch;C:\Program Files\Java\j2re1.4.2_09\lib;E:\usr\sap\MYP\SYS\exe\run;C:\j2sdk1.4.2_09;E:\oracle\UX1\102\OPatch
    -> exe path = PATH=C:\j2sdk1.4.2_09\bin;E:\usr\sap\MYP\JC00\j2ee\os_libs;E:\oracle\UX1\102;E:\oracle\UX1\102\bin;E:\oracle\UX1\102\jre\1.4.2\bin\client;E:\oracle\UX1\102\jre\1.4.2\bin;C:\Program Files\CA\SC\CAWIN\;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\PROGRA~1\CA\SC\CAM\bin;C:\Program Files\CA\DSM\bin;D:\SAP_Store\6013105;E:\oracle\UX1\102\OPatch;C:\Program Files\Java\j2re1.4.2_09\bin;E:\oracle\UX1\102\OPatch;C:\Program Files\Java\j2re1.4.2_09\lib;E:\usr\sap\MYP\SYS\exe\run;C:\j2sdk1.4.2_09;E:\oracle\UX1\102\OPatch;E:\oracle\UX1\102;E:\usr\sap\MYP\SCS01\exe;E:\usr\sap\MYP\JC00\exe;E:\usr\sap\MYP\SYS\exe\run;D:\SAP_Store\6013105;E:\oracle\UX1\102\OPatch;C:\Program Files\Java\j2re1.4.2_09\bin;E:\oracle\UX1\102\bin;E:\oracle\UX1\102\OPatch;C:\Program Files\Java\j2re1.4.2_09\lib;E:\usr\sap\MYP\SYS\exe\run;C:\j2sdk1.4.2_09;E:\oracle\UX1\102\OPatch
    [Thr 3752] Thu Aug 16 21:28:14 2007
    [Thr 3752] *** ERROR => invalid return code of process [bootstrap] (exitcode=66) [jstartxx.c   1433]
    [Thr 3752] JControlExecuteBootstrap: error executing bootstrap node [bootstrap] (rc=66)
    [Thr 3752] JControlCloseProgram: started (exitcode = 66)
    [Thr 3752] JControlCloseProgram: good bye... (exitcode=66)
    kindly help
    regards
    shoeb

  • System.out.println in SAP J2EE Engine - Config Tool

    Hi everybody.
    I was having problems with viewing my System.out.println sentences in my NetWeaver's J2EE applications.
    It's supposed that I can't see the files because I have to assing a log archive for System.out controller in SAP J2EE Engine - Config Tool.
    The problem is that I can't find the place to modify the property of that controller!
    I've edited the log-configuration.xml file, but when I restart the server to reload the new configuration, the files I've added to this file, disapear.
    Any idea about this???
    Any answer is well accpeted.
    Thanks,
    Alberto.

    Nobody knows something about this System.out problem??
    Thanks!

  • Problem with config sync between two CSM-S modules

    Hi everybody,
    I have a problem with config sync between two CSM-S modules.
    I am using CSM-S software version 2.1(8).
    The acitve module is used in a 6509 with WS-SUP720-BASE supervisor running software version 12.2(18)SXF12a.
    The standby module is used in a 6509-V with VS-S720-10G supervisor (no VSS setup) running software version 12.2(33)SXI3.
    Failover seems to work fine:
    switch-active#sh modu csm 2 ft                                      
    FT group 1, vlan 398
    This box is active
    Configuration is out-of-sync
    priority 150, heartbeat 3, failover 40, preemption is on
    switch-standby# sh modu csm 2 ft
    FT group 1, vlan 398
    This box is in standby state
    Configuration is out-of-sync
    priority 80, heartbeat 3, failover 40, preemption is on
    The command (on active side) "hw-module contentSwitchingModule 2 standby config-sync" leads to following result:
    switch-active:
    2010-04-14T16:21:45+02:00 srz16-1b.net.dsh.at/srz16-1b.net.dsh.at 56042: Apr 14 16:21:44.223: %CSM_SLB-6-REDUNDANCY_INFO: Module 2 FT info: Active: Bulk sync started
    2010-04-14T16:21:45+02:00 srz16-1b.net.dsh.at/srz16-1b.net.dsh.at 56043: Apr 14 16:21:44.251: %CSM_SLB-6-REDUNDANCY_INFO: Module 2 FT info: Active: Sending configurations to Standby CSM, this may take several minutes!
    2010-04-14T16:21:46+02:00 srz16-1b.net.dsh.at/srz16-1b.net.dsh.at 56044: Apr 14 16:21:45.995: %CSM_SLB-6-REDUNDANCY_INFO: Module 2 FT info: Active: Sending configuration to Standby CSM
    2010-04-14T16:21:51+02:00 srz16-1b.net.dsh.at/srz16-1b.net.dsh.at 56045: Apr 14 16:21:50.831: %CSM_SLB-6-REDUNDANCY_INFO: Module 2 FT info: Active: Sending configuration to Standby CSM
    2010-04-14T16:21:57+02:00 srz16-1b.net.dsh.at/srz16-1b.net.dsh.at 56046: Apr 14 16:21:56.151: %CSM_SLB-6-REDUNDANCY_INFO: Module 2 FT info: Active: Sending configuration to Standby CSM
    2010-04-14T16:22:59+02:00 srz16-1b.net.dsh.at/srz16-1b.net.dsh.at 56047: Apr 14 16:22:58.791: %CSM_SLB-3-REDUNDANCY: Module 2 FT error: Active: Manual bulk sync timed out
    2010-04-14T16:22:59+02:00 srz16-1b.net.dsh.at/srz16-1b.net.dsh.at 56048: Apr 14 16:22:58.803: %CSM_SLB-3-REDUNDANCY: Module 2 FT error:
    2010-04-14T16:22:59+02:00 srz16-1b.net.dsh.at/srz16-1b.net.dsh.at 56049:  FT CONFIG SYNC: Failed config sync entity send
    switch-standby:
    2010-04-14T16:21:45+02:00 srz31-5a.net.dsh.at/srz31-5a.net.dsh.at 2475: Apr 14 16:21:44.232: %CSM_SLB-6-REDUNDANCY_INFO: Module 2 FT info: Standby: Bulk sync started
    2010-04-14T16:21:45+02:00 srz31-5a.net.dsh.at/srz31-5a.net.dsh.at 2476:
    2010-04-14T16:21:45+02:00 srz31-5a.net.dsh.at/srz31-5a.net.dsh.at 2477: Apr 14 16:21:44.240: %CSM_SLB-6-REDUNDANCY_INFO: Module 2 FT info: STANDBY:Configuration is being received, This may take several minutes!
    2010-04-14T16:21:49+02:00 srz31-5a.net.dsh.at/srz31-5a.net.dsh.at 2478: Apr 14 16:21:48.824: %CSM_SLB-6-REDUNDANCY_INFO: Module 2 FT info: Standby: Receiving configuration from Active CSM
    2010-04-14T16:21:54+02:00 srz31-5a.net.dsh.at/srz31-5a.net.dsh.at 2479: Apr 14 16:21:53.964: %CSM_SLB-6-REDUNDANCY_INFO: Module 2 FT info: Standby: Receiving configuration from Active CSM
    2010-04-14T16:21:59+02:00 srz31-5a.net.dsh.at/srz31-5a.net.dsh.at 2480: Apr 14 16:21:58.852: %CSM_SLB-6-REDUNDANCY_INFO: Module 2 FT info: Standby: Started clearing configuration
    2010-04-14T16:21:59+02:00 srz31-5a.net.dsh.at/srz31-5a.net.dsh.at 2481: Apr 14 16:21:59.400: %CSM_SLB-4-REDUNDANCY_WARN: Module 2 FT warning: Standby: Config Sync does not save running-config to startup-config
    2010-04-14T16:22:00+02:00 srz31-5a.net.dsh.at/srz31-5a.net.dsh.at 2482: Apr 14 16:21:59.400: %CSM_SLB-6-REDUNDANCY_INFO: Module 2 FT info: Standby: Previous configuration are being deleted from supervisor
    The last log message on standby device seems to be correct - there is no CSM configuration after the attempted config sync.
    Our configuration includes about 3500 lines and it is really uncomfortable to keep in sync manually.
    Maybe someone has the same problem?
    kind regards,
    Christoph

    Hi Christoph,
    I am running into the exact same issue. Upon further investigation I've discovered that this is a known bug, CSCtd09117.  You can read more about it here: http://tools.cisco.com/Support/BugToolKit/search/getBugDetails.do?method=fetchBugDetails&bugId=CSCtd09117 .   Apparently this is fixed in ver 12.2(32.8.11)SX323 .
    I haven't had a chance to upgrade yet, so I can't verify the fix, but if it works for you please let me know.
    Regards,
    Brandon

Maybe you are looking for

  • How to override the create method invoked by a create form?

    Hello everyone, I'm using ADF Faces and have the next question: How can I override the create method which is invoked by a create form to preset an attribute in the new row (the preset value is not fixed, I have to send it to the method as a paramete

  • Retrieve image out of Photoshop file

    Can anyone help me! I need to pull an image out of a photoshop file I made, I added the image in (jpeg) and have saved the file but did not save the original jpeg that i used, now I cant work out how to get the image out of photoshop so I can use it

  • BDX3200KB 3D Blu-ray Player not compatible with some 3D movies

    I have a BDX3200 3D blu-ray player that is connect to a Toshiba 47VL863 3D TV. I have noticed recently that a number of 3D movies do not play correctly. The worst affected ones seem to be "The Hobbit" and "A Turtles Tale", where the 3D movement flick

  • Mapping output parameters

    how can we pass values as output paramters what ever I assign it says it is restricted and cannot be done. What values can we pass as output parameters. for a mapping output parameters. Thanks in advance.

  • Different add- ons in one system

    Hello Collegues, we have installed Baseline Add- on in ECC 5.0 system and going to install the next one - Automative. We are not sure that these two add- ons will work properly together... - Can you tell pls how works add- ons inside of system? - Is