You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jetspeed-user@portals.apache.org by Eric White <ew...@rocksteady.com> on 2002/12/13 22:18:38 UTC

1.4b2 binary release deployment errors

I've pulled down the 1.4b2 binary release (of the source version) and
have deployed  it under Tomcat 4.1.12 and simply can't get the silly
thing to run, I keep seeing the following in the tomcat log file, any
help is greatly appreciated:



2002-12-13 21:13:47 HostConfig[localhost]: Expanding web application
archive jetspeed.war
2002-12-13 21:13:47 HostConfig[localhost] Exception while expanding web
application archive jetspeed.war
java.io.FileNotFoundException:
/var/tomcat4/webapps/jetspeed/META-INF/MANIFEST.MF (No such file or
directory)
	at java.io.FileOutputStream.open(Native Method)
	at java.io.FileOutputStream.<init>(FileOutputStream.java:176)
	at java.io.FileOutputStream.<init>(FileOutputStream.java:131)
	at org.apache.catalina.startup.HostConfig.expand(Unknown Source)
	at org.apache.catalina.startup.HostConfig.expand(Unknown Source)
	at org.apache.catalina.startup.HostConfig.deployWARs(Unknown Source)
	at org.apache.catalina.startup.HostConfig.deployApps(Unknown Source)
	at org.apache.catalina.startup.HostConfig.start(Unknown Source)
	at org.apache.catalina.startup.HostConfig.lifecycleEvent(Unknown
Source)
	at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(Unknown
Source)
	at org.apache.catalina.core.ContainerBase.start(Unknown Source)
	at org.apache.catalina.core.StandardHost.start(Unknown Source)
	at org.apache.catalina.core.ContainerBase.start(Unknown Source)
	at org.apache.catalina.core.StandardEngine.start(Unknown Source)
	at org.apache.catalina.core.StandardService.start(Unknown Source)
	at org.apache.catalina.core.StandardServer.start(Unknown Source)
	at org.apache.catalina.startup.Catalina.start(Unknown Source)
	at org.apache.catalina.startup.Catalina.execute(Unknown Source)
	at org.apache.catalina.startup.Catalina.process(Unknown Source)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
	at
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
	at java.lang.reflect.Method.invoke(Method.java:324)
	at org.apache.catalina.startup.Bootstrap.main(Unknown Source)




--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>


Re: 1.4b2 binary release deployment errors

Posted by Wayne Kidd <wk...@henleykidd.ns01.us>.
This is probably a case issue from unzipping in a windows environment to 
a Linux environment.  Try pulling this stuff with source and target 
environments the same.  If you are going to run on Linux use .gz 
 download.  If you are going to run on Windows use the .zip.  If you are 
going to be on Windows, try to avoid spaces in the paths of everything 
(Tomcat's locations - don't leave spaces anywhere).

Wayne

Eric White wrote:

>I've pulled down the 1.4b2 binary release (of the source version) and
>have deployed  it under Tomcat 4.1.12 and simply can't get the silly
>thing to run, I keep seeing the following in the tomcat log file, any
>help is greatly appreciated:
>
>
>
>2002-12-13 21:13:47 HostConfig[localhost]: Expanding web application
>archive jetspeed.war
>2002-12-13 21:13:47 HostConfig[localhost] Exception while expanding web
>application archive jetspeed.war
>java.io.FileNotFoundException:
>/var/tomcat4/webapps/jetspeed/META-INF/MANIFEST.MF (No such file or
>directory)
>	at java.io.FileOutputStream.open(Native Method)
>	at java.io.FileOutputStream.<init>(FileOutputStream.java:176)
>	at java.io.FileOutputStream.<init>(FileOutputStream.java:131)
>	at org.apache.catalina.startup.HostConfig.expand(Unknown Source)
>	at org.apache.catalina.startup.HostConfig.expand(Unknown Source)
>	at org.apache.catalina.startup.HostConfig.deployWARs(Unknown Source)
>	at org.apache.catalina.startup.HostConfig.deployApps(Unknown Source)
>	at org.apache.catalina.startup.HostConfig.start(Unknown Source)
>	at org.apache.catalina.startup.HostConfig.lifecycleEvent(Unknown
>Source)
>	at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(Unknown
>Source)
>	at org.apache.catalina.core.ContainerBase.start(Unknown Source)
>	at org.apache.catalina.core.StandardHost.start(Unknown Source)
>	at org.apache.catalina.core.ContainerBase.start(Unknown Source)
>	at org.apache.catalina.core.StandardEngine.start(Unknown Source)
>	at org.apache.catalina.core.StandardService.start(Unknown Source)
>	at org.apache.catalina.core.StandardServer.start(Unknown Source)
>	at org.apache.catalina.startup.Catalina.start(Unknown Source)
>	at org.apache.catalina.startup.Catalina.execute(Unknown Source)
>	at org.apache.catalina.startup.Catalina.process(Unknown Source)
>	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
>	at
>sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
>	at
>sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
>	at java.lang.reflect.Method.invoke(Method.java:324)
>	at org.apache.catalina.startup.Bootstrap.main(Unknown Source)
>
>
>
>
>--
>To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
>For additional commands, e-mail: <ma...@jakarta.apache.org>
>  
>


