LUnix How do I start and close a Java program with a shell?

Source: Internet
Author: User
Tags lunix

I wrote a Java program with the main method entry, already packed a jar and already started running under UNIX, but I wanted to write a script file to make it easier for managers to start and shut down my Java process. Similar to Tomcat startup.sh,shutdown.sh, but not specific how to write, I checked the data, probably the principle is to start the Java process, get the process pid,pid saved to a file, close, read this file, get Pid,kill pid. Specifically how to write do not know, please be familiar with this aspect of help to write, thank you.


Best Answer:

#!/bin/sh

server=/home/java/server
cd $SERVER case

"in Start"
    nohup Java-xmx128m-jar Server.jar > $SERVER/server.log 2>&1 &
    echo $! > $SERVER/server.pid
    ;;

  Stop)
    kill ' cat $SERVER/server.pid '
    rm-rf $SERVER/server.pid
    ;;

  Restart)
    $ stop Sleep
    1
    $ start
    ;;

  *)
    echo "Usage:run.sh {start|stop|restart}"
    ;;

Esac

Exit 0


Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.