macOS 配置Tomcat

安装Apr

1
brew install apr apr-util

安装Tomcat

1
brew install tomcat

启动Tomcat

1
2
brew services start tomcat
brew services restart tomcat

配置文件目录

1
2
cd /usr/local/Cellar/tomcat/
cd /usr/local/Cellar/tomcat/9.0.12/libexec/conf

部署jar项目

1
cp jenkins.jar /usr/local/Cellar/tomcat/9.0.12/libexec/webapps

监控服务器

1、确保Tomcat可以正常启动

2、打开conf下的tomcat-users.xml并添加

1
2
<role rolename="manager-gui"/>
<user username="admin" password="admin" roles="manager-gui"/>

3、重启tomcat并访问http://localhost:8080/manager/html

4、http://localhost:8080/manager/status

×

纯属好玩

扫码支持
扫码打赏,你说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

文章目录
  1. 1. 安装Apr
  2. 2. 安装Tomcat
  3. 3. 启动Tomcat
  4. 4. 配置文件目录
  5. 5. 部署jar项目
  6. 6. 监控服务器
,