Re: Tomcat7 with jre 1.7 error during starting

2018-01-26 Thread Rainer Jung

Am 26.01.2018 um 12:08 schrieb Rajesh Cherukuri:

HI

we have a existing  running tomcat version 5 running on solaris with out
any issues ,  recently we have  installed tomcat 7 on the same solaris 10
server  with no application deployed , and configured java version as
jre1.6 in setenv.sh  i couldn't start the tomcats after my installation ,
and below is the error what i get when i start tomcat with java1.7  later i
tired the to configure the java version as 1.8 , i still get the same error
but slightly different error but both are failing at "

*org.apache.catalina.util.ExtensionValidator.getManifest(ExtensionValidator.java:402)*
 can some one let me know if there are any pre-requisites to run a
tomcat on 7 on Soalris  10 ,


there should be no problem running a recent Tomcat 7 with an unchanged 
Oracle HotSpot Java 6, 7 or 8 on Solaris 10. I regularly do this.


Maybe you unpacked a downloaded tarball using Solaris tar? Solaris tar 
has a very specific way of handling long path names and is not 
compatible with gnu tar. Most tarballs noadays are packed using gnu tar 
and should be unpacked with gnu tar as well. Otherwise files can be 
missing or created with a wrong file name.


gnu tar for Solaris should be installed under /usr/sfw/bin/gtar.

Regards,

Rainer


-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Re: Tomcat7 with jre 1.7 error during starting

2018-01-26 Thread Rajesh Cherukuri
Hi

 here is the full tomcat and JVM versions  tried , and on the lib file name
, i  haven't added anything it is an empty tomcat container that was
unzipped from apache org , and started and there is no application ,custom
jar's that are added


 to my knowledge it is the  "o*rg.apache.catalina.util.ExtensionValidator.*"
that was having issues

Java Version
*java version "1.6.0_91"*
Java(TM) SE Runtime Environment (build 1.6.0_91-b13)
Java HotSpot(TM) Server VM (build 20.91-b07, mixed mode)


*java version "1.8.0_152"*
Java(TM) SE Runtime Environment (build 1.8.0_152-b16)
Java HotSpot(TM) 64-Bit Server VM (build 25.152-b16, mixed mode)



Tomcat versions

Server version: Apache Tomcat/7.0.62
Server built:   May 7 2015 17:14:55 UTC
Server number:  7.0.62.0
OS Name:SunOS
OS Version: 5.10
Architecture:   sparcv9
JVM Version:1.8.0_152-b16
JVM Vendor: Oracle Corporation


Re: Tomcat7 with jre 1.7 error during starting

2018-01-26 Thread Konstantin Kolinko
2018-01-26 14:08 GMT+03:00 Rajesh Cherukuri :
> HI
>
> we have a existing  running tomcat version 5 running on solaris with out
> any issues ,  recently we have  installed tomcat 7 on the same solaris 10
> server  with no application deployed , and configured java version as
> jre1.6 in setenv.sh  i couldn't start the tomcats after my installation ,
> and below is the error what i get when i start tomcat with java1.7  later i
> tired the to configure the java version as 1.8 , i still get the same error
> but slightly different error but both are failing at "
>
> *org.apache.catalina.util.ExtensionValidator.getManifest(ExtensionValidator.java:402)*
> can some one let me know if there are any pre-requisites to run a
> tomcat on 7 on Soalris  10 ,
>
>
>
>
> *With java 1.6*
>
> ib:/opt/CA/SharedComponents/lib/:/opt/CA/DSM/scripts/install/:/opt/CA/DSM/caf/lib/:.:/opt/CA/SharedComponents/lib:/opt/CA/CAlib:/opt/CA/DSM/caf/lib:/usr/jdk/packages/lib/sparc:/usr/local/lib:/usr/lib
> 26-Jan-2018 10:49:52 org.apache.catalina.startup.Catalina load
> SEVERE: Catalina.start
> *org.apache.catalina.LifecycleException: Failed to initialize component
> [StandardServer[8075]]*
> at
> org.apache.catalina.util.LifecycleBase.init(LifecycleBase.java:106)
> at org.apache.catalina.startup.Catalina.load(Catalina.java:638)
> at org.apache.catalina.startup.Catalina.load(Catalina.java:663)
> 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.load(Bootstrap.java:280)
> at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:459)
> *Caused by: java.lang.ExceptionInInitializerError*
> at
> org.apache.catalina.core.StandardServer.initInternal(StandardServer.java:806)
> at
> org.apache.catalina.util.LifecycleBase.init(LifecycleBase.java:102)
> ... 8 more
> *Caused by: java.lang.IllegalArgumentException*
> at
> java.util.zip.ZipInputStream.getUTF8String(ZipInputStream.java:303)
> at java.util.zip.ZipInputStream.getFileName(ZipInputStream.java:436)
> at java.util.zip.ZipInputStream.readLOC(ZipInputStream.java:255)
> at java.util.zip.ZipInputStream.getNextEntry(ZipInputStream.java:82)
> at java.util.jar.JarInputStream.(JarInputStream.java:67)
> at java.util.jar.JarInputStream.(JarInputStream.java:44)
> at
> org.apache.catalina.util.ExtensionValidator.getManifest(ExtensionValidator.java:402)
> at


