How do you shut down orion - Problem SOLVED!

2001-12-19 Thread James Beeson

Thanks to everyone for the information. I did not realize that the admin.jar
was trying to shut down orion through the RMI port. I was trying to shut it
down throught the port I manually specified in my default-web-site.xml file.

I took of the port number in the admin command call and it worked like a
charm. Thanks!

_
Join the world’s largest e-mail service with MSN Hotmail.
http://www.hotmail.com





Re: How do you shut down orion after it's initialized

2001-12-18 Thread James Beeson


I did not have the admin user deactivated (althought that was a good tip- 
thanks!)

When I use the command:

java -jar admin.jar ormi://localhost:8080/ admin pswd -shutdown

I get:

Exception in thread main java.util.zip.ZipException: The system cannot 
find the file specified
at java.util.zip.ZipFile.open(Native Method)
at java.util.zip.ZipFile.init(Unknown Source)
at java.util.jar.JarFile.init(Unknown Source)
at java.util.jar.JarFile.init(Unknown Source)

And then Orion is left running. Could that be related to the error it prints 
out when Orion starts (here it is):

Warning: Error reading transaction-log file 
(/C:/orion/persistence/transaction.state) for recovery: premature end of 
file Forced or abrubt (crash etc) server shutdown detected, starting 
recovery process
...
Recovery completed, 0 connections committed and 0 rolled back...
Orion/1.5.2 initialized

But then the app runs fine. I currently don't have a transaction.state file.

Why won't it let me shut down Orion?
Thanks




_
MSN Photos is the easiest way to share and print your photos: 
http://photos.msn.com/support/worldwide.aspx





RE: How do you shut down orion after it's initialized

2001-12-18 Thread James Beeson

This is what I get when I start Orion:

C:\orionjava -jar orion.jar
Warning: Error reading transaction-log file
(/C:/orion/persistence/transaction.state) for recovery: premature end of
file
Forced or abrubt (crash etc) server shutdown detected, starting recovery
process
...
Recovery completed, 0 connections committed and 0 rolled back...
Orion/1.5.2 initialized

I immediately opened a new DOS window and did this:

C:\WINDOWS\Profiles\James\Desktopcd c:\orion

C:\orionjava -jar admin.jar ormi://localhost:8080 admin pswd -shutdown
Error: javax.naming.NamingException: Lookup error: java.io.EOFException:
Disconnected; nested exception is:
java.io.EOFException: Disconnected

C:\orion




From: Setlur, Atul (MED) [EMAIL PROTECTED]
Reply-To: Orion-Interest [EMAIL PROTECTED]
To: Orion-Interest [EMAIL PROTECTED]
Subject: RE: How do you shut down orion after it's initialized
Date: Tue, 18 Dec 2001 11:16:11 -0600

Are you sure you are running this from the directory where orion is
installed. Verify admin.jar is in the directory that you are running
this script. Alternatively, cd to the orion directory and run it from
there.

-Atul

-Original Message-
From: James Beeson [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, December 18, 2001 9:41 AM
To: Orion-Interest
Subject: Re: How do you shut down orion after it's initialized



I did not have the admin user deactivated (althought that was a good
tip-
thanks!)

When I use the command:

java -jar admin.jar ormi://localhost:8080/ admin pswd -shutdown

I get:

Exception in thread main java.util.zip.ZipException: The system cannot

find the file specified
 at java.util.zip.ZipFile.open(Native Method)
 at java.util.zip.ZipFile.init(Unknown Source)
 at java.util.jar.JarFile.init(Unknown Source)
 at java.util.jar.JarFile.init(Unknown Source)

And then Orion is left running. Could that be related to the error it
prints
out when Orion starts (here it is):

Warning: Error reading transaction-log file
(/C:/orion/persistence/transaction.state) for recovery: premature end of

file Forced or abrubt (crash etc) server shutdown detected, starting
recovery process
...
Recovery completed, 0 connections committed and 0 rolled back...
Orion/1.5.2 initialized

But then the app runs fine. I currently don't have a transaction.state
file.

Why won't it let me shut down Orion?
Thanks




_
MSN Photos is the easiest way to share and print your photos:
http://photos.msn.com/support/worldwide.aspx




_
Join the world’s largest e-mail service with MSN Hotmail.
http://www.hotmail.com





Re: How do you shut down orion after it's initialized

2001-12-18 Thread James Beeson

I have an admin.jar in my c:\orion directory, but I looked inside it and the 
ONLY file is the manifest.mf file. There are no other files (namely any 
.class files) there. Is that right? I just downloaded this less than a week 
ago, the newest stable version there was

Here is what is in the manifest file:

Manifest-Version: 1.0
Main-Class: com.evermind.client.orion.OrionConsoleAdmin
Name: Evermind Console-based Admin
Created-By: 1.2 (Sun Microsystems Inc.)
Implementation-Vendor: Evermind
Class-Path: orion.jar
Implementation-Version: 0.1.8
Implementation-Title: com.evermind.client.orion

I have run the
java -jar admin.jar ormi://localhost:8080/ admin pswd -shutdown   command
from the c:\orion directory

I am able to shut down properly by using the orion console's
FileExit menu item after accessing the console via the command

C:\orionjava -jar orion.jar -console

While this doesn't solve my problem from trying to shut down properly from 
the command line, this seems to do the trick.
Thanks Everyone!





From: Chris Callaghan [EMAIL PROTECTED]
Reply-To: Orion-Interest [EMAIL PROTECTED]
To: Orion-Interest [EMAIL PROTECTED]
Subject: Re: How do you shut down orion after it's initialized
Date: Wed, 19 Dec 2001 11:14:55 +1300

Sounds like you're missing admin.jar...

You can get rid of your transaction-log error by creating a persistence
directory under the orion directory. Orion will then happily use that...
I think some zip implementations have a thing about creating empty
directories...

James Beeson wrote:


I did not have the admin user deactivated (althought that was a good
tip- thanks!)

When I use the command:

java -jar admin.jar ormi://localhost:8080/ admin pswd -shutdown

I get:

Exception in thread main java.util.zip.ZipException: The system
cannot find the file specified
at java.util.zip.ZipFile.open(Native Method)
at java.util.zip.ZipFile.init(Unknown Source)
at java.util.jar.JarFile.init(Unknown Source)
at java.util.jar.JarFile.init(Unknown Source)

And then Orion is left running. Could that be related to the error it
prints out when Orion starts (here it is):

Warning: Error reading transaction-log file
(/C:/orion/persistence/transaction.state) for recovery: premature end
of file Forced or abrubt (crash etc) server shutdown detected,
starting recovery process
...
Recovery completed, 0 connections committed and 0 rolled back...
Orion/1.5.2 initialized

But then the app runs fine. I currently don't have a transaction.state
file.

Why won't it let me shut down Orion?
Thanks




_
MSN Photos is the easiest way to share and print your photos:
http://photos.msn.com/support/worldwide.aspx







_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp.





How do you shut down orion after it's initialized

2001-12-17 Thread James Beeson


How do you shut down orion after it's initialized?
I've tried several commands, but I can't get any to work.


_
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp.