安装jdk
安装tomcat
5、开放默认端口8080
6、浏览器中访问http://192.168/226/129:8080,出现下面页面,证明安装成功
7、设置开机自启
写入以下内容:
. /etc/init.d/<span style="color: #000000;">functions
elif [ -f /etc/rc.d/init.d/<span style="color: #000000;">functions ]; then
. /etc/rc.d/init.d/<span style="color: #000000;">functions
<span style="color: #0000ff;">else<span style="color: #000000;">
echo -e <span style="color: #800000;">"<span style="color: #800000;">/atomcat: unable to locate functions lib. Cannot continue.<span style="color: #800000;">"<span style="color: #000000;">
exit -<span style="color: #800080;">1<span style="color: #000000;">
fi
RETVAL=$?<span style="color: #000000;">
CATALINA_HOME=<span style="color: #800000;">"<span style="color: #800000;">/usr/local/tomcat<span style="color: #800000;">"
<span style="color: #0000ff;">case <span style="color: #800000;">"<span style="color: #800000;">$1<span style="color: #800000;">" <span style="color: #0000ff;">in<span style="color: #000000;">
start)
<span style="color: #0000ff;">if [ -f $CATALINA_HOME/bin/<span style="color: #000000;">startup.sh ];
then
echo $<span style="color: #800000;">"<span style="color: #800000;">Starting Tomcat<span style="color: #800000;">"<span style="color: #000000;">
$CATALINA_HOME/bin/<span style="color: #000000;">startup.sh
fi
;;
stop)
<span style="color: #0000ff;">if [ -f $CATALINA_HOME/bin/<span style="color: #000000;">shutdown.sh ];
then
echo $<span style="color: #800000;">"<span style="color: #800000;">Stopping Tomcat<span style="color: #800000;">"<span style="color: #000000;">
$CATALINA_HOME/bin/<span style="color: #000000;">shutdown.sh
fi
;;
*<span style="color: #000000;">)
echo $<span style="color: #800000;">"<span style="color: #800000;">Usage: $0 {start|stop}<span style="color: #800000;">"<span style="color: #000000;">
exit <span style="color: #800080;">1<span style="color: #000000;">
;;
esac
exit $RETVAL
9、添加到服务中
重启tomcat
结语
注意环境变量的配置,jdk的路径问题。