Laurens Fridael wrote:
>
> Help me out please. How can I properly shutdown JBoss under Linux? I'm
> using IBM's JDK 1.3 if that matters.
>
Apparently that matters - JBoss under Sun's VM responds to a normal 'kill'
___
JBoss-user mailing list
[EMAIL
]Sent: woensdag 20 juni 2001
11:11To: [EMAIL PROTECTED]Subject: RE:
[JBoss-user] Proper shutdown under Linux
Somewhere on the JBoss mailing list I've found shell
scripts to start/stop JBoss on RH. I use Solaris and had to change them
slightly. However, I do not remember the link to th
Hi,
This is what I do (under SuSE Linux)
#find the run.sh process
ps -ef | grep run.sh | grep -v grep | awk '{ print $2 }'
>/tmp/jbossserverpid1.tmp
#find the jboss/java process subordinate to it
ps -ef | grep `cat /tmp/jbossserverpid1.tmp` | grep jboss | awk '{ print $2
}' >/tmp/jbossserverp
Somewhere on the JBoss mailing list I've found shell
scripts to start/stop JBoss on RH. I use Solaris and had to change them
slightly. However, I do not remember the link to the original script, so here's
my version.
file
/etc/init.d/jboss
#!/bin/sh
# Source function library.#.
/etc/r
Laurens,
The
jboss management interface can be used to shutdown jboss via http://localhost:8082/ViewObjectRes//DefaultDomain%3Atype%3DShutdown.
Paul
-Original Message-From:
[EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Laurens
FridaelSent: 20 June 2001 09:44To