1. The rules of this mailing list: top-posting is discouraged.
http://tomcat.apache.org/lists.html#tomcat-users
-> 6.

Also ->1. there. You are not saying the exact version number.

2. From the error message text, I think that you have an incorrect jar
file somewhere on your classpath  (in lib/ directory of Tomcat?)

One of differences between JAR files format and plain ZIP format: its
file names are encoded in UTF-8. The ZIP format uses OS locale for
filenames.

If a JAR file was packed with a ZIP tool, the filenames in it might be
broken. The exception apparently tells that a file name is not a valid
UTF-8 string.

Best regards,
Konstantin Kolinko

-
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org



Re: Tomcat7 with jre 1.7 error during starting

2018-01-26 Thread Rajesh Cherukuri_1
hi 
sorry  i haven’t tried 1.7 , tomcat documentation says 1.6 and above 
> On Jan 26, 2018, at 5:22 PM, Rajesh Cherukuri  wrote:
> 
> its jre7 
> 
> On Fri, Jan 26, 2018 at 11:41 AM, M. Manna  > wrote:
> And did you try running it with jre7? In other words, all 7 ?
> 
> On 26 Jan 2018 18:08, "Rajesh Cherukuri"  > wrote:
> 
> > HI
> >
> > we have a existing  running tomcat version 5 running on solaris with out
> > any issues ,  recently we have  installed tomcat 7 on the same solaris 10
> > server  with no application deployed , and configured java version as
> > jre1.6 in setenv.sh  i couldn't start the tomcats after my installation ,
> > and below is the error what i get when i start tomcat with java1.7  later i
> > tired the to configure the java version as 1.8 , i still get the same error
> > but slightly different error but both are failing at "
> >
> > *org.apache.catalina.util.ExtensionValidator.getManifest(
> > ExtensionValidator.java:402)*
> > can some one let me know if there are any pre-requisites to run a
> > tomcat on 7 on Soalris  10 ,
> >
> >
> >
> >
> > *With java 1.6*
> >
> > ib:/opt/CA/SharedComponents/lib/:/opt/CA/DSM/scripts/
> > install/:/opt/CA/DSM/caf/lib/:.:/opt/CA/SharedComponents/
> > lib:/opt/CA/CAlib:/opt/CA/DSM/caf/lib:/usr/jdk/packages/lib/
> > sparc:/usr/local/lib:/usr/lib
> > 26-Jan-2018 10:49:52 org.apache.catalina.startup.Catalina load
> > SEVERE: Catalina.start
> > *org.apache.catalina.LifecycleException: Failed to initialize component
> > [StandardServer[8075]]*
> > at
> > org.apache.catalina.util.LifecycleBase.init(LifecycleBase.java:106)
> > at org.apache.catalina.startup.Catalina.load(Catalina.java:638)
> > at org.apache.catalina.startup.Catalina.load(Catalina.java:663)
> > 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.load(Bootstrap.java:280)
> > at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:459)
> > *Caused by: java.lang.ExceptionInInitializerError*
> > at
> > org.apache.catalina.core.StandardServer.initInternal(
> > StandardServer.java:806)
> > at
> > org.apache.catalina.util.LifecycleBase.init(LifecycleBase.java:102)
> > ... 8 more
> > *Caused by: java.lang.IllegalArgumentException*
> > at
> > java.util.zip.ZipInputStream.getUTF8String(ZipInputStream.java:303)
> > at java.util.zip.ZipInputStream.getFileName(ZipInputStream.
> > java:436)
> > at java.util.zip.ZipInputStream.readLOC(ZipInputStream.java:255)
> > at java.util.zip.ZipInputStream.getNextEntry(ZipInputStream.
> > java:82)
> > at java.util.jar.JarInputStream.(JarInputStream.java:67)
> > at java.util.jar.JarInputStream.(JarInputStream.java:44)
> > at
> > org.apache.catalina.util.ExtensionValidator.getManifest(
> > ExtensionValidator.java:402)
> > at
> > org.apache.catalina.util.ExtensionValidator.addSystemResource(
> > ExtensionValidator.java:230)
> > at
> > org.apache.catalina.util.ExtensionValidator.addFolderList(
> > ExtensionValidator.java:440)
> > at
> > org.apache.catalina.util.ExtensionValidator.(
> > ExtensionValidator.java:107)
> > ... 10 more
> >
> >
> >
> >
> >
> > *Tomcat configured with Java 1.7 *INFO: The APR based Apache Tomcat Native
> > library which allows optimal performance in production environments was not
> > found on the java.library.path:
> > /lib:/usr/lib:/usr/local/lib:/usr/local/ssl/lib:/usr/share/
> > lib:/usr/sadm/lib:/usr/ccs/lib:/usr/openwin/lib:/usr/dt/
> > lib:/etc/lib:/swhome/retlogic/solve1ultima/SENTINEL_LM/lib:/
> > opt/CA/SharedComponents/lib/:/opt/CA/DSM/scripts/install/:/
> > opt/CA/DSM/caf/lib/:.:/opt/CA/SharedComponents/lib:/opt/CA/
> > CAlib:/opt/CA/DSM/caf/lib:/usr/jdk/packages/lib/sparcv9:/
> > lib/64:/usr/lib/64
> > Jan 26, 2018 10:46:23 AM org.apache.catalina.startup.Catalina load
> > SEVERE: Catalina.start
> > *org.apache.catalina.LifecycleException: Failed to initialize component
> > [StandardServer[8075]]*
> > at
> > org.apache.catalina.util.LifecycleBase.init(LifecycleBase.java:106)
> > at org.apache.catalina.startup.Catalina.load(Catalina.java:638)
> > at org.apache.catalina.startup.Catalina.load(Catalina.java:663)
> > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> > at
> > sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:
> > 62)
> > at
> > sun.reflect.DelegatingMethodAccessorImpl.invoke(
> > DelegatingMethodAccessorImpl.java:43)
> > 

