Ubuntu 16.04.2 LTS 安裝 jdk1.6 和 tomcat6 (二)
阿新 • • 發佈:2017-07-27
pass set 命令 arc 記錄 variable ogr ant pat 上一篇記錄和分享了jdk1.6 在Ubuntu 16.04.2 環境下的安裝配置,本文開始安裝和配置tomcat 6
2 安裝tomcat
http://tomcat.apache.org/download-60.cgi
2.2 傳入文件
可以在ubunbu上直接下載,也可以在mac上下載完成,通過scp上傳到服務器。
scp apache-tomcat-6.0.53.tar.gz [email protected]:/home/asialantao [email protected]‘s password: apache-tomcat-6.02.3 解壓文件.53.tar.gz 100% 6944KB 6.8MB/s 00:00
$ tar -zxv -f apache-tomcat-6.0.53.tar.gz apache-tomcat-6.0.53/bin/catalina.sh apache-tomcat-6.0.53/bin/daemon.sh apache-tomcat-6.0.53/bin/digest.sh apache-tomcat-6.0.53/bin/setclasspath.sh apache-tomcat-6.0.53/bin/shutdown.sh apache-tomcat-6.0.53/bin/startup.sh ...2.4 啟動,停止tomcat 6 進入目錄,然後使用startup.sh啟動
$ cd apache-tomcat-6.0.53/bin
啟動命令
$ ./startup.sh Using CATALINA_BASE: /home/asialantao/apache-tomcat-6.0.53 Using CATALINA_HOME: /home/asialantao/apache-tomcat-6.0.53 Using CATALINA_TMPDIR: /home/asialantao/apache-tomcat-6.0.53/temp Using JRE_HOME:停止命令/usr/local/java/jdk1.6.0_45 Using CLASSPATH: /home/asialantao/apache-tomcat-6.0.53/bin/bootstrap.jar
$ ./shutdown.sh
如果沒有配置好環境變量,則出現如下錯誤信息
Neither the JAVA_HOME nor the JRE_HOME environment variable is defined
At least one of these environment variable is needed to run this program
需要返回上一篇配置好jdk 6
2.5 檢驗
$ ./version.sh Using CATALINA_BASE: /home/asialantao/apache-tomcat-6.0.53 Using CATALINA_HOME: /home/asialantao/apache-tomcat-6.0.53 Using CATALINA_TMPDIR: /home/asialantao/apache-tomcat-6.0.53/temp Using JRE_HOME: /usr/local/java/jdk1.6.0_45 Using CLASSPATH: /home/asialantao/apache-tomcat-6.0.53/bin/bootstrap.jar Server version: Apache Tomcat/6.0.53 Server built: Apr 2 2017 07:25:00 UTC Server number: 6.0.53.0 OS Name: Linux OS Version: 4.4.0-83-generic Architecture: amd64 JVM Version: 1.6.0_45-b06 JVM Vendor: Sun Microsystems Inc.
也可以在瀏覽器訪問8080端口,或者在命令行模式,可以使用curl
http://localhost:8080
Ubuntu 16.04.2 LTS 安裝 jdk1.6 和 tomcat6 (二)