--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>


RE: 1.4b2 binary release deployment errors

Posted by Richard Bourner <rb...@OpTechSoftware.com>.
It seems like you have the manifest missing.
Check that you have that file in your war before starting tomcat.
If it is not there add it "by hand" with the following content:
(that's what I have when building the war file)

Manifest-Version: 1.0
Created-By: Apache Ant 1.5


Otherwise, pull down the source release and rebuild it.


Hope that helps.
Richard



> -----Original Message-----
> From: Eric White [mailto:ewhite@rocksteady.com]
> Sent: Friday, December 13, 2002 1:19 PM
> To: Jetspeed Users List
> Subject: 1.4b2 binary release deployment errors
>
>
> I've pulled down the 1.4b2 binary release (of the source version) and
> have deployed  it under Tomcat 4.1.12 and simply can't get the silly
> thing to run, I keep seeing the following in the tomcat log file, any
> help is greatly appreciated:
>
>
>
> 2002-12-13 21:13:47 HostConfig[localhost]: Expanding web application
> archive jetspeed.war
> 2002-12-13 21:13:47 HostConfig[localhost] Exception while expanding web
> application archive jetspeed.war
> java.io.FileNotFoundException:
> /var/tomcat4/webapps/jetspeed/META-INF/MANIFEST.MF (No such file or
> directory)
> 	at java.io.FileOutputStream.open(Native Method)
> 	at java.io.FileOutputStream.<init>(FileOutputStream.java:176)
> 	at java.io.FileOutputStream.<init>(FileOutputStream.java:131)
> 	at org.apache.catalina.startup.HostConfig.expand(Unknown Source)
> 	at org.apache.catalina.startup.HostConfig.expand(Unknown Source)
> 	at org.apache.catalina.startup.HostConfig.deployWARs(Unknown Source)
> 	at org.apache.catalina.startup.HostConfig.deployApps(Unknown Source)
> 	at org.apache.catalina.startup.HostConfig.start(Unknown Source)
> 	at org.apache.catalina.startup.HostConfig.lifecycleEvent(Unknown
> Source)
> 	at
> org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(Unknown
> Source)
> 	at org.apache.catalina.core.ContainerBase.start(Unknown Source)
> 	at org.apache.catalina.core.StandardHost.start(Unknown Source)
> 	at org.apache.catalina.core.ContainerBase.start(Unknown Source)
> 	at org.apache.catalina.core.StandardEngine.start(Unknown Source)
> 	at org.apache.catalina.core.StandardService.start(Unknown Source)
> 	at org.apache.catalina.core.StandardServer.start(Unknown Source)
> 	at org.apache.catalina.startup.Catalina.start(Unknown Source)
> 	at org.apache.catalina.startup.Catalina.execute(Unknown Source)
> 	at org.apache.catalina.startup.Catalina.process(Unknown Source)
> 	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> 	at
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorIm
> pl.java:39)
> 	at
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAc
> cessorImpl.java:25)
> 	at java.lang.reflect.Method.invoke(Method.java:324)
> 	at org.apache.catalina.startup.Bootstrap.main(Unknown Source)
>
>
>
>
> --
> To unsubscribe, e-mail:
<ma...@jakarta.apache.org>
For additional commands, e-mail:
<ma...@jakarta.apache.org>


--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>