Re: Tomcat7 with jre 1.7 error during starting

2018-01-26 Thread Rajesh Cherukuri
its jre7

On Fri, Jan 26, 2018 at 11:41 AM, M. Manna  wrote:

> And did you try running it with jre7? In other words, all 7 ?
>
> On 26 Jan 2018 18:08, "Rajesh Cherukuri"  wrote:
>
> > HI
> >
> > we have a existing  running tomcat version 5 running on solaris with out
> > any issues ,  recently we have  installed tomcat 7 on the same solaris 10
> > server  with no application deployed , and configured java version as
> > jre1.6 in setenv.sh  i couldn't start the tomcats after my installation ,
> > and below is the error what i get when i start tomcat with java1.7
> later i
> > tired the to configure the java version as 1.8 , i still get the same
> error
> > but slightly different error but both are failing at "
> >
> > *org.apache.catalina.util.ExtensionValidator.getManifest(
> > ExtensionValidator.java:402)*
> > can some one let me know if there are any pre-requisites to run a
> > tomcat on 7 on Soalris  10 ,
> >
> >
> >
> >
> > *With java 1.6*
> >
> > ib:/opt/CA/SharedComponents/lib/:/opt/CA/DSM/scripts/
> > install/:/opt/CA/DSM/caf/lib/:.:/opt/CA/SharedComponents/
> > lib:/opt/CA/CAlib:/opt/CA/DSM/caf/lib:/usr/jdk/packages/lib/
> > sparc:/usr/local/lib:/usr/lib
> > 26-Jan-2018 10:49:52 org.apache.catalina.startup.Catalina load
> > SEVERE: Catalina.start
> > *org.apache.catalina.LifecycleException: Failed to initialize component
> > [StandardServer[8075]]*
> > at
> > org.apache.catalina.util.LifecycleBase.init(LifecycleBase.java:106)
> > at org.apache.catalina.startup.Catalina.load(Catalina.java:638)
> > at org.apache.catalina.startup.Catalina.load(Catalina.java:663)
> > 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.load(Bootstrap.java:
> 280)
> > at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:
> 459)
> > *Caused by: java.lang.ExceptionInInitializerError*
> > at
> > org.apache.catalina.core.StandardServer.initInternal(
> > StandardServer.java:806)
> > at
> > org.apache.catalina.util.LifecycleBase.init(LifecycleBase.java:102)
> > ... 8 more
> > *Caused by: java.lang.IllegalArgumentException*
> > at
> > java.util.zip.ZipInputStream.getUTF8String(ZipInputStream.java:303)
> > at java.util.zip.ZipInputStream.getFileName(ZipInputStream.
> > java:436)
> > at java.util.zip.ZipInputStream.readLOC(ZipInputStream.java:255)
> > at java.util.zip.ZipInputStream.getNextEntry(ZipInputStream.
> > java:82)
> > at java.util.jar.JarInputStream.(JarInputStream.java:67)
> > at java.util.jar.JarInputStream.(JarInputStream.java:44)
> > at
> > org.apache.catalina.util.ExtensionValidator.getManifest(
> > ExtensionValidator.java:402)
> > at
> > org.apache.catalina.util.ExtensionValidator.addSystemResource(
> > ExtensionValidator.java:230)
> > at
> > org.apache.catalina.util.ExtensionValidator.addFolderList(
> > ExtensionValidator.java:440)
> > at
> > org.apache.catalina.util.ExtensionValidator.(
> > ExtensionValidator.java:107)
> > ... 10 more
> >
> >
> >
> >
> >
> > *Tomcat configured with Java 1.7 *INFO: The APR based Apache Tomcat
> Native
> > library which allows optimal performance in production environments was
> not
> > found on the java.library.path:
> > /lib:/usr/lib:/usr/local/lib:/usr/local/ssl/lib:/usr/share/
> > lib:/usr/sadm/lib:/usr/ccs/lib:/usr/openwin/lib:/usr/dt/
> > lib:/etc/lib:/swhome/retlogic/solve1ultima/SENTINEL_LM/lib:/
> > opt/CA/SharedComponents/lib/:/opt/CA/DSM/scripts/install/:/
> > opt/CA/DSM/caf/lib/:.:/opt/CA/SharedComponents/lib:/opt/CA/
> > CAlib:/opt/CA/DSM/caf/lib:/usr/jdk/packages/lib/sparcv9:/
> > lib/64:/usr/lib/64
> > Jan 26, 2018 10:46:23 AM org.apache.catalina.startup.Catalina load
> > SEVERE: Catalina.start
> > *org.apache.catalina.LifecycleException: Failed to initialize component
> > [StandardServer[8075]]*
> > at
> > org.apache.catalina.util.LifecycleBase.init(LifecycleBase.java:106)
> > at org.apache.catalina.startup.Catalina.load(Catalina.java:638)
> > at org.apache.catalina.startup.Catalina.load(Catalina.java:663)
> > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> > at
> > sun.reflect.NativeMethodAccessorImpl.invoke(
> NativeMethodAccessorImpl.java:
> > 62)
> > at
> > sun.reflect.DelegatingMethodAccessorImpl.invoke(
> > DelegatingMethodAccessorImpl.java:43)
> > at java.lang.reflect.Method.invoke(Method.java:498)
> > at org.apache.catalina.startup.Bootstrap.load(Bootstrap.java:
> 280)
> > at 

