[JBoss-user] [Beginners Corner] - Re: Problem stopping JBoss: wrong port number

2004-08-06 Thread genman
Last line of shutdown.sh, you can specify the port number to use:

org.jboss.Shutdown -S -s jnp://localhost:10990


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3844333#3844333

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3844333


---
This SF.Net email is sponsored by OSTG. Have you noticed the changes on
Linux.com, ITManagersJournal and NewsForge in the past few weeks? Now,
one more big change to announce. We are now OSTG- Open Source Technology
Group. Come see the changes on the new OSTG site. www.ostg.com
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: Problem stopping JBoss: wrong port number

2004-08-06 Thread GRatcliffe
Thanks for the -s tip.

Didn't know about that. 

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3844365#3844365

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3844365


---
This SF.Net email is sponsored by OSTG. Have you noticed the changes on
Linux.com, ITManagersJournal and NewsForge in the past few weeks? Now,
one more big change to announce. We are now OSTG- Open Source Technology
Group. Come see the changes on the new OSTG site. www.ostg.com
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: Problem stopping JBoss: wrong port number

2004-08-04 Thread GRatcliffe
In the bin directory there is a shutdown.jar. If you look in this you will see
there is a jndi.properties file. It contains localhoat:1099. If you use
shutdown.sh or shutdown.bat it will use the file unless you ensure another version, 
that can contain the correct host/port, is found first.

Note that using this method of shutting JBoss down is a 'polite' request via JMX. If 
things have gone badly wrong it may not work. The other poster showed a better 
approach for Unix. For Windows I would suggest the Java Wrapper service. Details in 
the wiki I think.

Gary

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3844089#3844089

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3844089


---
This SF.Net email is sponsored by OSTG. Have you noticed the changes on
Linux.com, ITManagersJournal and NewsForge in the past few weeks? Now,
one more big change to announce. We are now OSTG- Open Source Technology
Group. Come see the changes on the new OSTG site. www.ostg.com
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: Problem stopping JBoss: wrong port number

2004-08-03 Thread aalmero
you can use this script below.

#!/sbin/sh
  | case $1 in
  | 'start')
  | echo Starting Jboss Server
  | /usr/jboss/bin/run.sh1 | tee /var/log/jboss 
  |;;
  | 'stop')
  | echo Stopping Jboss Server
  | #PID = /usr/bin/pgrep java
  | /usr/bin/pkill -9 java
  |;;
  | *)
  | echo Usage: $0 { start | stop }
  | exit 1
  |;;
  | esac
  | exit 0
  | 


hth
aalmero


View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=3844032#3844032

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=3844032


---
This SF.Net email is sponsored by OSTG. Have you noticed the changes on
Linux.com, ITManagersJournal and NewsForge in the past few weeks? Now,
one more big change to announce. We are now OSTG- Open Source Technology
Group. Come see the changes on the new OSTG site. www.ostg.com
___
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user