Ubuntu下使用解壓版Tomcat7

2021-06-29 13:40:35 字數 748 閱讀 5493

wget 

.org/tomcat/tomcat-8/v8.0

.21/bin/apache-tomcat-7.0

.59.tar

.gz

上面的命令執行完後,執行命令的當前目錄下,就會多出乙個apache-tomcat-7.0.59.tar.gz的壓縮包。

在apache-tomcat-7.0.59.tar.gz檔案所在的路徑下,執行下面的命令:

tar xzvf apache-tomcat-7.0

.59.tar

.gz

使用vim或者記事本開啟/etc/profile,在檔案後面新增:

catalina_home=/home/tangyubin

/programfiles/apache-tomcat-7.0.59

export path=$catalina/bin:

$path

使/etc/profile生效

source /etc/profile
終端切換到tomcat解壓後資料夾中,進入../apache-tomcat-7.0.59/bin路徑下面,執行下面的命令:

./startup.sh
http://localhost:8080/
如果能夠開啟tomcat的主頁,則表示安裝成功。

ubuntu下解壓zip檔案

1.功能作用 解壓縮zip檔案 2.位置 usr bin unzip 3.格式用法 unzip z opts modifiers file zip list x xlist d exdir 4.主要引數 5.應用例項 1 把檔案解壓到當前目錄下 unzip test.zip 2 如果要把檔案解壓到指...

ubuntu 下解壓,打包 命令

tar 解包 tar xvf filename.tar 打包 tar cvf filename.tar dirname 注 tar是打包,不是壓縮!gz 解壓1 gunzip filename.gz 解壓2 gzip d filename.gz 壓縮 gzip filename tar.gz 和 t...

ubuntu下解壓亂碼以及無法解壓rar的解決方法

一般要讓ubuntu能解壓rar文件,都要安裝rar套件,指令如下 sudo apt get install rar 但這個方法會使某些rar文件裡面出現亂碼。建議按以下方法解決,指令如下 sudo apt get remove rar sudo apt get remove unrar 如果有 將...