linux下部署web项目

liunx下如何部署web项目呢?很简单啦,概述如下,希望能帮助到不会使用linux的同学。

第一步:下载tomcat

tomat官网:http://tomcat.apache.org/

选择Core:tar.gz版本

linux下部署web项目_第1张图片

第二步:上传到服务器上并解压

解压文件(格式不同,命令不同)

   1)*.tar 用 tar –xvf 解压
   2)*.gz 用 gzip -d或者gunzip 解压
   3)*.tar.gz和*.tgz 用 tar –xf 解压
   4)*.bz2 用 bzip2 -d或者用bunzip2 解压
   5)*.tar.bz2用tar –xjf 解压
   6)*.Z 用 uncompress 解压
   7)*.tar.Z 用tar –xZf 解压
   8)*.rar 用 unrar e解压
   9)*.zip 用 unzip 解压

第三步:部署

在tomcat/webapps目录下上传编译后的文件

第四步:给脚本文件赋上执行的权限

linux下部署web项目_第2张图片

linux下部署web项目_第3张图片

第五步:启动tomat服务

进入tomat的bin目录,用startup.sh命令启动tomcat

linux下部署web项目_第4张图片

启动和关闭示例如下:

linux下部署web项目_第5张图片

你可能感兴趣的:(linux)