Message Boards

Jboss server stop in Linux machine

thumbnail
Manikantha Rajamani, modified 8 Years ago.

Jboss server stop in Linux machine

Expert Posts: 258 Join Date: 3/25/14 Recent Posts
Hi,

Any one can help me how to stop Jboss server in linux machine.

Regards
Manikantha R
thumbnail
David H Nebinger, modified 8 Years ago.

RE: Jboss server stop in Linux machine

Liferay Legend Posts: 14915 Join Date: 9/2/06 Recent Posts
I'm sure it's covered in the jboss documentation or in the jboss forums...
thumbnail
Gnaniyar Zubair, modified 5 Years ago.

RE: Jboss server stop in Linux machine

Liferay Master Posts: 722 Join Date: 12/19/07 Recent Posts
Manikantha Rajamani:
Hi, Any one can help me how to stop Jboss server in linux machine. Regards Manikantha R


You can try  ./shutdown.sh -S  or

                      kill -9 pid

thumbnail
Olaf Kock, modified 5 Years ago.

RE: Jboss server stop in Linux machine

Liferay Legend Posts: 6400 Join Date: 9/23/08 Recent Posts
Gnaniyar Zubair:

                      kill -9 pid

That should only be the very last resort, no matter what you're stopping. It prevents a clean shutdown and just terminates the process without any warning.

In other words: This is what exactly nobody should do, especially not when they find this post because they're trying to shutdown jboss.

thumbnail
Gnaniyar Zubair, modified 5 Years ago.

RE: Jboss server stop in Linux machine

Liferay Master Posts: 722 Join Date: 12/19/07 Recent Posts
Yes that was the final option if nothing works . :)