tomcat
官网下载
选择合适版本
查看本机版本
bogon:~ xiaoyu$ java -version
java version "1.8.0_121"
Java(TM) SE Runtime Environment (build 1.8.0_121-b13)
Java HotSpot(TM) 64-Bit Server VM (build 25.121-b13, mixed mode)
选择安装最新版,在这之前,先选择镜像http://mirrors.tuna.tsinghua.edu.cn/
wget http://mirrors.tuna.tsinghua.edu.cn/apache/tomcat/tomcat-9/v9.0.0.M17/bin/apache-tomcat-9.0.0.M17.tar.gz
解压安装
tar -xf apache-tomcat-9.0.0.M17.tar.gz
cd apache-tomcat-9.0.0.M17
把bin文件夹加入环境变量
vi ~/.bash_profile
添加进去 /Applications/XAMPP/apache-tomcat-9.0.0.M17/bin:
重启终端
由于配置了环境变量,在任意路径下输入startup.sh
,可以启动tomcat
bogon:~ xiaoyu$ startup.sh
Using CATALINA_BASE: /Applications/XAMPP/apache-tomcat-9.0.0.M17
Using CATALINA_HOME: /Applications/XAMPP/apache-tomcat-9.0.0.M17
Using CATALINA_TMPDIR: /Applications/XAMPP/apache-tomcat-9.0.0.M17/temp
Using JRE_HOME: /Library/Java/JavaVirtualMachines/jdk1.8.0_121.jdk/Contents/Home
Using CLASSPATH: /Applications/XAMPP/apache-tomcat-9.0.0.M17/bin/bootstrap.jar:/Applications/XAMPP/apache-tomcat-9.0.0.M17/bin/tomcat-juli.jar
Tomcat started.
在浏览器输入http://localhost:8080/
,就可以看到tomcat服务器的对应界面。
服务器安装完成。
添加gui管理员
vi conf/tomcat-users.xml
//添加内容
<role rolename="manager-gui"/>
<user username="tomcat" password="tomcat" roles="manager-gui"/>
重新启动服务器,即可以进入管理app的界面
添加APP
经过打包之后,会生成一个***.war
的文件
在服务器运行的过程中,复制项目到/webapps
文件夹下,就可以自动部署项目。
比如项目名为demo
,那么访问的路径为http://localhost:8080/demo