1. 程式人生 > >Ubuntu下部署tomcat包

Ubuntu下部署tomcat包

轉載於https://www.jianshu.com/p/39fb151095f7

War包放到webapps目錄下,不用解壓

  1. 配置tomcat下的/conf/server.xml
    在Host配置段中新增,docBase引數標識的是war包的名稱。
<Context path="/" docBase="hdfs-webdav.war" debug="0" privileged="true" reloadable="true"/> 
  1. 進入tomcat/bin
./startup.sh
//啟動失敗等問題 加下許可權
 chmod 777 *.sh 
  1. 瀏覽器瀏覽
//TestWeb 是war包名稱
http://localhost:8080/TestWeb/index
  1. 外部電腦呼叫
//ubuntu查勘ip
ifconfig
//外部電腦呼叫地址
http://ip:8080/war包名/TestWeb/index



作者:蕭蕭冷者
連結:https://www.jianshu.com/p/39fb151095f7
來源:簡書
簡書著作權歸作者所有,任何形式的轉載都請聯絡作者獲得授權並註明出處。