Return-Path: X-Original-To: apmail-tomcat-users-archive@www.apache.org Delivered-To: apmail-tomcat-users-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 5987311985 for ; Wed, 2 Apr 2014 08:24:22 +0000 (UTC) Received: (qmail 45620 invoked by uid 500); 2 Apr 2014 08:24:17 -0000 Delivered-To: apmail-tomcat-users-archive@tomcat.apache.org Received: (qmail 45297 invoked by uid 500); 2 Apr 2014 08:24:14 -0000 Mailing-List: contact users-help@tomcat.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Tomcat Users List" Delivered-To: mailing list users@tomcat.apache.org Received: (qmail 45282 invoked by uid 99); 2 Apr 2014 08:24:12 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 02 Apr 2014 08:24:12 +0000 X-ASF-Spam-Status: No, hits=1.5 required=5.0 tests=HTML_MESSAGE,RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of neerajsinha.dac@gmail.com designates 209.85.212.180 as permitted sender) Received: from [209.85.212.180] (HELO mail-wi0-f180.google.com) (209.85.212.180) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 02 Apr 2014 08:24:07 +0000 Received: by mail-wi0-f180.google.com with SMTP id q5so6564588wiv.13 for ; Wed, 02 Apr 2014 01:23:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=ldPFAkL+fXBROVhpcvpeXGPgsi0+mh0J54C8feBzPTs=; b=EBj3dmBVhhmZ203j6pKyhMIVxmaLfkzjFhbi83floQ2JafFvjVPjXpfSm+WIJq500C uuSenXYsdN66MtlzDCWDz+zbMJRQ4ovaDFU0UDpSz7nk5xX2lIdfZkCuH8SWMDQKODaE 7MmEbheQofINvuajIWfQ8KncZMiD6EmolOMuxTrTMmTyRVu4ile3jtBLkN7i63xhuZlq akBjSZhqqreNDt8OtoiGqGgvCCE7jJkOBj1RtwWK/A0uplHlHIT2poHsDfESiiRcUqSQ iFIi9UKSe2QZvz0sDdmymT13Axkr41IL+Fbr5gsc4Szb0Es58fFFcf/SeoAGUHY2ihQu 86Kw== MIME-Version: 1.0 X-Received: by 10.194.236.232 with SMTP id ux8mr23988402wjc.46.1396427026074; Wed, 02 Apr 2014 01:23:46 -0700 (PDT) Received: by 10.217.5.6 with HTTP; Wed, 2 Apr 2014 01:23:46 -0700 (PDT) Date: Wed, 2 Apr 2014 13:53:46 +0530 Message-ID: Subject: Catalina start problem From: Neeraj Sinha To: Tomcat Users List Content-Type: multipart/alternative; boundary=089e01493f58d813c904f60b0031 X-Virus-Checked: Checked by ClamAV on apache.org --089e01493f58d813c904f60b0031 Content-Type: text/plain; charset=ISO-8859-1 I am trying to start tomcat on linux and I am getting LifecycleException exception whose snippet is below: Apr 2, 2014 8:33:53 AM org.apache.catalina.core.AprLifecycleListener init INFO: The APR based Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: /usr/java/jdk1.6.0_38/jre/lib/amd64/server:/usr/java/jdk1.6.0_38/jre/lib/amd64:/usr/java/jdk1.6.0_38/jre/../lib/amd64:/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib Apr 2, 2014 8:33:53 AM org.apache.coyote.AbstractProtocol init INFO: Initializing ProtocolHandler ["http-bio-8080"] Apr 2, 2014 8:33:53 AM org.apache.coyote.AbstractProtocol init INFO: Initializing ProtocolHandler ["ajp-bio-8009"] Apr 2, 2014 8:33:53 AM org.apache.catalina.startup.Catalina load INFO: Initialization processed in 890 ms Apr 2, 2014 8:33:53 AM org.apache.catalina.startup.Catalina start SEVERE: Catalina.start: org.apache.catalina.LifecycleException: Failed to start component [StandardServer[8005]] at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:154) at org.apache.catalina.startup.Catalina.start(Catalina.java:684) 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:597) at org.apache.catalina.startup.Bootstrap.start(Bootstrap.java:322) at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:451) Caused by: java.lang.NoSuchMethodError: org.apache.naming.NamingContext.setExceptionOnFailedWrite(Z)V at org.apache.catalina.core.NamingContextListener.lifecycleEvent(NamingContextListener.java:264) at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:119) at org.apache.catalina.util.LifecycleBase.fireLifecycleEvent(LifecycleBase.java:90) at org.apache.catalina.core.StandardServer.startInternal(StandardServer.java:724) at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150) ... 7 more Apr 2, 2014 8:33:53 AM org.apache.catalina.startup.Catalina start INFO: Server startup in 6 ms One reason I could guess for this is that Tomcat jar may not be proper but I have checked that and that looks fine to me. Appreciated if somebody could help me. --089e01493f58d813c904f60b0031--