2018-01-26 14:08 GMT+03:00 Rajesh Cherukuri <rajec...@gmail.com>:
> 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.<init>(JarInputStream.java:67)
>         at java.util.jar.JarInputStream.<init>(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

Reply via email to