linux tomcat quick start

vim /etc/init.d/tom

Press i to edit the tomcat directory below and need to change my tomcat directory/tom

# !/bin/bash  
# Description: start or stop the tomcat  
# Usage:        tomcat [start|stop|restart]  
#  
export PATH=$PATH:$HOME/bin
export BASH_ENV=$HOME/.bashrc
export USERNAME="root"
 
case "$1" in
start)
#startup the tomcat  
cd /tom/bin
./startup.sh
;;
stop)
# stop tomcat  
cd /tom/bin
./shutdown.sh
echo "Tomcat Stoped"
;;
restart)
$0 stop
$0 start
;;
*)
echo "tomcat: usage: tomcat [start|stop|restart]"
exit 1
esac
exit 0

chmod +x /etc/init.d/tom

cd /usr/bin

ln -s /etc/init.d/tom

Guess you like

Origin blog.csdn.net/qq_43361434/article/details/106411753