Server crash due to lot of debug statements in log file during deployment

I am facing problem while deployment of my application
I am using log4j api and its in debug mode as following
log4j.rootCategory=DEBUG, A2
log4j.appender.A2=org.apache.log4j.DailyRollingFileAppender
log4j.appender.A2.file=D:/logs/directory.log
log4j.appender.A2.datePattern='.'yyyy-MM-dd'.txt'
log4j.appender.A2.append=true
log4j.appender.A2.layout=org.apache.log4j.PatternLayout
log4j.appender.A2.layout.ConversionPattern=%d %-5p [%t] - %m%n
I am getting lot of debug statements when i am deploying the application and result is server crash
can anyone help me?
some of the debug statements are :
2005-09-16 09:36:19,000 DEBUG [scheduler-1] - ignorableWhitespace()
2005-09-16 09:36:19,000 DEBUG [scheduler-1] - ignorableWhitespace(
2005-09-16 09:36:19,000 DEBUG [scheduler-1] - ignorableWhitespace( )
2005-09-16 09:36:19,000 DEBUG [scheduler-1] - endElement(,field,field)
2005-09-16 09:36:19,000 DEBUG [scheduler-1] - match='form-validation/formset/form/field'
2005-09-16 09:36:19,000 DEBUG [scheduler-1] - bodyText=''
2005-09-16 09:36:19,000 DEBUG [scheduler-1] - Fire body() for ObjectCreateRule[className=org.apache.commons.validator.Field, attributeName=className]
2005-09-16 09:36:19,000 DEBUG [scheduler-1] - Fire body() for SetPropertiesRule[]
2005-09-16 09:36:19,000 DEBUG [scheduler-1] - Fire body() for SetNextRule[methodName=addField, paramType=org.apache.commons.validator.Field]
2005-09-16 09:36:19,000 DEBUG [scheduler-1] - Popping body text ''
2005-09-16 09:36:19,000 DEBUG [scheduler-1] - Fire end() for SetNextRule[methodName=addField, paramType=org.apache.commons.validator.Field]
2005-09-16 09:36:19,000 DEBUG [scheduler-1] - [SetNextRule]{form-validation/formset/form/field} Call org.apache.commons.validator.Form.addField(          key= null
          property= pct_other_project_3_last_yr
          indexedProperty= null
          indexedListProperty= null
          depends= required
          page= 0
          fieldOrder= 0
          Vars:
2005-09-16 09:36:19,000 DEBUG [scheduler-1] - Matching name=addField on class org.apache.commons.validator.Form
2005-09-16 09:36:19,000 DEBUG [scheduler-1] - Found straight match: public void org.apache.commons.validator.Form.addField(org.apache.commons.validator.Field)
2005-09-16 09:36:19,000 DEBUG [scheduler-1] - isPublic:true
2005-09-16 09:36:19,000 DEBUG [scheduler-1] - Fire end() for SetPropertiesRule[]
2005-09-16 09:36:19,000 DEBUG [scheduler-1] - Fire end() for ObjectCreateRule[className=org.apache.commons.validator.Field, attributeName=className]
2005-09-16 09:36:19,000 DEBUG [scheduler-1] - [ObjectCreateRule]{form-validation/formset/form/field} Pop org.apache.commons.validator.Field
2005-09-16 09:36:19,000 DEBUG [scheduler-1] - ignorableWhitespace()
2005-09-16 09:36:19,000 DEBUG [scheduler-1] - ignorableWhitespace(
2005-09-16 09:36:19,000 DEBUG [scheduler-1] - ignorableWhitespace()
2005-09-16 09:36:19,000 DEBUG [scheduler-1] - ignorableWhitespace(
2005-09-16 09:36:19,000 DEBUG [scheduler-1] - ignorableWhitespace( )
2005-09-16 09:36:19,000 DEBUG [scheduler-1] - startElement(,field,field)
2005-09-16 09:36:19,000 DEBUG [scheduler-1] - Pushing body text ''
2005-09-16 09:36:19,000 DEBUG [scheduler-1] - New match='form-validation/formset/form/field'
2005-09-16 09:36:19,000 DEBUG [scheduler-1] - Fire begin() for ObjectCreateRule[className=org.apache.commons.validator.Field, attributeName=className]
2005-09-16 09:36:19,000 DEBUG [scheduler-1] - [ObjectCreateRule]{form-validation/formset/form/field}New org.apache.commons.validator.Field
2005-09-16 09:36:19,000 DEBUG [scheduler-1] - Fire begin() for SetPropertiesRule[]
2005-09-16 09:36:19,000 DEBUG [scheduler-1] - [SetPropertiesRule]{form-validation/formset/form/field} Setting property 'property' to 'pct_se_prev_yr_2'
2005-09-16 09:36:19,000 DEBUG [scheduler-1] - [SetPropertiesRule]{form-validation/formset/form/field} Setting property 'depends' to 'required'
2005-09-16 09:36:19,000 DEBUG [scheduler-1] - [SetPropertiesRule]{form-validation/formset/form/field} Set org.apache.commons.validator.Field properties
2005-09-16 09:36:19,000 DEBUG [scheduler-1] - BeanUtils.populate(          key= null
          property= null
          indexedProperty= null
          indexedListProperty= null
          depends= null
          page= 0
          fieldOrder= 0
          Vars:
, {property=pct_se_prev_yr_2, depends=required})
2005-09-16 09:36:19,000 DEBUG [scheduler-1] - setProperty(          key= null
          property= null
          indexedProperty= null
          indexedListProperty= null
          depends= null
          page= 0
          fieldOrder= 0
          Vars:
, property, pct_se_prev_yr_2)
2005-09-16 09:36:19,000 DEBUG [scheduler-1] - Convert string 'pct_se_prev_yr_2' to class 'java.lang.String'
2005-09-16 09:36:19,000 DEBUG [scheduler-1] - Using converter org.apache.commons.beanutils.converters.StringConverter@1d86a73
2005-09-16 09:36:19,000 DEBUG [scheduler-1] - setProperty(          key= null
          property= pct_se_prev_yr_2
          indexedProperty= null
          indexedListProperty= null
          depends= null
          page= 0
          fieldOrder= 0
          Vars:
, depends, required)
2005-09-16 09:36:19,000 DEBUG [scheduler-1] - Convert string 'required' to class 'java.lang.String'
2005-09-16 09:36:19,000 DEBUG [scheduler-1] - Using converter org.apache.commons.beanutils.converters.StringConverter@1d86a73
2005-09-16 09:36:19,000 DEBUG [scheduler-1] - Fire begin() for SetNextRule[methodName=addField, paramType=org.apache.commons.validator.Field]

The only suggestions I have off the top of my head are:
* Ensure (1) the host system has at least 2GB (file store size) of free physical memory in addition to the memory used by current processes, and (2) the host system is not rebooted between each WebLogic restart. If you make sure of these two items, then the operating system will implicitly cache the store's file contents in memory even between boots -- when WebLogic subsequently boots the file store, the O/S should serve the file contents up much more quickly.
* Consider moving to a JDBC store. JDBC store runtime performance is lower, but since you have a typically only have a small amount of records to recover, boot performance should be higher in this case.
* Not that it helps your particular case, but it happens that we have boot performance enhancements in process for a future release (hopefully a near future release).
Tom

Similar Messages

  • Oracle Application Server crashes due to Socket Write Error

    I am using Oracle Application Server 9.0.3. Simple JSP application is running on it. We are using the application server connection pooling functionality. Following errors are occuring on it frequently and it causes the application server crash.
    First application response gets slow and eventually application server gets lock and it wont respond and we have to restart the application server. Our application is in production mode and we need to solve this issue immediately.
    ----------------Error1---------------------
    com.evermind.server.http.HttpIOException: Connection aborted by peer: socket write error
         at com.evermind.server.http.EvermindServletOutputStream.write(EvermindServletOutputStream.java:249)
         at com.evermind.server.http.EvermindJSPWriter.writeOut(EvermindJSPWriter.java:424)
         at com.evermind.server.http.EvermindJSPWriter.jspflush(EvermindJSPWriter.java:341)
         at com.evermind.server.http.EvermindJSPWriter.write(EvermindJSPWriter.java:490)
         at com.evermind.server.http.EvermindJSPWriter.write(EvermindJSPWriter.java:415)
         at schedule.schedulehome._jspService(_schedulehome.java:542)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
         at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:283)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:560)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:148)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:72)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:479)
    ------------Error2---------------------
    com.evermind.server.http.HttpIOException: Connection aborted by peer: socket write error
         at com.evermind.server.http.EvermindServletOutputStream.write(EvermindServletOutputStream.java:249)
         at com.evermind.server.http.EvermindJSPWriter.writeOut(EvermindJSPWriter.java:424)
         at com.evermind.server.http.EvermindJSPWriter.jspflush(EvermindJSPWriter.java:341)
         at com.evermind.server.http.EvermindJSPWriter.write(EvermindJSPWriter.java:490)
         at com.evermind.server.http.EvermindJSPWriter.write(EvermindJSPWriter.java:415)
         at schedule.schedulehome._jspService(_schedulehome.java:557)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
         at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:283)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:560)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:148)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:72)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:479)

    I am using Oracle Application Server 9.0.3. Simple JSP application is running on it. We are using the application server connection pooling functionality. Following errors are occuring on it frequently and it causes the application server crash.
    First application response gets slow and eventually application server gets lock and it wont respond and we have to restart the application server. Our application is in production mode and we need to solve this issue immediately.
    ----------------Error1---------------------
    com.evermind.server.http.HttpIOException: Connection aborted by peer: socket write error
         at com.evermind.server.http.EvermindServletOutputStream.write(EvermindServletOutputStream.java:249)
         at com.evermind.server.http.EvermindJSPWriter.writeOut(EvermindJSPWriter.java:424)
         at com.evermind.server.http.EvermindJSPWriter.jspflush(EvermindJSPWriter.java:341)
         at com.evermind.server.http.EvermindJSPWriter.write(EvermindJSPWriter.java:490)
         at com.evermind.server.http.EvermindJSPWriter.write(EvermindJSPWriter.java:415)
         at schedule.schedulehome._jspService(_schedulehome.java:542)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
         at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:283)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:560)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:148)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:72)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:479)
    ------------Error2---------------------
    com.evermind.server.http.HttpIOException: Connection aborted by peer: socket write error
         at com.evermind.server.http.EvermindServletOutputStream.write(EvermindServletOutputStream.java:249)
         at com.evermind.server.http.EvermindJSPWriter.writeOut(EvermindJSPWriter.java:424)
         at com.evermind.server.http.EvermindJSPWriter.jspflush(EvermindJSPWriter.java:341)
         at com.evermind.server.http.EvermindJSPWriter.write(EvermindJSPWriter.java:490)
         at com.evermind.server.http.EvermindJSPWriter.write(EvermindJSPWriter.java:415)
         at schedule.schedulehome._jspService(_schedulehome.java:557)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:317)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:465)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:379)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
         at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java:283)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:560)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:306)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:767)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:148)
         at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:72)
         at EDU.oswego.cs.dl.util.concurrent.PooledExecutor$Worker.run(PooledExecutor.java:803)
         at java.lang.Thread.run(Thread.java:479)

  • FDM-generated SQL statement in log file?

    Hello all, hopefully a simple question:
    When you perform an import using FDM, I know that behind the scenes a SQL SELECT statement is composed and executed against the database server. My question: is the actual SQL statement kept in a log somewhere (so that we can see it?) In our case it's an Oracle DB server and we're using the ERPI Adapter; not sure if that's relevant. We would like to grab that SQL statement and use it as a jumping-off point for some other things.
    Thanks in advance for anything you can offer.

    The SQL Statement is not written to the log for the adapter.  The only things that are logged are what show in the adapter log file if you enable loggin for the ERPi source adapter in the "Get Data" action.    

  • Debug info to log file

    G'day,
              I have jsp which I am attempting to write some debug info to the log
              using out.println(...) java statement.
              My question is how do I make it go to the weblogic log file as opposed
              to my html page ?
              Any help would be appreciated.
              Cheers
              Glenn Torepe
              

    Why can't you use ServletContext.log()? I've been using that all the
              time.
              John Salvo
              Nils Winkler wrote:
              >
              > That will not work. System.out.println will only go to the console
              > window, but not to the log file.
              >
              > You have to use the class weblogic.logging.LogOutputStream. AFAIK this
              > class is not documented, but you can use "javap" to get an overview.
              > Here's a quick example:
              >
              > ---
              > import weblogic.logging.LogOutputStream;
              >
              > // in some method
              > LogOutputStream los = new LogOutputStream("Test");
              >
              > los.error("Error in method");
              >
              > los.close();
              > ---
              >
              > This will log the text "Error in method" to the log file as an error,
              > "Test" is used as an additional identifier, like this:
              >
              > Fri Oct 06 12:17:38 EDT 2000:<E> <Test> Error in method
              >
              > Hope that helps,
              >
              > Nils
              >
              > On 9 Oct 2000 14:29:16 -0800, Dimitri Rakitine <[email protected]>
              > wrote:
              >
              > >Use System.out.println(...);
              > >
              > >Ian Grosvenor <[email protected]> wrote:
              > >> G'day,
              > >
              > >> I have jsp which I am attempting to write some debug info to the log
              > >> using out.println(...) java statement.
              > >
              > >> My question is how do I make it go to the weblogic log file as opposed
              > >> to my html page ?
              > >
              > >> Any help would be appreciated.
              > >
              > >> Cheers
              > >
              > >> Glenn Torepe
              > >
              > >Dimitri
              >
              > Nils Winkler
              > iXL, Inc.
              > [email protected]
              

  • Server started in RUNNING mode not showing in Startup Log File when MS Starts

    Dear all,
    When we start OSB Managed Server, server status is showing Running Status in Web logic console and it is also serving the requests. but in server Start up log file, it is not showing 'Server started in RUNNING mode' after it started.
    this behavior is only for 4 managed servers in cluster of 6 managed servers. other 2 managed servers are starting and showing the message correctly.
    please some body show some light on it as we need to fix this issue urgently.
    thanks in advance.
    pr

    Dear all,
    When we start OSB Managed Server, server status is showing Running Status in Web logic console and it is also serving the requests. but in server Start up log file, it is not showing 'Server started in RUNNING mode' after it started.
    this behavior is only for 4 managed servers in cluster of 6 managed servers. other 2 managed servers are starting and showing the message correctly.
    please some body show some light on it as we need to fix this issue urgently.
    thanks in advance.
    pr

  • Server crash due to SAP resource

    During the execution of a report of type "Resource Status Report" which helps in examining the Test connection of each resource configured, the server gets crashed.
    When we go through the logs, its was due to the SAP connection.
    We have 7 SAP resources configured. Each of the SAP resource's Test connection was succesful.
    These are the scenarios tested
    When we ran the report WITHOUT the SAP resources the server was not crashing.
    When we ran the report with ONLY SAP resources the server did not crash.
    Only when all the resources are put together and executed we have a huuuuge problem. Can any thow some ideas on this ??
    Thanks in advance.

    Hi,
    Did you resolve this issue? I have the same problem. I appreciate if you could please let me know what the problem was.
    Thanks

  • Jboss Server crashing due to memory  issues.

    The Jboss Server is crashing with some core dumps. We could see the following error messages :
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # SIGBUS (0xa) at pc=HEX, pid= [PID] , tid= [TID]
    # Java™ VM: Java HotSpot(TM) Server VM (1.5.0_XX mixed mode)
    # Problematic frame:
    # C [libc_psr.so.1+HEX] memset+0x88
    Since I guess this is to do with the memory size related to JVM , does increasing the –Xss param to 128K help us to resolve this issue ?? Any other ideas/solutions ??

    HI,
    Pls find the below links about javastack
    http://help.sap.com/saphelp_nw04/helpdata/en/14/80243b4a66ae0ce10000000a11402f/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/14/80243b4a66ae0ce10000000a11402f/frameset.htm
    pls find the below links for java stack trouble shooting.
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/jsts/(Kernel)OOM
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/jsts/commonissues__vmsettings
    Reward points if needful.
    Thanks,
    RamuV

  • Lot of w 12344 .mgr log files

    Hi all,
    we have 11.5.10.2 applications running on 11gr2 database.I see that there are lot of w<xxxxx>.mgr files generating and it is filling up the mount point space and due to this the concurrent manager is going down very frequently when ever mount point is full. Pleas suggest me.
    Thanks
    maverick

    Hi;
    we have 11.5.10.2 applications running on 11gr2 database.I see that there are lot of w<xxxxx>.mgr files generating and it is filling up the mount point space and due to this the concurrent manager is going down very frequently when ever mount point is full. Pleas suggest me.In addition to Hussein Sawwan, what echo $APPLCSF/$APPLLOG returns?
    - Standard manager log: w<XXXXXX>.mgr
    - Transaction manager log: t<XXXXXX>.mgr
    - Conflict Resolution manager log: c<XXXXXX>.mgr
    Where: <XXXXXX> is the concurrent process id of the manage
    Regard
    Helios

  • Server stopped due to start up failure

    hi!
    i have downloaded and installed j2ee sdk without any problems.
    however when i start the server it closes itself.
    at the end of the log file it says:
    " [#|2005-07-13T09:54:37.267+0300|SEVERE|sun-appserver-pe8.0.0_01|javax.enterprise.system.core|_ThreadID=10;|Server stopped due to Server startup failure.|#]"
    the whole log file is below. can anybody help?
    ps: i am a beginner.
    Starting Sun Java System Application Server Platform Edition 8.0.0_01 (build b08-fcs) ...
    [#|2005-07-13T09:52:32.438+0300|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.core|_ThreadID=10;|CORE5076: Using [Java HotSpot(TM) Client VM, Version 1.4.2_04] from [Sun Microsystems Inc.]|#]
    [#|2005-07-13T09:52:36.413+0300|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.tools.admin|_ThreadID=10;|ADM0020:Following is the information about the JMX MBeanServer used:|#]
    [#|2005-07-13T09:52:37.104+0300|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.tools.admin|_ThreadID=10;|ADM0001:MBeanServer initialized successfully|#]
    [#|2005-07-13T09:52:46.137+0300|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=10;|Creating virtual server server|#]
    [#|2005-07-13T09:52:46.187+0300|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.core|_ThreadID=10;|S1AS AVK Instrumentation disabled|#]
    [#|2005-07-13T09:52:46.237+0300|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.core.security|_ThreadID=10;|SEC1143: Loading policy provider com.sun.enterprise.security.provider.PolicyWrapper.|#]
    [#|2005-07-13T09:52:54.299+0300|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.core.transaction|_ThreadID=10;|JTS5014: Recoverable JTS instance, serverId = [100]|#]
    [#|2005-07-13T09:52:59.106+0300|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.core|_ThreadID=10;|Satisfying Optional Packages dependencies...|#]
    [#|2005-07-13T09:53:02.210+0300|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.resource.resourceadapter|_ThreadID=10;|RAR7008 : Initialized monitoring registry and listeners|#]
    [#|2005-07-13T09:53:05.565+0300|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.core|_ThreadID=10;|CORE5100:Loading system apps|#]
    [#|2005-07-13T09:53:05.856+0300|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.core|_ThreadID=10;|Selecting file [C:\Sun\AppServer\lib\install\applications\MEjbApp.ear] for autodeployment|#]
    [#|2005-07-13T09:53:05.956+0300|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.core|_ThreadID=10;|Selecting file [C:\Sun\AppServer\lib\install\applications\__ejb_container_timer_app.ear] for autodeployment|#]
    [#|2005-07-13T09:53:05.986+0300|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.tools.admin|_ThreadID=10;|[AutoDeploy] Selecting file [ C:\Sun\AppServer\lib\install\applications\MEjbApp.ear ] for autodeployment.|#]
    [#|2005-07-13T09:53:07.007+0300|WARNING|sun-appserver-pe8.0.0_01|javax.enterprise.system.tools.admin|_ThreadID=10;|ADM1022:Deployment failed - Detailed Message:
    com.sun.enterprise.admin.common.exception.ServerInstanceException
         at com.sun.enterprise.admin.mbeans.ApplicationsConfigMBean.getVirtualServerHostAndPort(ApplicationsConfigMBean.java:2133)
         at com.sun.enterprise.admin.mbeans.ApplicationsConfigMBean.setHostAndPort(ApplicationsConfigMBean.java:3038)
         at com.sun.enterprise.admin.mbeans.ApplicationsConfigMBean.deploy(ApplicationsConfigMBean.java:274)
         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.sun.enterprise.admin.MBeanHelper.invokeOperationInBean(MBeanHelper.java:287)
         at com.sun.enterprise.admin.config.BaseConfigMBean.invoke(BaseConfigMBean.java:280)
         at com.sun.jmx.mbeanserver.DynamicMetaDataImpl.invoke(DynamicMetaDataImpl.java:221)
         at com.sun.jmx.mbeanserver.MetaDataImpl.invoke(MetaDataImpl.java:228)
         at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:823)
         at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:792)
         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.sun.enterprise.admin.util.proxy.ProxyClass.invoke(ProxyClass.java:54)
         at $Proxy1.invoke(Unknown Source)
         at com.sun.enterprise.admin.server.core.jmx.SunoneInterceptor.invoke(SunoneInterceptor.java:282)
         at com.sun.enterprise.deployment.autodeploy.AutoDeployer.invokeDeploymentService(AutoDeployer.java:471)
         at com.sun.enterprise.deployment.autodeploy.AutoDeployer.deployApplication(AutoDeployer.java:367)
         at com.sun.enterprise.deployment.autodeploy.AutoDeployer.deployApplication(AutoDeployer.java:346)
         at com.sun.enterprise.deployment.autodeploy.AutoDeployer.deployAll(AutoDeployer.java:167)
         at com.sun.enterprise.server.SystemAppLifecycle.deployToTarget(SystemAppLifecycle.java:180)
         at com.sun.enterprise.server.SystemAppLifecycle.deploySystemApps(SystemAppLifecycle.java:155)
         at com.sun.enterprise.server.SystemAppLifecycle.onStartup(SystemAppLifecycle.java:77)
         at com.sun.enterprise.server.ApplicationServer.onStartup(ApplicationServer.java:295)
         at com.sun.enterprise.server.PEMain.run(PEMain.java:220)
         at com.sun.enterprise.server.PEMain.main(PEMain.java:172)
         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 org.apache.commons.launcher.ChildMain.run(ChildMain.java:269)
    |#]
    [#|2005-07-13T09:53:07.017+0300|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.tools.admin|_ThreadID=10;|[AutoDeploy] Exception occures while invoking backend deployment service for file : C:\Sun\AppServer\lib\install\applications\MEjbApp.ear. -- null -- null|#]
    [#|2005-07-13T09:53:07.097+0300|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.tools.admin|_ThreadID=10;|[AutoDeploy] Autodeploy failed : C:\Sun\AppServer\lib\install\applications\MEjbApp.ear.|#]
    [#|2005-07-13T09:53:07.097+0300|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.tools.admin|_ThreadID=10;|[AutoDeploy] Selecting file [ C:\Sun\AppServer\lib\install\applications\__ejb_container_timer_app.ear ] for autodeployment.|#]
    [#|2005-07-13T09:53:07.117+0300|WARNING|sun-appserver-pe8.0.0_01|javax.enterprise.system.tools.admin|_ThreadID=10;|ADM1022:Deployment failed - Detailed Message:
    com.sun.enterprise.admin.common.exception.ServerInstanceException
         at com.sun.enterprise.admin.mbeans.ApplicationsConfigMBean.getVirtualServerHostAndPort(ApplicationsConfigMBean.java:2133)
         at com.sun.enterprise.admin.mbeans.ApplicationsConfigMBean.setHostAndPort(ApplicationsConfigMBean.java:3038)
         at com.sun.enterprise.admin.mbeans.ApplicationsConfigMBean.deploy(ApplicationsConfigMBean.java:274)
         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.sun.enterprise.admin.MBeanHelper.invokeOperationInBean(MBeanHelper.java:287)
         at com.sun.enterprise.admin.config.BaseConfigMBean.invoke(BaseConfigMBean.java:280)
         at com.sun.jmx.mbeanserver.DynamicMetaDataImpl.invoke(DynamicMetaDataImpl.java:221)
         at com.sun.jmx.mbeanserver.MetaDataImpl.invoke(MetaDataImpl.java:228)
         at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:823)
         at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:792)
         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.sun.enterprise.admin.util.proxy.ProxyClass.invoke(ProxyClass.java:54)
         at $Proxy1.invoke(Unknown Source)
         at com.sun.enterprise.admin.server.core.jmx.SunoneInterceptor.invoke(SunoneInterceptor.java:282)
         at com.sun.enterprise.deployment.autodeploy.AutoDeployer.invokeDeploymentService(AutoDeployer.java:471)
         at com.sun.enterprise.deployment.autodeploy.AutoDeployer.deployApplication(AutoDeployer.java:367)
         at com.sun.enterprise.deployment.autodeploy.AutoDeployer.deployApplication(AutoDeployer.java:346)
         at com.sun.enterprise.deployment.autodeploy.AutoDeployer.deployAll(AutoDeployer.java:167)
         at com.sun.enterprise.server.SystemAppLifecycle.deployToTarget(SystemAppLifecycle.java:180)
         at com.sun.enterprise.server.SystemAppLifecycle.deploySystemApps(SystemAppLifecycle.java:155)
         at com.sun.enterprise.server.SystemAppLifecycle.onStartup(SystemAppLifecycle.java:77)
         at com.sun.enterprise.server.ApplicationServer.onStartup(ApplicationServer.java:295)
         at com.sun.enterprise.server.PEMain.run(PEMain.java:220)
         at com.sun.enterprise.server.PEMain.main(PEMain.java:172)
         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 org.apache.commons.launcher.ChildMain.run(ChildMain.java:269)
    |#]
    [#|2005-07-13T09:53:07.127+0300|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.tools.admin|_ThreadID=10;|[AutoDeploy] Exception occures while invoking backend deployment service for file : C:\Sun\AppServer\lib\install\applications\__ejb_container_timer_app.ear. -- null -- null|#]
    [#|2005-07-13T09:53:07.137+0300|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.tools.admin|_ThreadID=10;|[AutoDeploy] Autodeploy failed : C:\Sun\AppServer\lib\install\applications\__ejb_container_timer_app.ear.|#]
    [#|2005-07-13T09:53:07.298+0300|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=10;|WEB0302: Starting Tomcat.|#]
    [#|2005-07-13T09:53:08.900+0300|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=10;|WEB0100: Loading web module [adminapp] in virtual server [server] at [web1]|#]
    [#|2005-07-13T09:53:10.683+0300|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=10;|WEB0100: Loading web module [admingui] in virtual server [server] at [asadmin]|#]
    [#|2005-07-13T09:53:10.693+0300|WARNING|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=10;|WEB0500: default-locale attribute of locale-charset-info element has been deprecated and is being ignored. Use default-charset attribute of parameter-encoding element instead|#]
    [#|2005-07-13T09:53:10.743+0300|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=10;|WEB0100: Loading web module [com_sun_web_ui] in virtual server [server] at [com_sun_web_ui]|#]
    [#|2005-07-13T09:53:10.803+0300|INFO|sun-appserver-pe8.0.0_01|org.apache.catalina.startup.Embedded|_ThreadID=10;|Starting tomcat server|#]
    [#|2005-07-13T09:53:10.803+0300|INFO|sun-appserver-pe8.0.0_01|org.apache.catalina.startup.Embedded|_ThreadID=10;|Catalina naming disabled|#]
    [#|2005-07-13T09:53:11.363+0300|INFO|sun-appserver-pe8.0.0_01|org.apache.catalina.core.StandardEngine|_ThreadID=10;|Starting Servlet Engine: Sun-Java-System/Application-Server-PE-8.0|#]
    [#|2005-07-13T09:53:25.003+0300|INFO|sun-appserver-pe8.0.0_01|org.apache.catalina.startup.ContextConfig|_ThreadID=10;|Missing application web.xml, using defaults only StandardEngine[server].StandardHost[server].StandardContext[]|#]
    [#|2005-07-13T09:53:32.724+0300|INFO|sun-appserver-pe8.0.0_01|org.apache.coyote.http11.Http11Protocol|_ThreadID=10;|Initializing Coyote HTTP/1.1 on port 8080|#]
    [#|2005-07-13T09:53:32.864+0300|INFO|sun-appserver-pe8.0.0_01|org.apache.coyote.http11.Http11Protocol|_ThreadID=10;|Starting Coyote HTTP/1.1 on port 8080|#]
    [#|2005-07-13T09:53:33.916+0300|INFO|sun-appserver-pe8.0.0_01|org.apache.coyote.http11.Http11Protocol|_ThreadID=10;|Initializing Coyote HTTP/1.1 on port 1043|#]
    [#|2005-07-13T09:53:33.946+0300|INFO|sun-appserver-pe8.0.0_01|org.apache.coyote.http11.Http11Protocol|_ThreadID=10;|Starting Coyote HTTP/1.1 on port 1043|#]
    [#|2005-07-13T09:53:34.006+0300|INFO|sun-appserver-pe8.0.0_01|org.apache.coyote.http11.Http11Protocol|_ThreadID=10;|Initializing Coyote HTTP/1.1 on port 4848|#]
    [#|2005-07-13T09:53:34.026+0300|INFO|sun-appserver-pe8.0.0_01|org.apache.coyote.http11.Http11Protocol|_ThreadID=10;|Starting Coyote HTTP/1.1 on port 4848|#]
    [#|2005-07-13T09:54:36.326+0300|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.resource.jms|_ThreadID=10;|JMS5035: Timed out after 60000 milliseconds while trying to verify if the JMS service startup succeeded.|#]
    [#|2005-07-13T09:54:36.326+0300|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.resource.jms|_ThreadID=10;|JMS5037: Check permissions of MQ instance directory C:\Sun\AppServer\imq\var\instances|#]
    [#|2005-07-13T09:54:36.326+0300|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.resource.jms|_ThreadID=10;|JMS5036: More details may be available in the log file for the JMS service broker instance imqbroker. Please refer to the JMS provider documentation for the exact location of this log file.|#]
    [#|2005-07-13T09:54:36.326+0300|SEVERE|sun-appserver-pe8.0.0_01|javax.enterprise.system.core|_ThreadID=10;|CORE5071: An error occured during initialization
    com.sun.appserv.server.ServerLifecycleException: [C4003]: Error occurred on connection creation [127.0.0.1:7676]. - cause: java.net.ConnectException: Connection refused: connect
         at com.sun.enterprise.jms.JmsProviderLifecycle.checkProviderStartup(JmsProviderLifecycle.java:415)
         at com.sun.enterprise.server.PEMain.run(PEMain.java:224)
         at com.sun.enterprise.server.PEMain.main(PEMain.java:172)
         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 org.apache.commons.launcher.ChildMain.run(ChildMain.java:269)
    Caused by: com.sun.messaging.jms.JMSException: [C4003]: Error occurred on connection creation [127.0.0.1:7676]. - cause: java.net.ConnectException: Connection refused: connect
         at com.sun.messaging.jmq.jmsclient.ExceptionHandler.getJMSConnectException(ExceptionHandler.java:233)
         at com.sun.messaging.jmq.jmsclient.ExceptionHandler.handleConnectException(ExceptionHandler.java:180)
         at com.sun.messaging.jmq.jmsclient.PortMapperClient.readBrokerPorts(PortMapperClient.java:172)
         at com.sun.messaging.jmq.jmsclient.PortMapperClient.init(PortMapperClient.java:97)
         at com.sun.messaging.jmq.jmsclient.PortMapperClient.<init>(PortMapperClient.java:50)
         at com.sun.messaging.jmq.jmsclient.protocol.tcp.TCPConnectionHandler.<init>(TCPConnectionHandler.java:53)
         at com.sun.messaging.jmq.jmsclient.protocol.tcp.TCPStreamHandler.openConnection(TCPStreamHandler.java:102)
         at com.sun.messaging.jmq.jmsclient.ConnectionInitiator.createConnectionOld(ConnectionInitiator.java:271)
         at com.sun.messaging.jmq.jmsclient.ConnectionInitiator.createConnection(ConnectionInitiator.java:107)
         at com.sun.messaging.jmq.jmsclient.ConnectionInitiator.createConnection(ConnectionInitiator.java:92)
         at com.sun.messaging.jmq.jmsclient.ProtocolHandler.init(ProtocolHandler.java:562)
         at com.sun.messaging.jmq.jmsclient.ProtocolHandler.<init>(ProtocolHandler.java:1102)
         at com.sun.messaging.jmq.jmsclient.ConnectionImpl.openConnection(ConnectionImpl.java:1741)
         at com.sun.messaging.jmq.jmsclient.ConnectionImpl.init(ConnectionImpl.java:588)
         at com.sun.messaging.jmq.jmsclient.ConnectionImpl.<init>(ConnectionImpl.java:274)
         at com.sun.messaging.jmq.jmsclient.UnifiedConnectionImpl.<init>(UnifiedConnectionImpl.java:33)
         at com.sun.messaging.jmq.jmsclient.QueueConnectionImpl.<init>(QueueConnectionImpl.java:32)
         at com.sun.messaging.ConnectionFactory.createQueueConnection(ConnectionFactory.java:72)
         at com.sun.messaging.jmq.admin.jmsspi.JMSAdminImpl.pingProvider(JMSAdminImpl.java:734)
         at com.sun.enterprise.jms.JmsProviderLifecycle.waitForJmsProvider(JmsProviderLifecycle.java:324)
         at com.sun.enterprise.jms.JmsProviderLifecycle.checkProviderStartup(JmsProviderLifecycle.java:384)
         ... 7 more
    Caused by: java.net.ConnectException: Connection refused: connect
         at java.net.PlainSocketImpl.socketConnect(Native Method)
         at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:305)
         at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:171)
         at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:158)
         at java.net.Socket.connect(Socket.java:452)
         at java.net.Socket.connect(Socket.java:402)
         at java.net.Socket.<init>(Socket.java:309)
         at java.net.Socket.<init>(Socket.java:124)
         at com.sun.messaging.jmq.jmsclient.PortMapperClient.readBrokerPorts(PortMapperClient.java:152)
         ... 25 more
    |#]
    [#|2005-07-13T09:54:36.326+0300|SEVERE|sun-appserver-pe8.0.0_01|javax.enterprise.system.core|_ThreadID=10;|Server Startup failed. Exiting...|#]
    [#|2005-07-13T09:54:36.326+0300|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.core|_ThreadID=10;|Server shutdown in progress...|#]
    [#|2005-07-13T09:54:36.326+0300|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.container.web|_ThreadID=10;|WEB0303: Stopping Tomcat.|#]
    [#|2005-07-13T09:54:36.336+0300|INFO|sun-appserver-pe8.0.0_01|org.apache.coyote.http11.Http11Protocol|_ThreadID=10;|Stoping http11 protocol on 8080 server:type=ThreadPool,name=http8080|#]
    [#|2005-07-13T09:54:36.506+0300|INFO|sun-appserver-pe8.0.0_01|org.apache.coyote.http11.Http11Protocol|_ThreadID=10;|Stoping http11 protocol on 1043 server:type=ThreadPool,name=http1043|#]
    [#|2005-07-13T09:54:36.536+0300|INFO|sun-appserver-pe8.0.0_01|org.apache.coyote.http11.Http11Protocol|_ThreadID=10;|Stoping http11 protocol on 4848 server:type=ThreadPool,name=http4848|#]
    [#|2005-07-13T09:54:37.027+0300|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.core|_ThreadID=10;|CORE5051: Shutting down all J2EE applications ...|#]
    [#|2005-07-13T09:54:37.057+0300|INFO|sun-appserver-pe8.0.0_01|javax.enterprise.system.core|_ThreadID=10;|CORE5052: Application shutdown complete.|#]
    [#|2005-07-13T09:54:37.057+0300|WARNING|sun-appserver-pe8.0.0_01|javax.enterprise.system.core|_ThreadID=10;|CORE5061: Exception :
    com.sun.appserv.server.ServerLifecycleException: MQ startup failed :[C4003]: Error occurred on connection creation [127.0.0.1:7676]. - cause: java.net.ConnectException: Connection refused: connect
         at com.sun.enterprise.jms.JmsProviderLifecycle.checkProviderStartup(JmsProviderLifecycle.java:364)
         at com.sun.enterprise.jms.JmsProviderLifecycle.onShutdown(JmsProviderLifecycle.java:433)
         at com.sun.enterprise.server.ApplicationServer.onShutdown(ApplicationServer.java:400)
         at com.sun.enterprise.server.PEMain.run(PEMain.java:233)
         at com.sun.enterprise.server.PEMain.main(PEMain.java:172)
         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 org.apache.commons.launcher.ChildMain.run(ChildMain.java:269)
    |#]
    [#|2005-07-13T09:54:37.267+0300|SEVERE|sun-appserver-pe8.0.0_01|javax.enterprise.system.core|_ThreadID=10;|Server stopped due to Server startup failure.|#]

    Hi,
    Did you resolve this issue? I have the same problem. I appreciate if you could please let me know what the problem was.
    Thanks

  • Moving the log file of a publisher database SQL Server 2008

    There are many threads on this here. Most of them not at all helpful and some of them wrong. Thus a fresh post.
    This post regards SQL Server 2008 (10.0.5841)
    The PUBLISHER database primary log file which is currently of 3 blocks and not extendable,
    must be moved as the LUN is going away.
    The database has several TB of data and a large number of push transactional replications as well as a couple of bi-directional replications.
    While the primary log file is active, it is almost never (if ever) used due to its small fixed size.
    We are in the 20,000 TPS range at peak (according to perfmon). This is a non-trivial installation.
    This means that
    backup/restore is not even a remotely viable option (it never is in the real world)
    downtime minimization is critical - measured in minutes or less.
    dismantling and recreating the replications is doable, but I have to say, I have zero trust in the script writer to generate accurate scripts. Many of these replications were originally set up in older versions of SQL Server and have come along for the
    ride as upgrades have occurred. I consider scripting everything and dismantling the whole lot pretty high risk. In any case, I do not want to have to reinitialize any replications as this takes, effectively, an eternity.
    Possible solution:
    The only option I can think of is to wind down everything, such that there are zero outstanding uncommitted transactions and detach the database, delete the offending log file and reattach using the CREATE DATABASE xyz ATTACH_REBUILD_LOG option.
    This should, if I have understood things correctly, cause SQL Server to recreate the default log file in the same directory as the .mdf file. I am not sure what will happen to the secondary log file which is not moving anywhere at this point.
    The hard bit is insuring that every transaction in the active log files have been replicated before shutdown. This is probably doable. I do not know how to manually flush any left over transactions to replication. I expect if I shut down all "real"
    activity and wait for a certain amount of time, eventually all the replications will show "No replicated transactions are available" and then I would be good to go.
    Hillary, if you happen to be there, comments appreciated.

    Hi Philip
    you should try this long back suggested way of stopping replication and restore db and rename or detach attach
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/6731803b-3efa-4820-a303-4ffb7edf154a/detaching-a-replicated-database?forum=sqlreplication
    Thanks
    Saurabh Sinha
    http://saurabhsinhainblogs.blogspot.in/
    Please click the Mark as answer button and vote as helpful
    if this reply solves your problem
    I do not wish to be rude, but which part of the OP didn't you understand?
    Specifically the bit about 20,000 transactions a second and database size of several TB. Do you have any concept whatsoever of what this means? I will answer for you, "no, you are clueless" as your answer clearly shows.
    Stop wasting bandwidth by proposing pointless and wrong solutions which indicate that you did not read the OP, or do you just do this to generate points?
    Also, you clearly failed to notice that I was on the thread to which you referred, and I had some pointed comments to make. This thread was an attempt to garner some input for an alternative proposal.

  • Exchange 2013 - Cleaning UP logs files (Client Access Server)

    I have to client access server and it is running out of space
    Is there anywhere in the C:\ drive where I can delete some space (e.g. log files)

    Hello,
    If you refer to C:\inetpub\logs\LogFiles, you can delete them manually or use a Powershell script to delete them.
    Here is the similar thread for your reference.
    http://social.technet.microsoft.com/Forums/exchange/en-US/703dc324-721e-4c52-b43a-263b5543cfda/how-to-control-iis-logs-on-cas-server?forum=exchange2010
    If you refer to other log files, please free let me know.
    If you have any feedback on our support, please click
    here
    Cara Chen
    TechNet Community Support

  • Server boot takes a lot of time due to JMS persistence file store

    Hi,
    We're using WebLogic 9.2 on a windows machine.
    Recently, we enhanced our application to work with JMS.
    We're using 2 JMS servers on 2 different servers in a cluster, and working with distributed destinations.
    We're using file store as our persistence store.
    Lately, we found that server boot takes a lot of time due to actions which are performed on the file-store.
    Analyzing this problem, we saw that the file size is ~2GB.
    We understand that the file size does not shrink (unless manually compacted), and its size is matching the highest number ever of pending messages in the queues (like a high water-mark).
    We also turned store debug on, using weblogic.Debug.DebugStoreIOPhysical, and we saw a lot of recovery logs after the file-store is opened.
    We've checked and verified that our JMS transactions are completed successfully. We also verified that the number of pending and current messages is 0.
    We've stopped the server gracefully, verifying there are no pending messages.
    However, server boot repeatedly takes ~30 minutes due to heavy work done on the persistence store.
    Compacting or removing the file store eliminates the delay.
    However, we want to avoid manual operations every time we want to boot the server.
    Please share your ideas.
    Thanks,
    Itsik

    The only suggestions I have off the top of my head are:
    * Ensure (1) the host system has at least 2GB (file store size) of free physical memory in addition to the memory used by current processes, and (2) the host system is not rebooted between each WebLogic restart. If you make sure of these two items, then the operating system will implicitly cache the store's file contents in memory even between boots -- when WebLogic subsequently boots the file store, the O/S should serve the file contents up much more quickly.
    * Consider moving to a JDBC store. JDBC store runtime performance is lower, but since you have a typically only have a small amount of records to recover, boot performance should be higher in this case.
    * Not that it helps your particular case, but it happens that we have boot performance enhancements in process for a future release (hopefully a near future release).
    Tom

  • Oracle BI Server crashed?

    Hi all,
    I've had a really disturbing issue with OBISE1 today which i hope you guys can shed some light on.
    During an OBI demonstration the performance went down the drain after about 30 minutes. While i was logged in and demonstrated dashboards/reports, 22 other users in the same room were also logged in and followed my steps through the dashboards. After those 30 minutes dashboards and reports just stopped loading and errors started popping out on all screens. At the end even logging off took a minute.
    At the location there was a fast internet line, so im ruling that out as an issue. After
    Afterwards when i checked the server i noticed Oracle BI Server stopped.
    I checked eventviewer and found the following from the VsJITDebugger that occured at 2:26:30 PM :
    An unhandled win32 exception occurred in NQSServer.exe [1948]. Just-In-Time debugging this exception failed with the following error: Debugger could not be started because no user is logged on.
    Check the documentation index for 'Just-in-time debugging, errors' for more information.
    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
    Another thing that I found from the Service Control Manager that occured at 2:26:39 PM :
    The Oracle BI Server service terminated unexpectedly.  It has done this 1 time(s).
    For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
    This sounds like an OBISE1 issue. So I digged some deeper and found the following.
    The NQSServer log doesn't show anything that happened during this time period.
    The NQSQuery log only shows -------------------- Cache Purge of query: records.
    The sawlog0.log did show a lot of errors, covering about 500 MS Word pages :
    1. Exception in handler thread. An error occurred during execution of "send". An unknown error occurred in the sockets library. [Socket:4848]
    This happened 16 times
    2. Odbc driver returned an error (SQLExecDirectW).
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred.
    [nQSError: 27004] Unresolved table: "QPO". (HY000)
    This happened 225 times for this and another table
    3. SQLFetchScroll returned code SQL_NO_DATA_FOUND
    This happened 118 times
    I still don't clearly see what happened that made OBI crash, why i received the errors in sawlog0.log and where i can find more information about this.
    Can anyone advise me what to do, because I do need an answer to the question what caused this??

    If given info helps pls mark.
    Appreciate if you update your issue and the bug details
    Edited by: Srini VEERAVALLI on Jan 8, 2013 8:14 AM

  • CF 7.0.2 ODBC Server crashed unexpectedly

    hi
    We moved from an older Dual PIII box under Win2k to a Dual
    Xeon under Win2k3.
    First step was to move Sybase ASA 9.0.2.33xx dbs from the old
    box to the new, leaving ColdFusion 6.1 MX on the old box connecting
    through ODBC. This workd flawlessly for weeks.
    Yesterday I also moved the front end (coldfusion 6.1 to cf
    7.0.2) to the new box
    Now, we get problems like this in the Sybase ASA server log
    I. 09/27 09:49:14. Disconnecting shared memory client,
    process id not found
    I. 09/27 09:49:14. Disconnected SharedMemory client's
    AppInfo: HOST=MINDPOWER-4;OS=Windows 2003 Build 3790 Service Pack
    1;PID=0x1a4c;THREAD=0xefc;EXE=C:\CFusionMX7\db\slserver54\bin\swsoc.exe;VERSION=9.0.2.337 0;API=ODBC;TIMEZONEADJUSTMENT=120
    I. 09/27 09:50:36. Disconnecting shared memory client,
    process id not found
    I. 09/27 09:50:36. Disconnected SharedMemory client's
    AppInfo: HOST=MINDPOWER-4;OS=Windows 2003 Build 3790 Service Pack
    1;PID=0x193c;THREAD=0x9ac;EXE=C:\CFusionMX7\db\slserver54\bin\swsoc.exe;VERSION=9.0.2.337 0;API=ODBC;TIMEZONEADJUSTMENT=120
    I. 09/27 09:50:36. Disconnecting shared memory client,
    process id not found
    I. 09/27 09:50:36. Disconnected SharedMemory client's
    AppInfo: HOST=MINDPOWER-4;OS=Windows 2003 Build 3790 Service Pack
    1;PID=0x193c;THREAD=0xf48;EXE=C:\CFusionMX7\db\slserver54\bin\swsoc.exe;VERSION=9.0.2.337 0;API=ODBC;TIMEZONEADJUSTMENT=120
    and of course the errors logged in CF as
    - Error Executing Database Query. [Macromedia][SequeLink JDBC
    Driver]TCP/IP error, connection reset by peer. <br>The error
    occurred on line 64.
    - Error Executing Database Query. [Macromedia][SequeLink JDBC
    Driver]TCP/IP error, connection refused. <br>The error
    occurred on line 96.
    [Macromedia][SequeLink JDBC Driver]TCP/IP error, connection
    reset by peer.
    ErrorCode HY000
    Message Error Executing Database Query.
    - Error Executing Database Query. [Macromedia][SequeLink JDBC
    Driver]Network problem, session aborted due to internal error in
    remote procedure call, connection closed. <br>The error
    occurred on line 96.
    The Event Viewer of the Win2k3 box showed lots of those in
    the System Log
    Type Error, Event ID 7031
    The ColdFusion MX 7 ODBC Server service terminated
    unexpectedly. It has done this 8 time(s).
    or
    Type Warning, Event ID 7039
    A service process other than the one launched by the Service
    Control Manager connected when starting the ColdFusion MX 7 ODBC
    Server service. The Service Control Manager launched process 3720
    and process 7752 connected instead.
    Note that if this service is configured to start under a
    debugger, this behavior is expected.
    Of course, we don't have debugging
    In the application log, there are errors like this:
    The description for Event ID ( 0 ) in Source ( ColdFusion MX
    7 ODBC Server ) cannot be found. The local computer may not have
    the necessary registry information or message DLL files to display
    messages from a remote computer. You may be able to use the
    /AUXSOURCE= flag to retrieve this description; see Help and Support
    for details. The following information is part of the event:
    ColdFusion MX 7 ODBC
    Server@LOCALHOST,ErrorCode=3004,ErrorMessage=sched.swschd.1756.Internal
    error, an unexpected exception was detected..
    The description for Event ID ( 0 ) in Source ( ColdFusion MX
    7 ODBC Server ) cannot be found. The local computer may not have
    the necessary registry information or message DLL files to display
    messages from a remote computer. You may be able to use the
    /AUXSOURCE= flag to retrieve this description; see Help and Support
    for details. The following information is part of the event:
    ColdFusion MX 7 ODBC
    Server@LOCALHOST,ErrorCode=3001,ErrorMessage=srvc.swsrvcdb.3268.Internal
    error, memory allocation failed.,ClientHost=127.0.0.1,Session=2.
    The description for Event ID ( 0 ) in Source ( ColdFusion MX
    7 ODBC Server ) cannot be found. The local computer may not have
    the necessary registry information or message DLL files to display
    messages from a remote computer. You may be able to use the
    /AUXSOURCE= flag to retrieve this description; see Help and Support
    for details. The following information is part of the event:
    ColdFusion MX 7 ODBC
    Server@LOCALHOST,ErrorCode=3003,ErrorMessage=ssp.swsrvssp.3551.Internal
    error, invalid request received from the client
    application.,ClientHost=127.0.0.1,Session=2.
    The description for Event ID ( 0 ) in Source ( ColdFusion MX
    7 ODBC Server ) cannot be found. The local computer may not have
    the necessary registry information or message DLL files to display
    messages from a remote computer. You may be able to use the
    /AUXSOURCE= flag to retrieve this description; see Help and Support
    for details. The following information is part of the event:
    ColdFusion MX 7 ODBC
    Server@LOCALHOST,ErrorCode=3004,ErrorMessage=sched.swschd.1756.Internal
    error, an unexpected exception was detected..
    Of course, the application stalls as well and our users are
    upset.
    We staged that new box and found no problems, not with ASA.
    With CF 7, we had several isuses, some of them are still not quite
    clear.
    Now that we wanted to go productive, those errors occur.
    Note that the ODBC settings for those DSNs allowed both
    connections, Shared Mem and TCP/UP localhost, because cf is now on
    the same machine like the db.
    My question now is: Where should I try to find the error ...
    on ASA or CF7 side?
    Any hints welcome!
    Thanks
    Martin

    After more than 24 hours, CF ODBC Servre again crashed
    without any obvious reaons:
    The Application Event Log:
    20:48:28
    Faulting application swsoc.exe, version 0.97.0.0, faulting
    module ntdll.dll, version 5.2.3790.1830, fault address 0x00012009.
    For more information, see Help and Support Center at
    http://go.microsoft.com/fwlink/events.asp.
    20:34:35 Source ColdFusion MX 7 ODBC
    The description for Event ID ( 0 ) in Source ( ColdFusion MX
    7 ODBC Server ) cannot be found. The local computer may not have
    the necessary registry information or message DLL files to display
    messages from a remote computer. You may be able to use the
    /AUXSOURCE= flag to retrieve this description; see Help and Support
    for details. The following information is part of the event:
    ColdFusion MX 7 ODBC
    Server@LOCALHOST,ErrorCode=3004,ErrorMessage=sched.swschd.1774.Internal
    error, an unexpected exception was detected.
    20:34:33 Source ColdFusion MX 7 ODBC
    The description for Event ID ( 0 ) in Source ( ColdFusion MX
    7 ODBC Server ) cannot be found. The local computer may not have
    the necessary registry information or message DLL files to display
    messages from a remote computer. You may be able to use the
    /AUXSOURCE= flag to retrieve this description; see Help and Support
    for details. The following information is part of the event:
    ColdFusion MX 7 ODBC
    Server@LOCALHOST,ErrorCode=3004,ErrorMessage=sched.swschd.1756.Internal
    error, an unexpected exception was detected...
    In the System Event Log I found this 2 times today
    Warning:
    A service process other than the one launched by the Service
    Control Manager connected when starting the ColdFusion MX 7 ODBC
    Server service. The Service Control Manager launched process 7588
    and process 1452 connected instead.
    Note that if this service is configured to start under a
    debugger, this behavior is expected.
    For more information, see Help and Support Center at
    http://go.microsoft.com/fwlink/events.asp.
    Error:
    The ColdFusion MX 7 ODBC Server service terminated
    unexpectedly. It has done this 2 time(s). The following corrective
    action will be taken in 60000 milliseconds: Restart the service.
    For more information, see Help and Support Center at
    http://go.microsoft.com/fwlink/events.asp.
    This is simply incredible.
    My current JVM settuings are
    Minimum JVM Heap Size (MB) 608 Maximum JVM Heap Size (MB) 608
    and the JVM Arguments are
    -server -Dsun.io.useCanonCaches=false -XX:PermSize=64m
    -XX:MaxPermSize=160m -Dcoldfusion.rootDir={application.home}/../
    -Dcoldfusion.libPath={application.home}/../lib
    I changed those a bit after reading some blogs about them.
    Am I the only one to have an unstable CF sever on a Win2K3
    box?

  • Unable to start EBS DB after the Server Crash. Error in installing the Required RPM.

    Hi , Hussein ( As most of the Time It is Only you here who comes to the rescue or give Usefull inputs. I am sorry if i mistaken, no Pan intended for Other Experts)
    I 've also posted this issue here but got no response. https://forums.oracle.com/thread/2590497 
    Badly require your inputs and suggestions on the Following Issue. , Really Appreciate the suggestions.
    I need to Install the sabayon-apply rpm which could fix the issue after the Server Crash but unable to install it.
       Please see the Brief of the Issue.
    I got stuck up in installing the rpm after the server(Red Hat Enterprise Linux Server release 6.0 (Santiago) x86_64 GNU/Linux) got
    crashed Eventhough I am able to start it in Xwindows but not able to run or start EBS database along with many other programmes. Also The
    VirtualBox machine installed on it 've No issue, they work fine  But the host OS is not fine. as there are lots of
    errors in .xsession-errors. which i 've pasted below.  And Unable to Install the sabayon-apply rpm that could have fix the Issue.
    I would highly Appreciate if anyone could drop few hints and suggestions on this Issue as this is really Urgently Important for me.
    Please see the following Brief of the Issue.
      after starting the server in Xwindows I was installing the rpms from RHEL6/Packages directory on the server even installed 10-12 rpms
      While installing the rpm i 've inadvertantly issued or run  this command
      rpm -ivh *.rpm --force --nodeps  as it ended up with Errors Header V3 RSA/SHA256 Signature, key ID fd431d51: BAD
        After That I could Not Install any rpm with yum or rpm command as getting the Same Errors. 
    while trying to install individual rpm am getting the followig Errors
    [root@ebs Packages]# rpm -ivh libX11*
    error: libX11-1.3-2.el6.i686.rpm: Header V3 RSA/SHA256 Signature, key ID fd431d51: BAD
    error: libX11-1.3-2.el6.i686.rpm cannot be installed
    [root@ebs Packages]# rpm --checksig gtk2*
    gtk2-2.18.9-4.el6.i686.rpm: RSA SHA1 (MD5) PGP MD5 NOT OK
    gtk2-2.18.9-4.el6.x86_64.rpm: RSA SHA1 (MD5) PGP MD5 NOT OK
    gtk2-devel-2.18.9-4.el6.i686.rpm: RSA SHA1 (MD5) PGP MD5 NOT OK
    gtk2-devel-2.18.9-4.el6.x86_64.rpm: RSA SHA1 (MD5) PGP MD5 NOT OK
    gtk2-devel-docs-2.18.9-4.el6.x86_64.rpm: RSA SHA1 (MD5) PGP MD5 NOT OK
    gtk2-engines-2.18.4-5.el6.i686.rpm: RSA SHA1 (MD5) PGP MD5 NOT OK
    gtk2-engines-2.18.4-5.el6.x86_64.rpm: RSA SHA1 (MD5) PGP MD5 NOT OK
    gtk2-immodule-xim-2.18.9-4.el6.x86_64.rpm: RSA SHA1 (MD5) PGP MD5 NOT OK
    For that I tried to import the RPM GPG Key But still faced the same errors
    [root@ebs yum.repos.d]# wget http://public-yum.oracle.com/RPM-GPG-KEY-oracle-ol6 -O /etc/pki/rpm-gpg/RPM-GPG-KEY-oracle Key fingerprint = 4214 4123 FECF
    C55B 9086  313D 72F9 7B74 EC55 1F03
    --2013-10-08 00:04:56--  http://public-yum.oracle.com/RPM-GPG-KEY-oracle-ol6
    Resolving public-yum.oracle.com... 202.159.216.177, 202.159.216.171
    Connecting to public-yum.oracle.com|202.159.216.177|:80... connected.
    HTTP request sent, awaiting response... 200 OK
    Length: 1011 [text/plain]
    Saving to: “/etc/pki/rpm-gpg/RPM-GPG-KEY-oracle”
    FINISHED --2013-10-08 00:05:06--
    Downloaded: 6 files, 55K in 2.0s (27.7 KB/s)
    100%[===========================================================================================================================================================>]
    1,011 --.-K/s   in 0s
    2013-10-08 00:04:56 (155 MB/s) - “/etc/pki/rpm-gpg/RPM-GPG-KEY-oracle”
    saved [1011/1011]
       Than i run this command
    [root@ebs yum.repos.d]# rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-oracle  ----it Returns with no output
    [root@ebs yum.repos.d]#
    [root@ebs log]# rpm -q gpg-pubkey-ec551f03-4c2d256a
    gpg-pubkey-ec551f03-4c2d256a
    But still I can't install the rpms, got the same Errors. please see the following
    [root@ebs yum.repos.d]# yum install firefox*
    Loaded plugins: refresh-packagekit, rhnplugin
    This system is not registered with RHN.
    RHN support will be disabled.
    Setting up Install Process
    Downloading Packages:
    (1/2): firefox-17.0.9-1.0.1.el6_4.x86_64.rpm
      |  25 MB     03:42
    (2/2): xulrunner-17.0.9-1.0.1.el6_4.x86_64.rpm
      |  14 MB     02:03
    Total
    117 kB/s |  39 MB     05:46
    error: rpmts_HdrFromFdno: Header V3 RSA/SHA256 Signature, key ID ec551f03: BAD
    Problem opening package xulrunner-17.0.9-1.0.1.el6_4.x86_64.rpm
    [root@ebs log]# rpm -qf `which gpg`
    error: rpmdbNextIterator: skipping h#     455 Header V3 RSA/SHA256
    Signature, key ID fd431d51: BAD
    [root@ebs log]# gpg --list-keys
    /root/.gnupg/pubring.gpg
    pub 1024D/11F63C51 2002-02-28
    uid Jamie Cameron <[email protected]>
    sub 1024g/1B24BE83 2002-02-28
    pub 2048D/671DF296 2013-10-08
    uid oracle
    sub 2048g/9FE459CE 2013-10-08
    pub 1024R/F3A5AC78 2013-10-08
    uid oracle (no comment) <[email protected]>
    sub 1024R/6DC65985 2013-10-08
    pub 1024R/78F6C944 2013-10-08
    uid root user (Example GPG Key Signature For RPM
    Packages) <[email protected]>
    sub 1024R/77C97AFF 2013-10-08
    [root@ebs log]# rpm -qi 'gpg-pubkey-*'
    Name : gpg-pubkey Relocations: (not relocatable)
    Version : ec551f03 Vendor: (none)
    Release : 4c2d256a Build Date: Wed 09 Oct
    2013 01:09:10 AM IST
    Install Date: Wed 09 Oct 2013 01:09:10 AM IST      Build Host: localhost
    Group : Public Keys Source RPM: (none)
    Size : 0 License: pubkey
    Signature : (none)
    Summary : gpg(Oracle OSS group (Open Source Software group)
    <[email protected]>)
    Description :
    -----BEGIN PGP PUBLIC KEY BLOCK-----
    Version: rpm-4.8.0 (NSS-3)
    mQENBEwtJWoBCACpiY2rGA6T0ceBi92X88/QclytVBjtDRohOVzs3pmIPh3ULqsW
    G323nmyKbKQBBSjh9OnuO9Y09VG8mzr/w9YV0Ix4cI9/HDTERZ2+TR5u+VNn5J5h
    yvwQSN/FEK6oH2+mz7O0yUNleN7UltR4MOEkHIoAhIvv+1AQQKN3OM8oalz+3gv/
    zz9rAoQczQzT7QWOtBrsRMZgBrKXY/TpJrpVSO3Hx8CnbhKGtLxCCrxZ5v7hh1ht
    3CRAr2+h5bDA9KP6vBZWKEs7NgcvtZFDY6EJc7AoApr3phX9hHE2+snTxe82DkFT
    uA69C8wLyjPCoSy+tcaCqJKOZelNy9RN/WKRABEBAAG0RE9yYWNsZSBPU1MgZ3Jv
    dXAgKE9wZW4gU291cmNlIFNvZnR3YXJlIGdyb3VwKSA8YnVpbGRAb3NzLm9yYWNs
    ZS5jb20+iQE8BBMBAgAmBQJMLSVqAhsDBQkWjmoABgsJCAcDAgQVAggDBBYCAwEC
    HgECF4AACgkQcvl7dOxVHwMiNAf/cD8R74fCBeQsAYid5slIz7CG8xEOBUTDNEJT
    p/owtzr7m7Ydp1txNBOkVeVkUP8czX5EldcmoxA4kCCyHhnxmpJnOt52Fy5ZRnYh
    Ll5gYdpJpXGVScB7fnlh3rJAaesSTacVFC5MKIYPZBiTo9soSXMLNcG8WqHPasdd
    AblC4t5BTDNYlX1RiPeP6m5egHnnxyAXsis8fqIZY0RC9hERxWQ6hdDAX0tJXY8F
    88HDUozvo8jqTlg/5GZcfqcbUjjMUJQ5cBtH3adCthMycdPpPXWJQBuzMIdFJ03u
    YuQ3XrKxBkOLips+OZuWNVZzrPOHsenb49aX4yQsLVc2E2fhKQ==
    =M8XY
    -----END PGP PUBLIC KEY BLOCK-----
    I 've tried to remove the existing keys But Not able to remove them as well.
    Is this the right way of removing the keys ?
    rpm -e --allmatches 'gpg-pubkey-ec551f03-*'  the ec551f03 is the
    version of rpm -qi 'gpg-pubkey-*' query...  Please correct
    Could you tell what I am missing here that's causing the Issue.
    Following are the Errors that is observed in .xsession-errors log file
    ===== BEGIN RING BUFFER (/usr/sbin/sabayon-apply) =====
    MainThread 2013/10/08 18:34:23.3001 (sabayon-apply): No profile for
    user 'root' found
    MainThread 2013/10/08 18:34:23.3005 (sabayon-apply): Fatal exception!
    Exiting abnormally.
    MainThread 2013/10/08 18:34:23.3009 (sabayon-apply): Traceback (most
    recent call last):
    File "/usr/sbin/sabayon-apply", line 149, in <module>
    sys.exit (util.EXIT_CODE_NO_USER_PROFILE)
    SystemExit: 3
    ===== END RING BUFFER (/usr/sbin/sabayon-apply) =====
    This configuration for the debug log can be re-created
    by putting the following in ~//etc/sabayon/sabayon-debug-log.conf
    (use ';' to separate domain names):
    [debug log]
    max lines = 1000
    gnome-session[3707]: EggSMClient-WARNING: Desktop file
    '/etc/xdg/autostart/esc.desktop' has malformed Icon key
    'esc.png'(should not include extension)
    GNOME_KEYRING_SOCKET=/tmp/keyring-x5SKbN/socket
    SSH_AUTH_SOCK=/tmp/keyring-x5SKbN/socket.ssh
    Failed to play sound: Not available
    (polkit-gnome-authentication-agent-1:3917): GLib-GObject-WARNING **:
    cannot register existing type `_PolkitError'
    (polkit-gnome-authentication-agent-1:3917): GLib-CRITICAL **:
    g_once_init_leave: assertion `initialization_value != 0' failed
    W: main.c: This program is not intended to be run as root (unless
    --system is specified).
    ** Message: applet now removed from the notification area
    ** (gnome-user-share:3948): WARNING **: gnome-user-share cannot be
    started as root for security reasons.
    08/10/2013 06:34:26 PM Autoprobing TCP port in (all) network interface
    08/10/2013 06:34:26 PM Listening IPv{4,6}://*:5900
    08/10/2013 06:34:26 PM Autoprobing selected port 5900
    08/10/2013 06:34:26 PM Advertising authentication type: 'No Authentication' (1)
    08/10/2013 06:34:26 PM Advertising security type: 'No Authentication' (1)
    Initializing nautilus-gdu extension
    Initializing nautilus-open-terminal extension
    ** Message: applet now embedded in the notification area
    Connecting to deprecated signal
    QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
    kbuildsycoca4 running...
    Connecting to deprecated signal
    QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
    Connecting to deprecated signal
    QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
    Window manager warning: Invalid WM_TRANSIENT_FOR window 0x4e00004
    specified for 0x4e00019 (Restore Se).
    Object::disconnect: Unexpected null parameter
    QObject::connect: Cannot connect (null)::activePartChanged(
    KParts::Part * ) to KHTMLPart::slotActiveFrameChanged( KParts::Part *
    kio_http_cache_cleaner: Already running!
    Object::disconnect: Unexpected null parameter
    Window manager warning: Invalid WM_TRANSIENT_FOR window 0x5200004
    specified for 0x5200019 (Restore Se).
    Object::disconnect: Unexpected null parameter
    QObject::connect: Cannot connect (null)::activePartChanged(
    KParts::Part * ) to KHTMLPart::slotActiveFrameChanged( KParts::Part *
    Object::disconnect: Unexpected null parameter
    QObject::connect: Cannot connect (null)::activePartChanged(
    KParts::Part * ) to KHTMLPart::slotActiveFrameChanged( KParts::Part *
    Object::disconnect: Unexpected null parameter
    Window manager warning: Invalid WM_TRANSIENT_FOR window 0x4e00004
    specified for 0x4e08cb7 (timesofind).
    libpng warning: Extra compressed data in IDAT
    Window manager warning: Invalid WM_TRANSIENT_FOR window 0x4e00004
    specified for 0x4e0a6e3 (Server Aut).
    Highly appreciate the response.
    Thanks And Regards
    MZ

    The Packaged are already there on the server as the RHEL software DVD is copied on the server.
    Yes it was working before the crash, And Even after the Crash i.e
    after starting the server in Xwindows I was installing the rpms from RHEL6/Packages directory on the server even installed 10-12 rpms
      and was in the process of installing the sabayon rpm i 've inadvertantly issued or run  this command
      rpm -ivh *.rpm --force --nodeps  from RHEL software Packages directory.   
    and it ended up with Errors Header V3 RSA/SHA256 Signature, key ID fd431d51: BAD
       After that I could Not install any rpm from rpm or yum command.
       I 've  Downloaded the new sabyon*  and Other rpms from the net and tried to install them with rpm or yum command but
        got the same Errors Header V3 RSA/SHA256 Signature, key ID fd431d51: BAD 
       with yum am getting this error
       error: rpmts_HdrFromFdno: Header V3 RSA/SHA256 Signature, key ID ec551f03: BAD.
      I 've Tried searching on google as well for at least 10 hours but did not get any help from it so far.
      The Reinstallation of OS is not AN Option for me rightnow.
       Could you tell something which i could try & may be that works.
    Thanks
    MZ

Maybe you are looking for