linux centos中使用yum安装tomcat
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux centos中使用yum安装tomcat相关的知识,希望对你有一定的参考价值。
在linux下部署java开发的web应用,一般采用Tomact+jre环境(可不需要apache),在RHEL和CentOS下,可以采用yum在线自动安装方式安装,具体操作如下:
可以先查看tomcat在服务器上面的版本
yum search tomcat
安装命令
yum install tomcat6
执行以上命令系统会自动安装tomcat和所关联的jdk
下面结束安装系统位置和检测安装情况
安装位置 /etc/tomcat6 主程序/软件存放webapp位置 /var/lib/tomcat6/webapps 在Centos使用yum安装后,Tomcat相关的目录都已采用符号链接到/usr/share/tomcat6目录,包含webapps等,这很方便我们配置管理 /usr/share/tomcat6 日志记录位置 /var/log/tomcat6
注:要查看所有tomcat分散请求下面目录查看
/usr/share/tomcat6
[[email protected] tomcat6]# pwd /usr/share/tomcat6 [[email protected] tomcat6]# ll 总用量 4 drwxr-xr-x. 2 root root 4096 7月 11 19:20 bin lrwxrwxrwx. 1 root tomcat 12 7月 11 19:20 conf -> /etc/tomcat6 lrwxrwxrwx. 1 root root 23 7月 11 19:20 lib -> /usr/share/java/tomcat6 lrwxrwxrwx. 1 root root 16 7月 11 19:20 logs -> /var/log/tomcat6 lrwxrwxrwx. 1 root root 23 7月 11 19:20 temp -> /var/cache/tomcat6/temp lrwxrwxrwx. 1 root root 24 7月 11 19:20 webapps -> /var/lib/tomcat6/webapps lrwxrwxrwx. 1 root root 23 7月 11 19:20 work -> /var/cache/tomcat6/work [[email protected] tomcat6]#
查看全部tomcat安装目录
rpm -ql tomcat6 | cat -n
启动、停止、重启tomcat
service tomcat6 start
service tomcat6 stop
service tomcat5 restart
以上是关于linux centos中使用yum安装tomcat的主要内容,如果未能解决你的问题,请参考以下文章
环境准备—之—linux下配置tomcat(yum安装openjdk)
Linux CentOS 使用Yum源安装MySQL 5.7