?
1、安裝Tomcat
1)下載apache-tomcat-6.0.37.tar.gz,上傳到服務器的/softs目錄
[root@h1 ~]# cd / softs [root@h1 softs]# ls apache -tomcat- 6.0 . 37 . tar .gz [root@h1 softs]#
2)進入/usr/local目錄,執行如下明命令
[root@h1 local]# tar -zxvf /softs/apache-tomcat- 6.0 . 37 . tar .gz
執行結束,Tomcat已經解壓好
[root@h1 local]# ls apache -tomcat- 6.0 . 37 bin etc games include lib lib64 libexec sbin share src [root@h1 local]#
3)進入Tomcat安裝路徑中的bin目錄,執行如下命令,啟動Tomcat
[root@h1 bin]# ./startup. sh Using CATALINA_BASE: /usr/local/apache-tomcat- 6.0 . 37 Using CATALINA_HOME: /usr/local/apache-tomcat- 6.0 . 37 Using CATALINA_TMPDIR: /usr/local/apache-tomcat- 6.0 . 37 / temp Using JRE_HOME: /usr/java/jdk1. 6 .0_37 Using CLASSPATH: /usr/local/apache-tomcat- 6.0 . 37 /bin/bootstrap.jar
4)執行如下命令,關閉Tomcat
[root@h1 bin]# ./shutdown. sh Using CATALINA_BASE: /usr/local/apache-tomcat- 6.0 . 37 Using CATALINA_HOME: /usr/local/apache-tomcat- 6.0 . 37 Using CATALINA_TMPDIR: /usr/local/apache-tomcat- 6.0 . 37 / temp Using JRE_HOME: /usr/java/jdk1. 6 .0_37 Using CLASSPATH: /usr/local/apache-tomcat- 6.0 . 37 /bin/ bootstrap.jar [root@h1 bin]#
?
2、將Tomcat配置成系統服務
1)進入/etc/init.d目錄,編寫Tomcat啟動腳本
[root@h1 init.d]#
vi
tomcat
腳本內容如下
#!/bin/ bash #description:tomcat start stop restart #processname:tomcat #chkconfig: 2345 20 85 JAVA_HOME =/usr/java/jdk1. 6 .0_37 export JAVA_HOME PATH =$JAVA_HOME/ bin:$PATH export PATH CATALINA_HOME =/usr/local/apache-tomcat- 6.0 . 37 case $ 1 in start) sh $CATALINA_HOME/bin/startup. sh ;; stop) sh $CATALINA_HOME/bin/shutdown. sh ;; restart) sh $CATALINA_HOME/bin/shutdown. sh sh $CATALINA_HOME/bin/startup. sh ;; esac
# chkconfig: 2345 10 90 ?告訴chkconfig缺省的啟動執行等級、啟動優先級、停止優先級
2)賦予tomcat腳本可執行權限
[root@h1 init.d]# chmod 755 tomcat
3)將Tomcat添加為系統服務
[root@h1 init.d]# chkconfig --add tomcat
4)指定Tomcat服務在系統服務等級中開啟
[root@h1 init.d]# chkconfig --level
2345
tomcat on
5)查看tomcat在那些執行等級中開啟
[root@h1 init.d]# chkconfig -- list tomcat tomcat 0 :off 1 :off 2 :on 3 :on 4 :on 5 :on 6 :off [root@h1 init.d]#
6)啟動tomcat
[root@h1 init.d]# service tomcat start
7)停止tomcat
[root@h1 init.d]# service tomcat stop
8)重啟動tomcat
[root@h1 init.d]# service tomcat restart
更多文章、技術交流、商務合作、聯系博主
微信掃碼或搜索:z360901061

微信掃一掃加我為好友
QQ號聯系: 360901061
您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。
【本文對您有幫助就好】元