Re: Tomcat7 with jre 1.7 error during starting

2018-01-26 Thread M. Manna
And did you try running it with jre7? In other words, all 7 ?

On 26 Jan 2018 18:08, "Rajesh Cherukuri"  wrote:

> HI
>
> we have a existing  running tomcat version 5 running on solaris with out
> any issues ,  recently we have  installed tomcat 7 on the same solaris 10
> server  with no application deployed , and configured java version as
> jre1.6 in setenv.sh  i couldn't start the tomcats after my installation ,
> and below is the error what i get when i start tomcat with java1.7  later i
> tired the to configure the java version as 1.8 , i still get the same error
> but slightly different error but both are failing at "
>
> *org.apache.catalina.util.ExtensionValidator.getManifest(
> ExtensionValidator.java:402)*
> can some one let me know if there are any pre-requisites to run a
> tomcat on 7 on Soalris  10 ,
>
>
>
>
> *With java 1.6*
>
> ib:/opt/CA/SharedComponents/lib/:/opt/CA/DSM/scripts/
> install/:/opt/CA/DSM/caf/lib/:.:/opt/CA/SharedComponents/
> lib:/opt/CA/CAlib:/opt/CA/DSM/caf/lib:/usr/jdk/packages/lib/
> sparc:/usr/local/lib:/usr/lib
> 26-Jan-2018 10:49:52 org.apache.catalina.startup.Catalina load
> SEVERE: Catalina.start
> *org.apache.catalina.LifecycleException: Failed to initialize component
> [StandardServer[8075]]*
> at
> org.apache.catalina.util.LifecycleBase.init(LifecycleBase.java:106)
> at org.apache.catalina.startup.Catalina.load(Catalina.java:638)
> at org.apache.catalina.startup.Catalina.load(Catalina.java:663)
> 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.load(Bootstrap.java:280)
> at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:459)
> *Caused by: java.lang.ExceptionInInitializerError*
> at
> org.apache.catalina.core.StandardServer.initInternal(
> StandardServer.java:806)
> at
> org.apache.catalina.util.LifecycleBase.init(LifecycleBase.java:102)
> ... 8 more
> *Caused by: java.lang.IllegalArgumentException*
> at
> java.util.zip.ZipInputStream.getUTF8String(ZipInputStream.java:303)
> at java.util.zip.ZipInputStream.getFileName(ZipInputStream.
> java:436)
> at java.util.zip.ZipInputStream.readLOC(ZipInputStream.java:255)
> at java.util.zip.ZipInputStream.getNextEntry(ZipInputStream.
> java:82)
> at java.util.jar.JarInputStream.(JarInputStream.java:67)
> at java.util.jar.JarInputStream.(JarInputStream.java:44)
> at
> org.apache.catalina.util.ExtensionValidator.getManifest(
> ExtensionValidator.java:402)
> at
> org.apache.catalina.util.ExtensionValidator.addSystemResource(
> ExtensionValidator.java:230)
> at
> org.apache.catalina.util.ExtensionValidator.addFolderList(
> ExtensionValidator.java:440)
> at
> org.apache.catalina.util.ExtensionValidator.(
> ExtensionValidator.java:107)
> ... 10 more
>
>
>
>
>
> *Tomcat configured with Java 1.7 *INFO: The APR based Apache Tomcat Native
> library which allows optimal performance in production environments was not
> found on the java.library.path:
> /lib:/usr/lib:/usr/local/lib:/usr/local/ssl/lib:/usr/share/
> lib:/usr/sadm/lib:/usr/ccs/lib:/usr/openwin/lib:/usr/dt/
> lib:/etc/lib:/swhome/retlogic/solve1ultima/SENTINEL_LM/lib:/
> opt/CA/SharedComponents/lib/:/opt/CA/DSM/scripts/install/:/
> opt/CA/DSM/caf/lib/:.:/opt/CA/SharedComponents/lib:/opt/CA/
> CAlib:/opt/CA/DSM/caf/lib:/usr/jdk/packages/lib/sparcv9:/
> lib/64:/usr/lib/64
> Jan 26, 2018 10:46:23 AM org.apache.catalina.startup.Catalina load
> SEVERE: Catalina.start
> *org.apache.catalina.LifecycleException: Failed to initialize component
> [StandardServer[8075]]*
> at
> org.apache.catalina.util.LifecycleBase.init(LifecycleBase.java:106)
> at org.apache.catalina.startup.Catalina.load(Catalina.java:638)
> at org.apache.catalina.startup.Catalina.load(Catalina.java:663)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:
> 62)
> at
> sun.reflect.DelegatingMethodAccessorImpl.invoke(
> DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:498)
> at org.apache.catalina.startup.Bootstrap.load(Bootstrap.java:280)
> at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:459)
> *Caused by: java.lang.ExceptionInInitializerError*
> at
> org.apache.catalina.core.StandardServer.initInternal(
> StandardServer.java:806)
> at
> org.apache.catalina.util.LifecycleBase.init(LifecycleBase.java:102)
> ... 8 more
> *Caused by: java.lang.IllegalArgumentException: 

