CentOS 6.9通过yum安装指定版本的Tomcat
Posted Jim
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS 6.9通过yum安装指定版本的Tomcat相关的知识,希望对你有一定的参考价值。
说明:通过yum好处其实很多,环境变量不用配置,配置文件放在大家都熟悉的地方,通过rpm -ql xxx可以知道全部文件的地方等等。
一、安装Tomcat(8+)
// 下载脚本 # git clone https://github.com/boundlessgeo/rpm-tomcat8.git && cd rpm-tomcat8 // 安装rpm打包工具 # yum -y install rpmdevtools // 打包rpm包 # ./make_rpm.sh // 安装依赖 # rpm install -y redhat-lsb-core // 安装Open JDK # rpm install -y java-1.8.0-openjdk # rpm -ivh rpmbuild/RPMS/noarch/boundless-server-tomcat8-8.0.47-5.noarch.rpm // 切换回Oracle JDK # update-alternatives --config java // 一般选择第一个,选择非oepnjdk字样
备注:主要是这个脚本https://github.com/boundlessgeo/rpm-tomcat8,想要哪个版本可以直接上去这里修改文件即可。
二、设置开机启动
# chkconfig tomcat8 on
三、服务常用操作
// 服务状态 # service tomcat8 status // 服务启动 # service tomcat8 start // 服务停止 # service tomcat8 stop // 服务重启 # service tomcat8 restart
四、卸载
# yum -e boundless-server-tomcat8.noarch
以上是关于CentOS 6.9通过yum安装指定版本的Tomcat的主要内容,如果未能解决你的问题,请参考以下文章