美文网首页
tomcat在mac上配置

tomcat在mac上配置

作者: 美得冒泡的姗迪 | 来源:发表于2017-08-15 17:24 被阅读0次

参考:http://blog.csdn.net/huyisu/article/details/38372663

1.直接上下载地址:

 [http://tomcat.apache.org/download-70.cgi]
 下载想要的tomcat版本6 or  7  or 8 or  9 
 选择zip版本

2.解压到某个文件夹

这里我存放在/usr/local/tomcat8中

3.添加你tomcat放入的路径的path

vim ~/.bash_profile
export PATH="$PATH:/usr/local/tomcat8"
source ~/.bashrc

4.启动tomcat

sudo chmod 755 *.sh  #如果出现权限问题,注意是* 不是某个sh
/usr/local/tomcat8/bin/startup.sh  #启动

5.访问localhost

http://localhost:8080/
出来tomcat页面,说明启动成功

相关文章

网友评论

      本文标题:tomcat在mac上配置

      本文链接:https://www.haomeiwen.com/subject/hgocsttx.html