美文网首页
Centos6下安装配置Tomcat8

Centos6下安装配置Tomcat8

作者: Austin_Brant | 来源:发表于2017-06-06 16:52 被阅读0次

    安装说明

    安装环境:CentOS-6.3
    安装方式:源码安装
    软件:apache-tomcat-8.0.44.tar.gz
    下载地址:http://tomcat.apache.org/download-80.cgi

    安装前提

    系统必须已安装配置JDK6+,安装请参考:在CentOS-6.3中安装与配置JDK-7

    下载

    到tomcat官网下载tomcat8

    下载

    安装Tomcat

    (1)解压

    cd /home/austin/bin/
     tar -zxvf apache-tomcat-8.0.44.tar.gz 
    
     # 解压成功后得到 apache-tomcat-8.0.44 文件夹,更名为tomcat7
     mv apache-tomcat-8.0.44 tomcat8
    

    (2)配置环境变量

     vim  ~/.bashrc 
    
     #在文件最后加上以下配置
    
     #tomcat evn
     CATALINA_HOME=/home/austin/bin/tomcat8
     export CATALINA_HOME
     #保存 退出后执行下面的命令,使其生效
     source ~/.bashrc
    

    (3)配置tomcat的catalina.sh文件

     #进入tomcat的安装目录
     cd /home/austin/bin/tomcat8/bin
     vi catalina.sh
     
     #找到 # OS specific support,然后在这行下面添加以下配置
     # OS specific support.  $var _must_ be set to either true or false.
     CATALINA_HOME=/home/austin/bin/tomcat8
     JAVA_HOME=/home/austin/bin/jdk1.8.0_40
     #保存退出
    

    (4)修改默认端口号(如没有需求,可不修改)

     #进入tomcat的配置目录
     cd /home/austin/bin/tomcat8/conf
     vim server.xml
    
     ## 输入/8080 找到默认端口配置,修改成自定义配置
    
        <Connector port="8086" protocol="HTTP/1.1"
                   connectionTimeout="20000"
                   redirectPort="8443" />
        <!-- A "Connector" using the shared thread pool-->
        <!--
        <Connector executor="tomcatThreadPool"
                   port="8086" protocol="HTTP/1.1"
                   connectionTimeout="20000"
                   redirectPort="8443" />
        -->
    

    (5)安装tomcat服务(可选

     ## 需要sudoer权限
     cd $CATALINA_HOME/bin 
     cp catalina.sh /etc/init.d/tomcat
    

    (6)启动服务

     # 如果安装了tomcat服务
     # 启动
     service tomcat start
     #停用
     service tomcat stop
    
     # 如果未安装tomcat服务
     # 启动
     $CATALINA_HOME/bin/startup.sh 
     #停用
     $CATALINA_HOME/bin/shutdown.sh
    

    启动成功, 命令行可看到:

     Using CATALINA_BASE:   /home/austin/bin/tomcat8
     Using CATALINA_HOME:   /home/austin/bin/tomcat8
     Using CATALINA_TMPDIR: /home/austin/bin/tomcat8/temp
     Using JRE_HOME:        /home/austin/bin/jdk1.8.0_40
     Using CLASSPATH:       /home/austin/bin/tomcat8/bin/bootstrap.jar:/home/austin/bin/tomcat8/bin/tomcat-juli.jar
     Tomcat started.
    

    (7)此时页面访问可看到tomcat系统界面,说明安装成功!

    相关文章

      网友评论

          本文标题:Centos6下安装配置Tomcat8

          本文链接:https://www.haomeiwen.com/subject/zexnfxtx.html