下载
tomcat 官网下载tomcat安装包 这里使用的是8.0版本
配置
1. tomcat是免安装的将解压出来的文件拷贝到指定目录,这里放在/usr/local下
2. 设置环境变量
$ touch ~/.bash_profile
$ vi ~/.bash_profile
$ source ~/.bash_profile
添加的变量
export PATH=$PATH:/usr/local/apache-tomcat-8.5.16/bin
3. 测试
在终端执行startup.sh,会弹出权限错误
-bash: /usr/local/apache-tomcat-8.5.16/bin/startup.sh: Permission denied
使用chmod修改权限
chmod 755 /usr/local/apache-tomcat-8.5.16/bin/*.sh
如出现下面的输出表示成功了
在浏览器中输入http://localhost:8080
可看到tomcat首页
网友评论