1. 下载Tomcat,我下的是Tomcat 7.0.12,apache-tomcat-7.0.32.zip。
2. 解压压缩文件到MAC系统:“/Library”目录下,将文件夹改名为Tomcat。
3. 修改文件权限:sudo chmod 755 /Library/Tomcat/bin/*.sh
4. 执行/Library/Tomcat/bin下的startup.sh。
5. 设定管理者的帐号和密码:
编辑“/Library/tomcat/conf/tomcat-users.xml ”,加入
<role rolename="manager"/>
<user username="tomcat" password="xxxx" roles="manager"/>
<user username="tomcat" password="xxxx" roles="manager"/>
6. 打开http://localhost:8080,如果看到如下界面,说明Tomcat安装成功:
注意事项:
1. 执行脚本:startup.sh,报错:
Neither the JAVA_HOME nor the JRE_HOME environment variable is defined
At least one of these environment variable is needed to run this program
是因为系统没有安装java环境,只需要打开命令行,输入:java -version,系统将会引导你安装java环境,你直接安装就可以了。
来源:https://www.cnblogs.com/ydhliphonedev/archive/2012/10/26/2741637.html