Tomcat 安装部署步骤:
执行下列命令:
解压文件:
tar -zxvf apache-tomcat-6.0.29.tar.gz
将文件夹拷贝到目录去:
sudo cp -R apache-tomcat-6.0.29 /usr/share/tomcat
添加路径:
sudo gedit /etc/profile
在 /etc 的 profile 文件最后添加
export CATALINA_HOME=”/usr/share/tomcat”
export CATALINA_BASE=”/usr/share/tomcat”
启动 tomcat
/usr/share/tomcat/bin/startup.sh
显示
Using CATALINA_BASE: /usr/share/tomcat
Using CATALINA_HOME: /usr/share/tomcat
Using CATALINA_TMPDIR: /usr/share/tomcat/temp
Using JRE_HOME: /usr
Using CLASSPATH: /usr/share/tomcat/bin/bootstrap.jar:/usr/share/tomcat/bin/tomcat-juli.jar
到此 tomcat 已经安装完成,现在使用浏览器访问 http://[ 安装服务器 IP]:8080 ,出现 tomcat 默认页面,说明已经安装成功。
tomcat自动启动
命令:
gedit /etc/rc.local
在rc.local文件中输入(注意:要写在exit 0之前啊,学习了shell语言就知道为什么了。)
export JDK_HOME=/usr
export JAVA_HOME=/usr
/usr/share/tomcat/bin/startup.sh
保存后,重启系统。