JSP + Tomcat start problems

Hi all ,sorry fot desturbing with question that was descused befoure but I have problem to start JSP application on Tomcat server
1.I have created folder named my_folder and set my application here
2.I have created subfolder WEB-INF (but its empty because I want only to test deployment on Tomcat and I have only one file my_application.jsp)
3. I have restarted the server
4.I have typed in browser http://localhost:8080/my_folder/my_application.jsp
And it doesnt work show me error 404
Please somebody who can help with solving of this problem to write here
10x.

Try putting a basic web.xml file into the web-inf folder
Tomcat 4
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
    "http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
  <display-name>Welcome to Tomcat</display-name>
</web-app>Tomcat 5
<?xml version="1.0" encoding="ISO-8859-1"?>
<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
    version="2.4">
  <display-name>Welcome to Tomcat</display-name>
</web-app>

Similar Messages

  • Apache webserver can't find tomcat - mod_jk problem?

    Hi
    I have recently upgraded HP-UX apache software
    FROM
    Apache webserver: 2.0.55
    Apache tomcat : 5.5.9
    TO
    Apache webserver: 2.0.55
    Apache tomcat : 5.5.9
    I have 2 tomcats running, one JVM for a daytime service and another for a nighttime service.
    So while 1 tomcat is down, the other is up, apache always running.
    However, since I have upgraded, I see the following error messages in jk.log:
    [Mon Nov 20 07:00:41 2006] [error] ajp_connection_tcp_get_message::jk_ajp_common
    .c (949): ERROR: can't receive the response message from tomcat, network problems or tomcat is down (127.0.0.1:8059), err=-232
    The tomcat in question is up - and the messages returned are 500 responses - server configuration issue.
    Get several a day.
    Basically using mod_jk to bind the tomcat installations to apache webserver.
    What is new though in mod_jk 1.2.10 is that a shared memory file is specified. I am wondering what happens to this memory that is used to load balance the workers when tomcats are bounced.
    Issues go away after a bounce of apache - but after each tomcat has been stopped once - messages start to fail intermittently after that.
    Done some googling but do not see any solutions - so here's hoping!
    Thanks.

    Noticed my deliberate mistake!
    From
    Apache 2.0.32
    Tomcat 3
    Still no joy with with this in terms of finding a solution to why the newer version of apache cannot find tomcat after it has been bounced.
    mod_jk.so version 1.2.9 introduced the shared memory for the workers, which as far as I can is the main config change in the 2 versions of apache that came from HP.
    So rolled back to the old version of apache with the new version of tomcat - and everything works fine!

  • Letting tomcat start a class

    I have a class which runs as a daemon thread. I want this class to start right after tomcat boots. Is there a way to make Tomcat execute a class on startup?
    The only way I can think of is creating a simple class which fetches a JSP that starts the thread. If anyone knows a better solution, I would be grateful.

    If you want to run something on startup you can do it via a web.xml file:
       <servlet>
          <servlet-name>StartupServlet</servlet-name>
          <servlet-class>xxx.xxx.xxx.xxx.StartupServlet</servlet-class>
          <init-param>
          <param-name>name</param-name>
          <param-value>value</param-value>
          </init-param>
          <init-param>
          <param-name>name2</param-name>
          <param-value>value2</param-value>
          </init-param>
          <load-on-startup>1</load-on-startup>     
       </servlet> 

  • Tomcat server problems

    Hi everyone,
    Maybe not the correct forum, but I'm sure people here know a lot about Tomcat server.
    Problems is, that Tomcat startes ok, the service is running. If I browser to the URL of the server I get in the IE status bar 'Contacted website, waiting for reply...' and this just stays like that. Eventualy when the browser times-out I get the IE error page.
    Everything was working ok for weeks, until I rebooted the machine.
    Any ideas??
    Thanks!

    hi
    what is the URL you typed in the browser?
    usually you shoud write
    http://localhost:8080 (if 8080 is the port you chose.)
    Max

  • Catching jsp/tomcat/java SQL error

    I have been trying to get the sample code to work from an old book. I was finally able to get it to run under tomcat 4.1.31 but there is one bug I just cannot figure out how to handle. I am a beginner to Java/JSP/Tomcat and have about 16+ hours invested in this problem so far.
    The delFruit.jsp calls methods from FruitConnect.java.
    I found that if the fruit chosen for deletion was not involved in a referential integrity link to a FruitMonth file the code works fine. But if it is linked the delFruit.jsp just displays a blank screen and nothing is deleted. It is fine for it not to be deleted but I cannot find anyway to handle it. I tried to add the checkFruitForSale bandaid below but it causes me a blank screen as well.
    Any help would be appreciated.
    It would be great if I could just see what is happening when FruitConnect is processing code. I get no errors, just a blank screen. I'm going to try using NetBeans and their debugger next.
    Here is delFruit:
    <%@ page import="java.sql.*" %>
    <jsp:include page="adminHeader.html" flush="true" />
    <jsp:useBean id="fruitConnect" class="fruit1.FruitConnect" />
    <%
    String msg = "The following fruits have been deleted:<br> ";
    //Build the list of fruits to delete
    String delFruit[] = request.getParameterValues("delFruit");
    //WE WILL ONLY GET CHECKBOXES THAT WERE CHECKED
       String fruitList = "";
       if (delFruit != null){
         int len = delFruit.length;
         fruitConnect.dbConnect();
         for (int i = 0; i < len; i++) {
              String passfruit = delFruit;
              if (fruitConnect.checkFruitForSale(passfruit)) {}
              else{
              fruitList = fruitList + "'" + delFruit[i] + "',";
              msg = msg + delFruit[i] + "<br>";
              out.print(msg);
              out.print(msg);
         fruitList = fruitList + "'nonsense'";
         if (fruitConnect.deleteFruit(fruitList) < 1) {
              msg = "There was an error deleting the fruits from the database.";
         else{
         msg = "Deletion was successful";
         fruitConnect.dbDisconnect();
    else {
         msg = "You must select some fruit to delete.";
    %>
    HERE IS FruitConnect.java
    package fruit1;
    import java.sql.*;
    public class FruitConnect {
       private Driver drv = null;
       private Connection conn = null;
       private ResultSet rs = null;
       private Statement stmt = null;
       public FruitConnect(){}
       public void dbConnect() throws Exception{
    //      drv = (Driver) Class.forName("sun.jdbc.odbc.JdbcOdbcDriver").newInstance();
    //      conn = DriverManager.getConnection("jdbc:odbc:Fruit");
    try{
          drv = (Driver) Class.forName("sun.jdbc.odbc.JdbcOdbcDriver").newInstance();
          conn = DriverManager.getConnection("jdbc:odbc:Fruit");
    catch ( SQLException sqlException)
    sqlException.printStackTrace();
    finally
    try{
    catch (Exception exception)
       public boolean getNextItem() throws Exception{
          boolean ret = rs.next();
          return(ret);
       public String getItemNameString(String columnName) throws Exception{
          String name = rs.getString(columnName);
          return(name);
       public float getItemNameFloat(String columnName) throws Exception{
          float name = rs.getFloat(columnName);
          return(name);
       public boolean selectFruits() throws Exception{
          String query = "SELECT Id, Name FROM Fruit";
          stmt = conn.createStatement();
          rs = stmt.executeQuery(query);
          boolean ret = false;
          if (rs != null)
             ret = true;
          return(ret);
       public boolean selectMonths() throws Exception{
          String query = "SELECT Id, Name FROM Month";
          stmt = conn.createStatement();
          rs = stmt.executeQuery(query);
          boolean ret = false;
          if (rs != null)
             ret = true;
          return(ret);
       public boolean selectFruitForSale() throws Exception{
          String query = "SELECT F.Name AS Fruit, M.Name AS Month, Price, Weight, (Price * Weight) AS TotalPrice FROM FruitMonth AS FM, Fruit AS F, Month AS M WHERE FM.FruitId = F.Id AND FM.MonthId = M.Id ORDER BY M.Id";
          stmt = conn.createStatement();
          rs = stmt.executeQuery(query);
          boolean ret = false;
          if (rs != null)
             ret = true;
          return(ret);
       public int insertFruit(String name) throws Exception{
          String query = "INSERT INTO Fruit (Name) VALUES ('" + name + "')";
          stmt = conn.createStatement();
          int ret = stmt.executeUpdate(query);
          return(ret);
       public int insertFruitForSale(String insertValues) throws Exception{
          String query = "INSERT INTO FruitMonth (FruitId, MonthId, Price, Weight) VALUES (" + insertValues + ")";
          stmt = conn.createStatement();
          int ret = stmt.executeUpdate(query);
          return(ret);     
       public int deleteFruit(String fruitList) throws Exception{
          String query = "DELETE FROM Fruit WHERE Name IN (" + fruitList + ")";
          stmt = conn.createStatement();
          int ret = stmt.executeUpdate(query);
          return(ret);
       public void dbDisconnect() throws Exception{
          stmt.close();
          conn.close();
       public boolean checkFruitForSale(String thisfruit) throws Exception{
          String query = "SELECT F.Name AS Fruit, M.Name AS Month, Price, Weight, (Price * Weight) AS TotalPrice FROM FruitMonth AS FM, Fruit AS F, Month AS M WHERE FM.FruitId = F.Id AND FM.MonthId = M.Id AND F.Name IN (" + thisfruit + ") ORDER BY M.Id";
    try{
          stmt = conn.createStatement();
          rs = stmt.executeQuery(query);
    catch ( SQLException sqlException)
    sqlException.printStackTrace();
          boolean ret = false;
          if (rs != null)
             ret = true;
          return(ret);
    finally
    try{
    catch (Exception exception)
          boolean ret = false;
          if (rs != null)
             ret = true;
          return(ret);
       public String Check1(String columnName) throws Exception{
          String name = rs.getString(columnName);
          return(name);

    First thing to check would be the Tomcat log file. Most likely there is an error message printed there:
    Look in [TOMCAT]/logs for any files modified recently. Open it, and you should find some hints as to your error.
    It would be great if I could just see what is happening when
    FruitConnect is processing code.For that sort of thing, you want to use a logger. Either Log4J or the standard Java1.4 logger would help. Basically configure it to log statements to file as your program runs.
    I get no errors, just a blank screenThat could indicate that the page ran enough to fill up the page buffer, and then failed. When you view source, do you see anything on the page at all?

  • If I copy the "lcds" folder, Tomcat starts with socket errors

    In the documentation it is said that when you create a new server-side application, you can start by copying the 'webapps/lcds' folder. I did that but then, Tomcat starts with some socket errors:
    [LCDS]SocketServer 'my-rtmp-SocketServer' failed to pre-validate desired socket settings for BindSocketAddress: 0.0.0.0:2038
    java.net.SocketException: Unrecognized Windows Sockets error: 0: JVM_Bind
    [LCDS]SocketServer 'my-rtmp-SocketServer' failed to start.
    flex.messaging.LocalizedException: SocketServer 'my-rtmp-SocketServer' cannot bind to accept client connections on port '2038' because another process has already bound the port. Please ensure that multiple endpoints across all applications  are not configured to use this same port.
    Am I doing something wrong?
    Thanks,
    Borek

    What is happening is that you are getting a port conflict for the socket-based NIO and RTMP endpoints used in the channel definitions in the services-config.xml file of your new web app. The issue is that you have endpoints bound to the same port  in the LCDS web and in your new web app.
    You can deal with this one of two ways:
    Option 1: In that services-config.xml file, search on "RTMP" and "NIO" to find the channel definitions and change the port numbers to something slightly different than the ones used in the LCDS web app.
    Options 2: Move the LCDS web app out of the picture so it doesn't get loaded, and just use a template for future web apps. If you aren't using it for any of your development, there is really no reason you have to load it.
    I'll add a note about this to the documentation that talks about using the LCDS web app as a template.

  • How to combinate JSP+Tomcat+mysql??

    Hi,guys. My question is as the above subject.
    I have installed JDK, Tomcat, mysql, and my OS is WinXP, I am trying to develop a JSP site in my computer.
    For JDK, the commands javac, java, ...... work OK;
    For Tomcat, http://localhost:8080 works OK, meaning the cat page appears.
    For mysql, I can login, and sql statements work OK;
    And I download mysql-connector-java-3.1.8a.
    What I should do further to combinate JSP+Tomcat+mysql, so my JSP site can work? Any advice?
    I need help.
    Thanks in advance!

    Thanks,duffymo!
    As you said, I am learning more about those things.
    Actually I am trying to open a JSP webpage to show the connection JSP+Tomcat+mysql works OK.
    I copied the mysql-connector-java-3.1.8-bin.jar to ...Tomcat 5.0\common\lib,
    created a datebase, named test in MySQL, and wrote a JSP as the below:
    <%@ page contentType="text/html; charset=gb2312" %>
    <%@ page language="java" %>
    <%@ page import="com.mysql.jdbc.Driver" %>
    <%@ page import="java.sql.*" %>
    <%
    //driver
    String driverName="com.mysql.jdbc.Driver";
    //username
    String userName="test";
    //code
    String userPasswd="123";
    //database
    String dbName="test";
    //table name
    String tableName="mytab";
    //connection string
    String url="jdbc:mysql://localhost/"+dbName+"?user="+userName+"&password="+userPasswd;
    Class.forName("com.mysql.jdbc.Driver").newInstance();
    Connection connection=DriverManager.getConnection(url);
    Statement statement = connection.createStatement();
    String sql="SELECT * FROM "+tableName;
    ResultSet rs = statement.executeQuery(sql);
    ResultSetMetaData rmeta = rs.getMetaData();
    int numColumns=rmeta.getColumnCount();
    // output
    out.print("id");
    out.print("|");
    out.print("num");
    out.print("<br>");
    while(rs.next()) {
    out.print(rs.getString(1)+" ");
    out.print("|");
    out.print(rs.getString(2));
    out.print("<br>");
    out.print("<br>");
    out.print("successful!");
    rs.close();
    statement.close();
    connection.close();
    %>
    How can I test the connection JSP+Tomcat+mysql works OK?
    Thanks again!

  • Photoshop7 start problem

    On my Windows Vista PC I run several Adobe programs: the CS3 suite, Illustrator9, Reader9, but also Photoshop7 and ImageReady7. Two days ago suddenly all Adobe programs refused to start, including the Reader . Apparently, there was a problem with the licences. I have downloaded the LicenceRecovery program from Adobe Support, and having run it, as expected, all programs did run again.......except for one: Photoshop7. Every time when I start the program, it begins loading all the necessary modules, but then a Windows error message appears, saying that the program stopped running, that there is a problem (?) and that I have to close the program.
    I've tried several times to de-install and re-install Photoshop7 and ImageReady7 (they both came on the same disc). Every time Set-up congratulates me that I have succesfully installed the programs, while in fact the start problem persists. ImageReady starts, Photoshop does'nt. As Photoshop7 is now an oudated program, Adobe's helpdesk refuses me to help . I suspect that something in the Windows Registry has been corrupted (by LicenceRecovery?), but I have no idea where to look for. Has anyone encountered this problem before, and If so what was the solution?

    Google is your friend.
    https://discussions.apple.com/thread/1197195?start=0&tstart=0
    Photoshop 7 no longer works in Leopard OSX 10.5
    Photoshop 7 was released in March 2002, it is now 10 years old.
    Sorry for your problems, but you have only 2 possible solutions:
    Roll back the OS to an earlier version
    Upgrade to a newer version of Photoshop (to save some money you could just get Photoshop Elements instead)
    You might want to download a trial version to Photoshop Elements to see if it does what you need before spending any money.
    Good Luck

  • CRS on Redhat 5 auto-start problem

    Dear all
    Recently I tried to install Oracle 10gR2 on Redhat 5. I did research and took all the necessary actions to install it on Redhat. Everything went well, according to the documents and at the end of the installation, all the resources were up and running. However, after the install, only the VIP was up and ONS and GSD was in unknown format. When I stop the nodeapps and start it again, everything stars working. It seems that the problem is something to do with boot process. I tried to put some delay ( for OCR mount ) but still no luck. This is the result from crsd.log from node1 when node2 is down.. :
    2009-06-24 22:00:07.461: [ default][3594852768]0CRS Daemon Starting
    2009-06-24 22:00:07.461: [ CRSMAIN][3594852768]0Checking the OCR device
    2009-06-24 22:00:07.464: [ CRSMAIN][3594852768]0Connecting to the CSS Daemon
    2009-06-24 22:00:07.838: [ COMMCRS][1103116608]clsc_connect: (0x151f20d0) no listener at (ADDRESS=(PROTOCOL=ipc)(KEY=OCSSD_LL_rac1dr_crsdr))
    2009-06-24 22:00:07.838: [ CSSCLNT][3594852768]clsssInitNative: connect failed, rc 9
    2009-06-24 22:00:07.838: [  CRSRTI][3594852768]0CSS is not ready. Received status 3 from CSS. Waiting for good status ..
    2009-06-24 22:00:09.307: [ COMMCRS][1103116608]clsc_connect: (0x151f23b0) no listener at (ADDRESS=(PROTOCOL=ipc)(KEY=OCSSD_LL_rac1dr_crsdr))
    2009-06-24 22:00:09.307: [ CSSCLNT][3594852768]clsssInitNative: connect failed, rc 9
    2009-06-24 22:00:09.307: [  CRSRTI][3594852768]0CSS is not ready. Received status 3 from CSS. Waiting for good status ..
    2009-06-24 22:00:10.773: [ COMMCRS][1103116608]clsc_connect: (0x151f25c0) no listener at (ADDRESS=(PROTOCOL=ipc)(KEY=OCSSD_LL_rac1dr_crsdr))
    2009-06-24 22:00:10.773: [ CSSCLNT][3594852768]clsssInitNative: connect failed, rc 9
    2009-06-24 22:00:10.774: [  CRSRTI][3594852768]0CSS is not ready. Received status 3 from CSS. Waiting for good status ..
    2009-06-24 22:00:12.150: [ COMMCRS][1103116608]clsc_connect: (0x151f2880) no listener at (ADDRESS=(PROTOCOL=ipc)(KEY=OCSSD_LL_rac1dr_crsdr))
    2009-06-24 22:00:12.150: [ CSSCLNT][3594852768]clsssInitNative: connect failed, rc 9
    2009-06-24 22:00:12.150: [  CRSRTI][3594852768]0CSS is not ready. Received status 3 from CSS. Waiting for good status ..
    2009-06-24 22:00:19.093: [    CRSD][3594852768]0Daemon Version: 10.2.0.1.0 Active Version: 10.2.0.1.0
    2009-06-24 22:00:19.093: [    CRSD][3594852768]0Active Version and Software Version are same
    2009-06-24 22:00:19.093: [ CRSMAIN][3594852768]0Initializing OCR
    2009-06-24 22:00:19.098: [  OCRRAW][3594852768]proprioo: for disk 0 (/u02/oradata/orcl/OCRFile), id match (1), my id set (503252545,1028247821) total id sets (1), 1st set (503252545,1028247821), 2nd set (0,0) my votes (2), total votes (2)
    2009-06-24 22:00:19.128: [  OCRMAS][1228994880]th_master:12: I AM THE NEW OCR MASTER at incar 1. Node Number = 1
    2009-06-24 22:00:19.129: [  OCRRAW][1228994880]proprioo: for disk 0 (/u02/oradata/orcl/OCRFile), id match (1), my id set (503252545,1028247821) total id sets (1), 1st set (503252545,1028247821), 2nd set (0,0) my votes (2), total votes (2)
    2009-06-24 22:00:19.144: [    CRSD][3594852768]0ENV Logging level for Module: allcomp 0
    2009-06-24 22:00:19.144: [    CRSD][3594852768]0ENV Logging level for Module: default 0
    2009-06-24 22:00:19.145: [    CRSD][3594852768]0ENV Logging level for Module: COMMCRS 0
    2009-06-24 22:00:19.145: [    CRSD][3594852768]0ENV Logging level for Module: COMMNS 0
    2009-06-24 22:00:19.146: [    CRSD][3594852768]0ENV Logging level for Module: CRSUI 0
    2009-06-24 22:00:19.146: [    CRSD][3594852768]0ENV Logging level for Module: CRSCOMM 0
    2009-06-24 22:00:19.148: [    CRSD][3594852768]0ENV Logging level for Module: CRSRTI 0
    2009-06-24 22:00:19.148: [    CRSD][3594852768]0ENV Logging level for Module: CRSMAIN 0
    2009-06-24 22:00:19.149: [  OCRSRV][1249974592]th_select_handler: Failed to retrieve procctx from ht. constr = [363817168] retval lht [-27] Signal CV.
    2009-06-24 22:00:19.149: [    CRSD][3594852768]0ENV Logging level for Module: CRSPLACE 0
    2009-06-24 22:00:19.149: [    CRSD][3594852768]0ENV Logging level for Module: CRSAPP 0
    2009-06-24 22:00:19.150: [    CRSD][3594852768]0ENV Logging level for Module: CRSRES 0
    2009-06-24 22:00:19.150: [    CRSD][3594852768]0ENV Logging level for Module: CRSOCR 0
    2009-06-24 22:00:19.151: [    CRSD][3594852768]0ENV Logging level for Module: CRSTIMER 0
    2009-06-24 22:00:19.151: [    CRSD][3594852768]0ENV Logging level for Module: CRSEVT 0
    2009-06-24 22:00:19.152: [    CRSD][3594852768]0ENV Logging level for Module: CRSD 0
    2009-06-24 22:00:19.153: [    CRSD][3594852768]0ENV Logging level for Module: CLUCLS 0
    2009-06-24 22:00:19.154: [    CRSD][3594852768]0ENV Logging level for Module: OCRRAW 0
    2009-06-24 22:00:19.155: [    CRSD][3594852768]0ENV Logging level for Module: OCROSD 0
    2009-06-24 22:00:19.155: [    CRSD][3594852768]0ENV Logging level for Module: CSSCLNT 0
    2009-06-24 22:00:19.156: [    CRSD][3594852768]0ENV Logging level for Module: OCRAPI 0
    2009-06-24 22:00:19.157: [    CRSD][3594852768]0ENV Logging level for Module: OCRUTL 0
    2009-06-24 22:00:19.158: [    CRSD][3594852768]0ENV Logging level for Module: OCRMSG 0
    2009-06-24 22:00:19.159: [    CRSD][3594852768]0ENV Logging level for Module: OCRCLI 0
    2009-06-24 22:00:19.159: [    CRSD][3594852768]0ENV Logging level for Module: OCRCAC 0
    2009-06-24 22:00:19.160: [    CRSD][3594852768]0ENV Logging level for Module: OCRSRV 0
    2009-06-24 22:00:19.160: [    CRSD][3594852768]0ENV Logging level for Module: OCRMAS 0
    2009-06-24 22:00:19.161: [ CRSMAIN][3594852768]0Filename is /u01/app/crs/crs/init/rac1dr.pid
    [  clsdmt][1417812288]Listening to (ADDRESS=(PROTOCOL=ipc)(KEY=rac1drDBG_CRSD))
    2009-06-24 22:00:19.506: [ CRSMAIN][3594852768]0Using Authorizer location: /u01/app/crs/crs/auth/
    2009-06-24 22:00:19.760: [ CRSMAIN][3594852768]0Initializing RTI
    2009-06-24 22:00:19.761: [CRSTIMER][1438792000]0Timer Thread Starting.
    2009-06-24 22:00:19.770: [  CRSRES][3594852768]0Parameter SECURITY = 1, running in USER Mode
    2009-06-24 22:00:19.770: [ CRSMAIN][3594852768]0Initializing EVMMgr
    2009-06-24 22:00:19.996: [ COMMCRS][1449281856]clsc_connect: (0x15b1dc20) no listener at (ADDRESS=(PROTOCOL=ipc)(KEY=SYSTEM.evm.acceptor.auth))
    2009-06-24 22:00:21.860: [ CRSMAIN][3594852768]0CRSD locked during state recovery, please wait.
    2009-06-24 22:00:22.494: [ CRSMAIN][3594852768]0CRSD recovered, unlocked.
    2009-06-24 22:00:22.496: [ CRSMAIN][3594852768]0QS socket on: (ADDRESS=(PROTOCOL=ipc)(KEY=ora_crsqs))
    2009-06-24 22:00:22.604: [ CRSMAIN][3594852768]0CRSD UI socket on: (ADDRESS=(PROTOCOL=ipc)(KEY=CRSD_UI_SOCKET))
    2009-06-24 22:00:22.607: [ CRSMAIN][3594852768]0E2E socket on: (ADDRESS=(PROTOCOL=tcp)(HOST=rac1dr-priv)(PORT=49896))
    2009-06-24 22:00:22.607: [ CRSMAIN][3594852768]0Starting Threads
    2009-06-24 22:00:22.607: [ CRSMAIN][3594852768]0CRS Daemon Started.
    2009-06-24 22:00:23.732: [  CRSRES][1554180416]0startRunnable: setting CLI values
    2009-06-24 22:00:23.821: [  CRSRES][1554180416]0Attempting to start `ora.rac2dr.vip` on member `rac1dr`
    2009-06-24 22:00:23.822: [  CRSRES][1543690560]0startRunnable: setting CLI values
    2009-06-24 22:00:23.935: [  CRSRES][1543690560]0Attempting to start `ora.rac1dr.vip` on member `rac1dr`
    2009-06-24 22:00:30.657: [  CRSRES][1554180416]0Start of `ora.rac2dr.vip` on member `rac1dr` succeeded.
    2009-06-24 22:00:30.705: [  CRSRES][1543690560]0Start of `ora.rac1dr.vip` on member `rac1dr` succeeded.
    2009-06-24 22:00:31.408: [  CRSRES][1554180416]0startRunnable: setting CLI values
    2009-06-24 22:00:31.410: [  CRSRES][1543690560]0startRunnable: setting CLI values
    2009-06-24 22:00:31.647: [  CRSRES][1554180416]0Attempting to start `ora.rac1dr.gsd` on member `rac1dr`
    2009-06-24 22:00:31.708: [  CRSRES][1543690560]0Attempting to start `ora.rac1dr.ons` on member `rac1dr`
    2009-06-24 22:00:32.538: [  CRSEVT][1554180416]0CAAMonitorHandler :: 0:Action Script /u01/app/crs/bin/racgwrap(start) timed out for ora.rac1dr.gsd! (timeout=600)
    2009-06-24 22:00:32.538: [  CRSAPP][1554180416]0StartResource error for ora.rac1dr.gsd error code = -2
    2009-06-24 22:00:32.573: [  CRSEVT][1543690560]0CAAMonitorHandler :: 0:Action Script /u01/app/crs/bin/racgwrap(start) timed out for ora.rac1dr.ons! (timeout=600)
    2009-06-24 22:00:32.573: [  CRSAPP][1543690560]0StartResource error for ora.rac1dr.ons error code = -2
    2009-06-24 22:00:32.737: [  CRSEVT][1554180416]0CAAMonitorHandler :: 0:Action Script /u01/app/crs/bin/racgwrap(stop) timed out for ora.rac1dr.gsd! (timeout=600)
    2009-06-24 22:00:32.737: [  CRSAPP][1554180416]0StopResource error for ora.rac1dr.gsd error code = -2
    2009-06-24 22:00:32.837: [  CRSEVT][1543690560]0CAAMonitorHandler :: 0:Action Script /u01/app/crs/bin/racgwrap(stop) timed out for ora.rac1dr.ons! (timeout=600)
    2009-06-24 22:00:32.837: [  CRSAPP][1543690560]0StopResource error for ora.rac1dr.ons error code = -2
    2009-06-24 22:00:32.873: [  CRSRES][1554180416]0X_OP_StopResourceFailed : Stop Resource failed
    (File: rti.cpp, line: 1698
    2009-06-24 22:00:32.873: [  CRSRES][1554180416][ALERT]0`ora.rac1dr.gsd` on member `rac1dr` has experienced an unrecoverable failure.
    2009-06-24 22:00:32.873: [  CRSRES][1554180416]0Human intervention required to resume its availability.
    2009-06-24 22:00:32.921: [  CRSRES][1543690560]0X_OP_StopResourceFailed : Stop Resource failed
    (File: rti.cpp, line: 1698
    2009-06-24 22:00:32.921: [  CRSRES][1543690560][ALERT]0`ora.rac1dr.ons` on member `rac1dr` has experienced an unrecoverable failure.
    2009-06-24 22:00:32.921: [  CRSRES][1543690560]0Human intervention required to resume its availability.
    Any help is highly appreciated.
    Kamy

    CRS on RHEL 5.5 auto-start problem
    hi all
    Recently I install RAC Oracle 10gR2 on Red hat RHEL 5.5. “Two node cluster, iscsi storage, ocfs2 mounted files & ASM ”
    I did research and took all the necessary actions to install it on Red hat. Everything went well, according to the documents and at the end of the installation, all the resources were up and running. However, after the install, only the VIP was up and ONS and GSD ,ASM and the other services was in unknown state. When I stop the CRS & start it –all again, everything stars working. Please friends I need to fix this problem because the cluster services and the client workstation are stopping when the servicers is relocated to node 1 after the server reboot because the CRS did not worked still on node and manual starting is taking time.
    This is the result from crsd.log from node1 when node is online .
    Name Type Target State Host
    ora....SM1.asm      application ONLINE UNKNOWN linux1
    ora....X1.lsnr      application ONLINE UNKNOWN linux1
    ora.linux1.gsd     application ONLINE UNKNOWN linux1
    ora.linux1.ons      application ONLINE UNKNOWN linux1
    ora.linux1.vip     application ONLINE ONLINE linux1
    ora....SM2.asm     application ONLINE ONLINE linux2
    ora....X2.lsnr      application ONLINE ONLINE linux2
    ora.linux2.gsd      application ONLINE ONLINE linux2
    ora.linux2.ons     application ONLINE ONLINE linux2
    ora.linux2.vip      application ONLINE ONLINE linux2
    ora.mutdb.db      application ONLINE ONLINE linux2
    ora....b1.inst      application ONLINE OFFLINE
    ora....b2.inst      application ONLINE ONLINE linux2
    ora...._taf.cs      application ONLINE ONLINE linux2
    ora....db1.srv      application ONLINE UNKNOWN linux1
    ora....db2.srv      application ONLINE ONLINE linux2
    ############################### CRS Log ON Node 1 ##################################
    2010-05-27 11:54:57.357: [ default][3741415840][ENTER]0
    Oracle Database 10g CRS Release 10.2.0.1.0 Production Copyright 1996, 2004, Oracle. All rights reserved
    2010-05-27 11:54:57.366: [ default][3741415840]0CRS Daemon Starting
    2010-05-27 11:54:57.366: [ CRSMAIN][3741415840]0Checking the OCR device
    2010-05-27 11:54:57.379: [ CRSMAIN][3741415840]0Connecting to the CSS Daemon
    2010-05-27 11:54:57.783: [ COMMCRS][1107867968]clsc_connect: (0x8481ce0) no listener at (ADDRESS=(PROTOCOL=ipc)(KEY=OCSSD_LL_linux1_crs))
    2010-05-27 11:54:57.783: [ CSSCLNT][3741415840]clsssInitNative: connect failed, rc 9
    2010-05-27 11:54:57.783: [  CRSRTI][3741415840]0CSS is not ready. Received status 3 from CSS. Waiting for good status ..
    2010-05-27 11:54:59.182: [ COMMCRS][1107867968]clsc_connect: (0x8481f60) no listener at (ADDRESS=(PROTOCOL=ipc)(KEY=OCSSD_LL_linux1_crs))
    2010-05-27 11:54:59.182: [ CSSCLNT][3741415840]clsssInitNative: connect failed, rc 9
    2010-05-27 11:54:59.182: [  CRSRTI][3741415840]0CSS is not ready. Received status 3 from CSS. Waiting for good status ..
    2010-05-27 11:55:00.569: [ COMMCRS][1107867968]clsc_connect: (0x84821f0) no listener at (ADDRESS=(PROTOCOL=ipc)(KEY=OCSSD_LL_linux1_crs))
    2010-05-27 11:55:00.569: [ CSSCLNT][3741415840]clsssInitNative: connect failed, rc 9
    2010-05-27 11:55:00.569: [  CRSRTI][3741415840]0CSS is not ready. Received status 3 from CSS. Waiting for good status ..
    2010-05-27 11:55:01.954: [ COMMCRS][1107867968]clsc_connect: (0x84824b0) no listener at (ADDRESS=(PROTOCOL=ipc)(KEY=OCSSD_LL_linux1_crs))
    2010-05-27 11:55:01.954: [ CSSCLNT][3741415840]clsssInitNative: connect failed, rc 9
    2010-05-27 11:55:01.954: [  CRSRTI][3741415840]0CSS is not ready. Received status 3 from CSS. Waiting for good status ..
    2010-05-27 11:55:05.924: [    CRSD][3741415840]0Daemon Version: 10.2.0.1.0 Active Version: 10.2.0.1.0
    2010-05-27 11:55:05.924: [    CRSD][3741415840]0Active Version and Software Version are same
    2010-05-27 11:55:05.924: [ CRSMAIN][3741415840]0Initializing OCR
    2010-05-27 11:55:05.937: [  OCRRAW][3741415840]proprioo: for disk 0 (/u02/OCR_1.dbf), id match (1), my id set (1273042630,1936275375) total id sets (1), 1st set (1273042630,1936275375), 2nd set (0,0) my votes (1), total votes (2)
    2010-05-27 11:55:05.938: [  OCRRAW][3741415840]proprioo: for disk 1 (/u03/OCR_2.dbf), id match (1), my id set (1273042630,1936275375) total id sets (1), 1st set (1273042630,1936275375), 2nd set (0,0) my votes (1), total votes (2)
    2010-05-27 11:55:05.981: [    CRSD][3741415840]0ENV Logging level for Module: allcomp 0
    2010-05-27 11:55:05.983: [    CRSD][3741415840]0ENV Logging level for Module: default 0
    2010-05-27 11:55:05.994: [    CRSD][3741415840]0ENV Logging level for Module: COMMCRS 0
    2010-05-27 11:55:05.996: [    CRSD][3741415840]0ENV Logging level for Module: COMMNS 0
    2010-05-27 11:55:05.999: [    CRSD][3741415840]0ENV Logging level for Module: CRSUI 0
    2010-05-27 11:55:06.001: [    CRSD][3741415840]0ENV Logging level for Module: CRSCOMM 0
    2010-05-27 11:55:06.003: [    CRSD][3741415840]0ENV Logging level for Module: CRSRTI 0
    2010-05-27 11:55:06.006: [    CRSD][3741415840]0ENV Logging level for Module: CRSMAIN 0
    2010-05-27 11:55:06.008: [    CRSD][3741415840]0ENV Logging level for Module: CRSPLACE 0
    2010-05-27 11:55:06.010: [    CRSD][3741415840]0ENV Logging level for Module: CRSAPP 0
    2010-05-27 11:55:06.012: [    CRSD][3741415840]0ENV Logging level for Module: CRSRES 0
    2010-05-27 11:55:06.015: [    CRSD][3741415840]0ENV Logging level for Module: CRSOCR 0
    2010-05-27 11:55:06.017: [    CRSD][3741415840]0ENV Logging level for Module: CRSTIMER 0
    2010-05-27 11:55:06.019: [  OCRSRV][1223256384]th_select_handler: Failed to retrieve procctx from ht. constr = [148436880] retval lht [-27] Signal CV.
    2010-05-27 11:55:06.019: [    CRSD][3741415840]0ENV Logging level for Module: CRSEVT 0
    2010-05-27 11:55:06.022: [    CRSD][3741415840]0ENV Logging level for Module: CRSD 0
    2010-05-27 11:55:06.024: [    CRSD][3741415840]0ENV Logging level for Module: CLUCLS 0
    2010-05-27 11:55:06.027: [    CRSD][3741415840]0ENV Logging level for Module: OCRRAW 0
    2010-05-27 11:55:06.029: [    CRSD][3741415840]0ENV Logging level for Module: OCROSD 0
    2010-05-27 11:55:06.032: [    CRSD][3741415840]0ENV Logging level for Module: CSSCLNT 0
    2010-05-27 11:55:06.034: [    CRSD][3741415840]0ENV Logging level for Module: OCRAPI 0
    2010-05-27 11:55:06.036: [    CRSD][3741415840]0ENV Logging level for Module: OCRUTL 0
    2010-05-27 11:55:06.039: [    CRSD][3741415840]0ENV Logging level for Module: OCRMSG 0
    2010-05-27 11:55:06.041: [    CRSD][3741415840]0ENV Logging level for Module: OCRCLI 0
    2010-05-27 11:55:06.043: [    CRSD][3741415840]0ENV Logging level for Module: OCRCAC 0
    2010-05-27 11:55:06.046: [    CRSD][3741415840]0ENV Logging level for Module: OCRSRV 0
    2010-05-27 11:55:06.048: [    CRSD][3741415840]0ENV Logging level for Module: OCRMAS 0
    2010-05-27 11:55:06.048: [ CRSMAIN][3741415840]0Filename is /u01/app/crs/crs/init/linux1.pid
    [  clsdmt][1401583936]Listening to (ADDRESS=(PROTOCOL=ipc)(KEY=linux1DBG_CRSD))
    2010-05-27 11:55:06.119: [  OCRSRV][1223256384]th_select_handler: Failed to retrieve procctx from ht. constr = [149741888] retval lht [-27] Signal CV.
    2010-05-27 11:55:07.002: [ CRSMAIN][3741415840]0Using Authorizer location: /u01/app/crs/crs/auth/
    2010-05-27 11:55:07.008: [  OCRSRV][1223256384]th_select_handler: Failed to retrieve procctx from ht. constr = [149755728] retval lht [-27] Signal CV.
    2010-05-27 11:55:07.230: [  OCRSRV][1223256384]th_select_handler: Failed to retrieve procctx from ht. constr = [149740416] retval lht [-27] Signal CV.
    2010-05-27 11:55:07.380: [ CRSMAIN][3741415840]0Initializing RTI
    2010-05-27 11:55:07.380: [CRSTIMER][1422563648]0Timer Thread Starting.
    2010-05-27 11:55:07.386: [  CRSRES][3741415840]0Parameter SECURITY = 1, running in USER Mode
    2010-05-27 11:55:07.386: [ CRSMAIN][3741415840]0Initializing EVMMgr
    2010-05-27 11:55:07.453: [  OCRSRV][1223256384]th_select_handler: Failed to retrieve procctx from ht. constr = [150974816] retval lht [-27] Signal CV.
    2010-05-27 11:55:07.474: [  OCRSRV][1223256384]th_select_handler: Failed to retrieve procctx from ht. constr = [150975552] retval lht [-27] Signal CV.
    2010-05-27 11:55:07.485: [  OCRSRV][1223256384]th_select_handler: Failed to retrieve procctx from ht. constr = [150988032] retval lht [-27] Signal CV.
    2010-05-27 11:55:07.723: [  OCRSRV][1223256384]th_select_handler: Failed to retrieve procctx from ht. constr = [150998720] retval lht [-27] Signal CV.
    2010-05-27 11:55:07.734: [ CRSMAIN][3741415840]0CRSD locked during state recovery, please wait.
    2010-05-27 11:55:07.737: [  OCRSRV][1223256384]th_select_handler: Failed to retrieve procctx from ht. constr = [150997792] retval lht [-27] Signal CV.
    2010-05-27 11:55:07.923: [  OCRSRV][1223256384]th_select_handler: Failed to retrieve procctx from ht. constr = [151007072] retval lht [-27] Signal CV.
    2010-05-27 11:55:08.032: [ CRSMAIN][3741415840]0CRSD recovered, unlocked.
    2010-05-27 11:55:08.032: [ CRSMAIN][3741415840]0QS socket on: (ADDRESS=(PROTOCOL=ipc)(KEY=ora_crsqs))
    2010-05-27 11:55:08.051: [ CRSMAIN][3741415840]0CRSD UI socket on: (ADDRESS=(PROTOCOL=ipc)(KEY=CRSD_UI_SOCKET))
    2010-05-27 11:55:08.055: [ CRSMAIN][3741415840]0E2E socket on: (ADDRESS=(PROTOCOL=tcp)(HOST=linux1-priv)(PORT=49896))
    2010-05-27 11:55:08.055: [ CRSMAIN][3741415840]0Starting Threads
    2010-05-27 11:55:08.055: [ CRSMAIN][3741415840]0CRS Daemon Started.
    2010-05-27 11:55:08.204: [  CRSRES][1527462208]0StopResource: setting CLI values
    2010-05-27 11:55:08.220: [  CRSRES][1527462208]0Attempting to stop `ora.linux1.vip` on member `linux2`
    2010-05-27 11:55:08.515: [  CRSRES][1527462208]0Stop of `ora.linux1.vip` on member `linux2` succeeded.
    2010-05-27 11:55:08.529: [  CRSRES][1527462208]0startRunnable: setting CLI values
    2010-05-27 11:55:08.529: [  CRSRES][1527462208]0Attempting to start `ora.linux1.vip` on member `linux1`
    2010-05-27 11:55:08.686: [  OCRSRV][1223256384]th_select_handler: Failed to retrieve procctx from ht. constr = [154566384] retval lht [-27] Signal CV.
    2010-05-27 11:55:14.000: [  CRSRES][1527462208]0Start of `ora.linux1.vip` on member `linux1` succeeded.
    2010-05-27 11:55:14.231: [  CRSRES][1527462208]0startRunnable: setting CLI values
    2010-05-27 11:55:14.272: [  CRSRES][1527462208]0Attempting to start `ora.linux1.LISTENER_LINUX1.lsnr` on member `linux1`
    2010-05-27 11:55:14.426: [  CRSEVT][1527462208]0CAAMonitorHandler :: 0:Action Script /u01/app/oracle/product/10.2.0/db_1/bin/racgwrap(start) timed out for ora.linux1.LISTENER_LINUX1.lsnr! (timeout=600)
    2010-05-27 11:55:14.426: [  CRSAPP][1527462208]0StartResource error for ora.linux1.LISTENER_LINUX1.lsnr error code = -2
    2010-05-27 11:55:14.489: [  CRSEVT][1527462208]0CAAMonitorHandler :: 0:Action Script /u01/app/oracle/product/10.2.0/db_1/bin/racgwrap(stop) timed out for ora.linux1.LISTENER_LINUX1.lsnr! (timeout=600)
    2010-05-27 11:55:14.489: [  CRSAPP][1527462208]0StopResource error for ora.linux1.LISTENER_LINUX1.lsnr error code = -2
    2010-05-27 11:55:14.495: [  CRSRES][1527462208]0X_OP_StopResourceFailed : Stop Resource failed
    (File: rti.cpp, line: 1698
    2010-05-27 11:55:14.495: [  CRSRES][1527462208][ALERT]0`ora.linux1.LISTENER_LINUX1.lsnr` on member `linux1` has experienced an unrecoverable failure.
    2010-05-27 11:55:14.495: [  CRSRES][1527462208]0Human intervention required to resume its availability.
    2010-05-27 11:55:14.628: [  CRSRES][1527462208]0startRunnable: setting CLI values
    2010-05-27 11:55:14.698: [  CRSRES][1527462208]0Attempting to start `ora.linux1.ASM1.asm` on member `linux1`
    2010-05-27 11:55:14.836: [  CRSEVT][1527462208]0CAAMonitorHandler :: 0:Action Script /u01/app/oracle/product/10.2.0/db_1/bin/racgwrap(start) timed out for ora.linux1.ASM1.asm! (timeout=600)
    2010-05-27 11:55:14.836: [  CRSAPP][1527462208]0StartResource error for ora.linux1.ASM1.asm error code = -2
    2010-05-27 11:55:14.875: [  CRSEVT][1527462208]0CAAMonitorHandler :: 0:Action Script /u01/app/oracle/product/10.2.0/db_1/bin/racgwrap(stop) timed out for ora.linux1.ASM1.asm! (timeout=600)
    2010-05-27 11:55:14.875: [  CRSAPP][1527462208]0StopResource error for ora.linux1.ASM1.asm error code = -2
    2010-05-27 11:55:14.881: [  CRSRES][1527462208]0X_OP_StopResourceFailed : Stop Resource failed
    (File: rti.cpp, line: 1698
    2010-05-27 11:55:14.881: [  CRSRES][1527462208][ALERT]0`ora.linux1.ASM1.asm` on member `linux1` has experienced an unrecoverable failure.
    2010-05-27 11:55:14.881: [  CRSRES][1527462208]0Human intervention required to resume its availability.
    2010-05-27 11:55:15.051: [  CRSRES][1527462208]0CRS-1028: Dependency analysis failed because of:
    'Resource in UNKNOWN state: ora.linux1.ASM1.asm'
    2010-05-27 11:55:15.185: [  CRSRES][1527462208]0startRunnable: setting CLI values
    2010-05-27 11:55:15.237: [  CRSRES][1537952064]0startRunnable: setting CLI values
    2010-05-27 11:55:15.306: [  CRSRES][1558931776]0startRunnable: setting CLI values
    2010-05-27 11:55:15.339: [  CRSRES][1527462208]0Attempting to start `ora.linux1.gsd` on member `linux1`
    2010-05-27 11:55:15.397: [  CRSRES][1537952064]0Attempting to start `ora.linux1.ons` on member `linux1`
    2010-05-27 11:55:15.407: [  CRSRES][1558931776]0Attempting to start `ora.mutdb.mutdb_taf.mutdb1.srv` on member `linux1`
    2010-05-27 11:55:15.789: [  CRSEVT][1527462208]0CAAMonitorHandler :: 0:Action Script /u01/app/crs/bin/racgwrap(start) timed out for ora.linux1.gsd! (timeout=600)
    2010-05-27 11:55:15.789: [  CRSAPP][1527462208]0StartResource error for ora.linux1.gsd error code = -2
    2010-05-27 11:55:15.808: [  CRSEVT][1537952064]0CAAMonitorHandler :: 0:Action Script /u01/app/crs/bin/racgwrap(start) timed out for ora.linux1.ons! (timeout=600)
    2010-05-27 11:55:15.808: [  CRSAPP][1537952064]0StartResource error for ora.linux1.ons error code = -2
    2010-05-27 11:55:15.812: [  CRSEVT][1558931776]0CAAMonitorHandler :: 0:Action Script /u01/app/oracle/product/10.2.0/db_1/bin/racgwrap(start) timed out for ora.mutdb.mutdb_taf.mutdb1.srv! (timeout=600)
    2010-05-27 11:55:15.812: [  CRSAPP][1558931776]0StartResource error for ora.mutdb.mutdb_taf.mutdb1.srv error code = -2
    2010-05-27 11:55:15.838: [  CRSEVT][1527462208]0CAAMonitorHandler :: 0:Action Script /u01/app/crs/bin/racgwrap(stop) timed out for ora.linux1.gsd! (timeout=600)
    2010-05-27 11:55:15.838: [  CRSAPP][1527462208]0StopResource error for ora.linux1.gsd error code = -2
    2010-05-27 11:55:15.844: [  CRSEVT][1537952064]0CAAMonitorHandler :: 0:Action Script /u01/app/crs/bin/racgwrap(stop) timed out for ora.linux1.ons! (timeout=600)
    2010-05-27 11:55:15.845: [  CRSAPP][1537952064]0StopResource error for ora.linux1.ons error code = -2
    2010-05-27 11:55:15.849: [  CRSRES][1527462208]0X_OP_StopResourceFailed : Stop Resource failed
    (File: rti.cpp, line: 1698
    2010-05-27 11:55:15.849: [  CRSRES][1527462208][ALERT]0`ora.linux1.gsd` on member `linux1` has experienced an unrecoverable failure.
    2010-05-27 11:55:15.849: [  CRSRES][1527462208]0Human intervention required to resume its availability.
    2010-05-27 11:55:15.859: [  CRSEVT][1558931776]0CAAMonitorHandler :: 0:Action Script /u01/app/oracle/product/10.2.0/db_1/bin/racgwrap(stop) timed out for ora.mutdb.mutdb_taf.mutdb1.srv! (timeout=600)
    2010-05-27 11:55:15.860: [  CRSAPP][1558931776]0StopResource error for ora.mutdb.mutdb_taf.mutdb1.srv error code = -2
    2010-05-27 11:55:15.863: [  CRSRES][1537952064]0X_OP_StopResourceFailed : Stop Resource failed
    (File: rti.cpp, line: 1698
    2010-05-27 11:55:15.863: [  CRSRES][1537952064][ALERT]0`ora.linux1.ons` on member `linux1` has experienced an unrecoverable failure.
    2010-05-27 11:55:15.863: [  CRSRES][1537952064]0Human intervention required to resume its availability.
    2010-05-27 11:55:15.869: [  CRSRES][1558931776]0X_OP_StopResourceFailed : Stop Resource failed
    (File: rti.cpp, line: 1698
    2010-05-27 11:55:15.869: [  CRSRES][1558931776][ALERT]0`ora.mutdb.mutdb_taf.mutdb1.srv` on member `linux1` has experienced an unrecoverable failure.
    2010-05-27 11:55:15.869: [  CRSRES][1558931776]0Human intervention required to resume its availability.
    2010-05-27 11:55:20.450: [  OCRSRV][1223256384]th_select_handler: Failed to retrieve procctx from ht. constr = [154578560] retval lht [-27] Signal CV.
    2010-05-27 11:55:21.130: [  OCRSRV][1223256384]th_select_handler: Failed to retrieve procctx from ht. constr = [154578560] retval lht [-27] Signal CV.
    I tired this solution it was on website “but it did not work”
    下面是METALINK给出的解释:
    I have checked the information provided. crsd is reporting timeouts when running the checking actions. The racgmain process on the other hand, executed by racgwrap, remain running so the number is increasing.This issue has been reported in Bug 7009245 ""RACGMAIN CHECK" PROCESS NOT TERMINATING", and drill down and determine the root cause this require to get a stack trace from racgmain process(es) as well as you should runOSWatcher with a specific parameters, finally the issue of Bug 7009245 has been fixed by the fix of Bug 6196746 (unpublished bug -- summary is "racgwrap spawns racgmain child process. crsd timeout kills racgwrap but bot racgmain")So please perform the following action plan that intend to solve the issue.
    .ACTION PLAN
    ============
    1. Stop CRS on this node.
    2. Make a copy of racgwrap located under $ORACLE_HOME/bin and $CRS_HOME/bin
    3. Edit the file racgwrap and modify the last 3 lines from:
    .$ORACLE_HOME/bin/racgmain "$@"
    status=$?
    exit $status
    .to:
    .# Line added to test fix for Bug 6196746
    exec $ORACLE_HOME/bin/racgmain "$@"
    .4. Restart CRS and make sure that all the resources are startes
    This should solve the issue. also if you are not able to stop CRS right now, you can try the
    solution without crs stop/start.
    BUT IT DID NOT WORK
    ###################################################3

  • How to run class after Tomcat starts?

    Hello!,
    I want to run a class after Tomcat start.
    How can I achieve?
    Reg,
    Chetan

    Well the official way to do it it to create a class which implements org.apache.catalina.LifecycleListener. Then you can name the class in a <Listener> element in server.xml. It can appear at various levels e.g. inside the Engine block, and it will receive notification when that level starts and stops.

  • Perform action when Tomcat start and stop

    Hi. I'd read a thread about performing an action when Tomcat starts with configuring the web.xml file. I just wonder whether it's probable or not to perform an action when the Tomcat is stop. I mean like when the Tomcat is called to stop it'll run a class or call a servlet first before it's finally shut down. Is it possible to do that???
    Thanx!

    It should by possible with a Listener. You can see the use within the server.xml with the ServletLifecycleListener.
    <Listener className="org.apache.catalina.mbeans.ServerLifecycleListener"
    debug="0"/>
    Look into the LifecycleListener Interface from the source and the implementations. I see some samples with mBeans using this interface.
    Examples:
    http://rollerweblogger.org/page/roller/20040625
    I 'have never try it out, but it should work like described!
    regards Dietmar

  • Are you guys going to fix the iTunes 10.5 start problem for Windows 64?

    Windows 7 , 64 bit. If you have any connection at all to the Internet, I am sure you are aware of the iTunes not starting problem. ALL the suggested fixes are useless for some...uninstall, reinstall, drive wipe, reboot, registry edit, registry cleaners.....all to no avail. APPLE stuff is supposed to work....I have 2 new phones here that require 10.5 to work......blah. When you click the icon, or try to start from the .exe for that matter, it appears like it is about to start...and then nothing......if you check task manager, you can see it is running.......I have tried every permutation of a fix, including wiping the hard drive and reinstalling Win7 and updating......no good
    Come on APPLE fix this problem......dont make me buy android phones.......

    On the "flip-side", I had the smoothest and quickest iTunes upgrade/install ever.  This was on my Windows 7 Professional, 64bit system.
    That you performed an assumedly 'clean' reinstall of your OS, is not a good sign.  Obviously, iTunes doesn't like something within your system.
    Here are the next steps that I would take if in your position:
    -  Are you absolutely positive that you have the 64bit version of iTunes?
    -  Re-download a new copy of the 64bit version of iTunes 10.5
    -  Try downloading iTunes from one of the 'mirror sites' - FileHippo is good
    -  Call your PC's manufacturer and see if they are aware of any conflicts with your specific machine's build with respect to iTunes
    -  Temporarily use another PC (if available) to get your iPhones up and running
    Best of Luck

  • Cold start problems...?

    I know it sounds ridiculous, but my computers are used to work in pretty warm environment. Now, since we have those low temperatures in Florida, especially over night, I experience a lot of problems with starting them. Can it be some internal battery problems ?
    Quicksilver 933: Would keep on coming up with the "You need to restart your computer" - message after seconds of spinning the start wheel (grey screen with apple symbol). Guess what.. I though, the HD is done, took it out, put it into my double processor and ran DW on it with no problem. It appeared on the desktop. Put it back into the Quicksilver and the starting problem occurs again.
    iBook G4: No way to get it started. It turns the starting wheel for minutes and then the blue screen appears, where you can move the cursor, but that's it...tried 15 times, no change.
    Anybody with an idea ?
    Thanks
    bafomet

    Well.. I lived all my life in Europe (Germany) and know what kind of cold you are talking about. But it really feels cold after years in Florida, what happens right now..
    In the meantime I tried more options with no results. Restarted from the CD, was able to run DW and Disk Utility on both computers and didn't get them to run.. The iBook came up with an index code failure, but amazingly you can run DiskWarrior and it seems no problem..
    I wouldn't know how to run Hardware Test, if they are not starting..
    Thanks
    bafomet
    P.S. Have another issue now on my double G4 with node system failure... crazy... Have 4 macs at home and just one barely runs, the one I'm writing from. I really didn't want to blame the cold but now they are 3...

  • MSI NX8800GT-T2D1GE-OC Starting Problems

    Sinds yesterday i got starting problems with my pc.. well it didnt start at all. So i started to trace the problem and switching out part.. and i finally traced the problem to my grafics card. When i put another grafics card in my pc i boots up no problem but when i put my NX8800GT-T2D1GE-OC back in it just wont boot. when i try my NX8800GT-T2D1GE-OC in another pc that pc wont startup at all. so any1 know whats wrong with my Grafics card? it looks just fine and as far as i know nothing happend to it.
    System Specs:
    Cpu     Intel Core 2 Quad Q6600 OCed At 3,4 Ghz
    Motherboard    ASUS Striker II Formula
    Memory    2x OCZ SLI XTC 2 GB DDR2-1066 CL5 kit
    Grafics Card    MSI NX8800GT-T2D1GE-OC
    HardDisk    Western Digital Caviar RE2 500 GB SATA2
    DvD Drive    ASUS DRW-1814BL Silver
    Soundcard:    SupremeFX
    Case:    Aerocool AeroEngine II Silver
    Powersupply:    Gigabyte ODIN Pro 800W    
    Cpu Cooling: XSPC WaterBlock    
    Screen:    Sony SDM-S74
    Keyboard:    Logitech G11 Gaming Keyboard
    Mouse:    Logitech G5 Gaming Laser Mouse
    Speakers:    Creative Inspire P580    
    Casefans:   4x Zalman ZM-F3 120 mm Blue    
    OS:   Windows Vista Ultimate
    Other components:   
    Zalman ZM-MFC1 Plus Fancontroller    
    Ocz Geheugen Koeler

    Quote from: BOSSKILLER on 21-June-08, 20:41:36
    Did you hear any beeps?
    Make sure that VGA is sitting very well into PCI-E slot.
    Have you done >>Clear CMOS Guide<< yet?
    No i didnt but i dont have a speaker attached. i got a little lcd thats shows the boot sequence. when i try to start it with my card it it keeps saying: Initalising CPU. so i doesn't even start up with the card attached. when i disconnect the card the boot sequence goes normal. also i reseated the card many times and i tried different pci-e slots on my motherboard. nothing helps. i hope we can figure it out.. im afraid just broken somehow..although i wouldn't know what happend.
    Also ive tried clearing the bios.. i tried everything i can think off.

  • Tomcat 4.0.x and JSP / JSTL performance problems.

    Hello everyone,
    I've got a web application where some of my JSP pages are rendering quite slowly. As an example I'll use a JSP page that I wrote for browsing through a user database. It uses two beans...
    1. jobBean - Ensures that all of the required (and correct) beans that will be used for processing the request have been loaded.
    2. browserBean - A basic JavaBean that holds a set of UserBean(s) and other information pertinent to database queries (start, limit, order).
    I'm using Apache Struts to map requests to the appropriate processing modules. Now the problem I'm having is that each request is taking between 1 and 2 seconds to execute. As you can imagine that's not going to allow for very many simaltaneous users. I've tracked the problem down to something JSP related. All of my code executes fairly quickly (I think). It takes about 20-30ms for my code to identify the request, load the requested data from the database, and convert it into a usable format (the browserBean). Here's my code...
    <%@ page contentType="text/html"%>
    <%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <META http-equiv="Cache-Control" content="no-cache">
    <title>
    Browse Users
    </title>
    </head>
    <body>
    <!-- Set up the OrganizationBeans for use -->
    <jsp:useBean id="jobBean" class="com.vacode.jobs.generic.JobBean" scope="session" />
    <jsp:useBean id="browserBean" class="com.vacode.mqdb.beansets.user.UserBrowserBean" scope="session" />
    <!---------------------------->
    <!-- Start Time Logged Here -->
    <!---------------------------->
    <c:if test="${jobBean.currentJob.name != 'BrowseUserJob'}">
         <!-- This page was accessed before everything was properly initialized -->
         <c:url var="browseUser" value="manageUsers.do">
              <c:param name="action" value="browse" />
         </c:url>
         <c:redirect url="${browseUser}" />
    </c:if>
    <form action="manageUsers.do" method="get">
         <input type="hidden" name="action" value="browse">
         <input type="hidden" name="start" value="<c:out value="${browserBean.dummyStart}" />">
         <input type="hidden" name="order" value="<c:out value="${browserBean.order}" />">
         I would like to view
         <select name="limit">
              <c:forEach begin="1" end="5" var="current">
                   <option value="<c:out value="${current*5}" />"
                        <c:if test="${browserBean.dummyLimit == current*5}">
                        selected
                        </c:if>
                   >
                    <c:out value="${current*5}" />
                   </option>
              </c:forEach>
         </select>
         results per page.
         <input type="submit" action="submit">
    </form>
    <c:url var="id" value="manageUsers.do">
         <c:param name="action" value="browse" />
         <c:param name="start" value="0" />
         <c:param name="order" value="USER_ID" />
         <c:param name="limit" value="${browserBean.dummyLimit}" />
    </c:url>
    <c:url var="name" value="manageUsers.do">
         <c:param name="action" value="browse" />
         <c:param name="start" value="0" />
         <c:param name="order" value="USER_NAME" />
         <c:param name="limit" value="${browserBean.dummyLimit}" />
    </c:url>
    <c:url var="firstName" value="manageUsers.do">
         <c:param name="action" value="browse" />
         <c:param name="start" value="0" />
         <c:param name="order" value="USER_FIRST_NAME" />
         <c:param name="limit" value="${browserBean.dummyLimit}" />
    </c:url>
    <c:url var="lastName" value="manageUsers.do">
         <c:param name="action" value="browse" />
         <c:param name="start" value="0" />
         <c:param name="order" value="USER_LAST_NAME" />
         <c:param name="limit" value="${browserBean.dummyLimit}" />
    </c:url>
    <c:url var="email" value="manageUsers.do">
         <c:param name="action" value="browse" />
         <c:param name="start" value="0" />
         <c:param name="order" value="USER_EMAIL_ADDRESS" />
         <c:param name="limit" value="${browserBean.dummyLimit}" />
    </c:url>
    <c:url var="organization" value="manageUsers.do">
         <c:param name="action" value="browse" />
         <c:param name="start" value="0" />
         <c:param name="order" value="USER_ORGANIZATION_NAME" />
         <c:param name="limit" value="${browserBean.dummyLimit}" />
    </c:url>
    <c:url var="status" value="manageUsers.do">
         <c:param name="action" value="browse" />
         <c:param name="start" value="0" />
         <c:param name="order" value="USER_STATUS_NAME" />
         <c:param name="limit" value="${browserBean.dummyLimit}" />
    </c:url>
    <c:url var="role" value="manageUsers.do">
         <c:param name="action" value="browse" />
         <c:param name="start" value="0" />
         <c:param name="order" value="ROLE_NAME" />
         <c:param name="limit" value="${browserBean.dummyLimit}" />
    </c:url>
    <table>
         <tr>
              <td><a href="<c:out value="${id}" />">Id</a></td>
              <td><a href="<c:out value="${name}" />">User Name</a></td>
              <td><a href="<c:out value="${firstName}" />">First Name</a></td>
              <td><a href="<c:out value="${lastName}" />">Last Name</a></td>
              <td><a href="<c:out value="${email}" />">E-Mail</a></td>
              <td><a href="<c:out value="${organization}" />">Organization</a></td>
              <td><a href="<c:out value="${status}" />">Status</a></td>
              <td><a href="<c:out value="${role}" />">User Type</a></td>
         </tr>
    <c:forEach items="${browserBean.beans}" var="bean">
         <tr>
              <c:url var="manage" value="manageUsers.do">
                   <c:param name="action" value="modify" />
                   <c:param name="beanId" value="${bean.userId}" />
              </c:url>
              <td><a href="<c:out value="${manage}" />"><c:out value="${bean.userId}" /></a></td>
              <td><c:out value="${bean.userName}" /></td>
              <td><c:out value="${bean.firstName}" /></td>
              <td><c:out value="${bean.firstName}" /></td>
              <td><c:out value="${bean.email}" /></td>
              <td><c:out value="${bean.organizationName}" /></td>
              <td><c:out value="${bean.statusName}" /></td>
              <td><c:out value="${bean.roleName}" /></td>
         </tr>
    </c:forEach>
    <!-------------------------->
    <!-- End Time Logged Here -->
    <!-------------------------->
    </table>
    <c:url var="next" value="manageUsers.do">
         <c:param name="action" value="browse" />
         <c:param name="start" value="${browserBean.nextPageStart}" />
         <c:param name="limit" value="${browserBean.dummyLimit}" />
         <c:param name="order" value="${browserBean.order}" />
    </c:url>
    <c:url var="previous" value="manageUsers.do">
         <c:param name="action" value="browse" />
         <c:param name="start" value="${browserBean.previousPageStart}" />
         <c:param name="limit" value="${browserBean.dummyLimit}" />
         <c:param name="order" value="${browserBean.order}" />
    </c:url>
    <c:if test="${browserBean.previousPageStart>-1}">
         <a href="<c:out value="${previous}" escapeXml="false" />">previous</a>
    </c:if>
    <c:if test="${browserBean.nextPageStart>-1}">
         <a href="<c:out value="${next}" escapeXml="false" />">next</a>
    </c:if>
    <br>
    <br>
    Quick Jump To Page:
    <c:forEach varStatus="loopTag" items="${browserBean.pageStartValues}" var="current">
    <c:choose>
         <c:when test="${loopTag.index+1==browserBean.currentPageNumber}">
              <c:out value="${loopTag.index+1}" />
         </c:when>
         <c:otherwise>
         <c:url var="thisPage" value="manageUsers.do">
              <c:param name="action" value="browse" />
              <c:param name="start" value="${current}" />
              <c:param name="limit" value="${browserBean.dummyLimit}" />
              <c:param name="order" value="${browserBean.order}" />
         </c:url>
         <a href="<c:out value="${thisPage}" />"><c:out value="${loopTag.index+1}" /></a>
         </c:otherwise>
    </c:choose>
    </c:forEach>
    <br>
    <br>
    Max Possible Pages: <c:out value="${browserBean.maxNumberOfPages}" />
    <br>
    Current Page: <c:out value="${browserBean.currentPageNumber}" />
    </body>
    </html>I've added comments where I timed my code from (by writing new Date().getTime() to the console). It usually takes between 1 and 2 seconds for that block of JSP to execute. I wrote a test class that should be very similar to the process (iterating over the forEach loop mainly) and it usually executed in 10ms to 20ms.
    I had a look at the servlets that were generated by Tomcat and I noticed that for each <c:url> I used there's about 300 lines of code (with several syncronized() methods). Could this have anything to do with it? If so, what could I do to improve the performance?
    Worth mentioning... The machine I am using is an AMD Athlon 1GHZ with 768MB RAM, 7200 RPM UDMA100 IDE HDD.
    I'm also using Tomcat integrated with a development environment (IntelliJ IDEA).
    Any help that anyone could offer is much appreciated.
    Thanks,
    Ryan

    Can you get acceptable performance if you hack out everything except the browserBean forEach loop? Maybe you are trying to do too much runtime EL evaluation on the page.
    If performance improves, you may want to push the URL construction and startValue computations to a Struts Action and put a bunch of objects on the requestScope (like "id_url", "name_url", "pageStartValue").
    Putting these computations in the Action would avoid having JSTL parse each of the ${} arguments, evaluating the expressions, and using costly reflection to turn ${browserBean.order} into browserBean.getOrder().

Maybe you are looking for

  • Podcasts no longer showing in Recently Added on iPod

    I recently received an update to iTunes. The next time I synced my iPod with new podcasts (which I download in reverse order[1] so that the items I want to listen to first are the last ones downloaded) I could not find my podcasts in the "Recently Ad

  • Why is my screen flashing

    The screen on my imac is flashing to "blue" every few seconds. Is this a video or processor problem?

  • How can I improve large deletes?

    Hi, In order to keep our database size to an acceptable level, we delete all records older than 4 hours, every 15 minutes with a delete statement like this: DELETE FROM mytable WHERE add_time < (1174391100000 - 14400000); add_time is a BIGINT contain

  • Recovering un-saved files from Pages 09.

    I have been doing a project on Pages 09 on my MacBook Pro and suddenly Pages 09 closed on me without warning and then another window opened asking me if i would like to re-open. So i re-opened Pages 09 and all my work had gone as i didn't save my wor

  • Responsibility rule in workflow

    hi , i have created a resposibility rule for workflow. i want to agent assignment to the responsibilitys. i have implementd in client 060. i want to do agent assignment in client 090. that icon is disable in 090 client. how cani do agent assignment f