Tomcat7 with jre 1.7 error during starting

2018-01-26 Thread Rajesh Cherukuri
HI

we have a existing  running tomcat version 5 running on solaris with out
any issues ,  recently we have  installed tomcat 7 on the same solaris 10
server  with no application deployed , and configured java version as
jre1.6 in setenv.sh  i couldn't start the tomcats after my installation ,
and below is the error what i get when i start tomcat with java1.7  later i
tired the to configure the java version as 1.8 , i still get the same error
but slightly different error but both are failing at "

*org.apache.catalina.util.ExtensionValidator.getManifest(ExtensionValidator.java:402)*
can some one let me know if there are any pre-requisites to run a
tomcat on 7 on Soalris  10 ,




*With java 1.6*

ib:/opt/CA/SharedComponents/lib/:/opt/CA/DSM/scripts/install/:/opt/CA/DSM/caf/lib/:.:/opt/CA/SharedComponents/lib:/opt/CA/CAlib:/opt/CA/DSM/caf/lib:/usr/jdk/packages/lib/sparc:/usr/local/lib:/usr/lib
26-Jan-2018 10:49:52 org.apache.catalina.startup.Catalina load
SEVERE: Catalina.start
*org.apache.catalina.LifecycleException: Failed to initialize component
[StandardServer[8075]]*
at
org.apache.catalina.util.LifecycleBase.init(LifecycleBase.java:106)
at org.apache.catalina.startup.Catalina.load(Catalina.java:638)
at org.apache.catalina.startup.Catalina.load(Catalina.java:663)
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.load(Bootstrap.java:280)
at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:459)
*Caused by: java.lang.ExceptionInInitializerError*
at
org.apache.catalina.core.StandardServer.initInternal(StandardServer.java:806)
at
org.apache.catalina.util.LifecycleBase.init(LifecycleBase.java:102)
... 8 more
*Caused by: java.lang.IllegalArgumentException*
at
java.util.zip.ZipInputStream.getUTF8String(ZipInputStream.java:303)
at java.util.zip.ZipInputStream.getFileName(ZipInputStream.java:436)
at java.util.zip.ZipInputStream.readLOC(ZipInputStream.java:255)
at java.util.zip.ZipInputStream.getNextEntry(ZipInputStream.java:82)
at java.util.jar.JarInputStream.(JarInputStream.java:67)
at java.util.jar.JarInputStream.(JarInputStream.java:44)
at
org.apache.catalina.util.ExtensionValidator.getManifest(ExtensionValidator.java:402)
at
org.apache.catalina.util.ExtensionValidator.addSystemResource(ExtensionValidator.java:230)
at
org.apache.catalina.util.ExtensionValidator.addFolderList(ExtensionValidator.java:440)
at
org.apache.catalina.util.ExtensionValidator.(ExtensionValidator.java:107)
... 10 more





*Tomcat configured with Java 1.7 *INFO: The APR based Apache Tomcat Native
library which allows optimal performance in production environments was not
found on the java.library.path:
/lib:/usr/lib:/usr/local/lib:/usr/local/ssl/lib:/usr/share/lib:/usr/sadm/lib:/usr/ccs/lib:/usr/openwin/lib:/usr/dt/lib:/etc/lib:/swhome/retlogic/solve1ultima/SENTINEL_LM/lib:/opt/CA/SharedComponents/lib/:/opt/CA/DSM/scripts/install/:/opt/CA/DSM/caf/lib/:.:/opt/CA/SharedComponents/lib:/opt/CA/CAlib:/opt/CA/DSM/caf/lib:/usr/jdk/packages/lib/sparcv9:/lib/64:/usr/lib/64
Jan 26, 2018 10:46:23 AM org.apache.catalina.startup.Catalina load
SEVERE: Catalina.start
*org.apache.catalina.LifecycleException: Failed to initialize component
[StandardServer[8075]]*
at
org.apache.catalina.util.LifecycleBase.init(LifecycleBase.java:106)
at org.apache.catalina.startup.Catalina.load(Catalina.java:638)
at org.apache.catalina.startup.Catalina.load(Catalina.java:663)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.apache.catalina.startup.Bootstrap.load(Bootstrap.java:280)
at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:459)
*Caused by: java.lang.ExceptionInInitializerError*
at
org.apache.catalina.core.StandardServer.initInternal(StandardServer.java:806)
at
org.apache.catalina.util.LifecycleBase.init(LifecycleBase.java:102)
... 8 more
*Caused by: java.lang.IllegalArgumentException: MALFORMED*
at java.util.zip.ZipCoder.toString(ZipCoder.java:58)
at java.util.zip.ZipInputStream.readLOC(ZipInputStream.java:300)
at
java.util.zip.ZipInputStream.getNextEntry(ZipInputStream.java:122)
at java.util.jar.JarInputStream.(JarInputStream.java:85)
at java.util.jar.JarInputStream.(JarInputStream.java:62)
at