1.说明
Tomcat安装还是比较简单的,在Windows和Linux下都是直接解压就可以了。
2.下载
8.0版本下载页面:http://tomcat.apache.org/download-80.cgi
当前维护版本下载页面:http://mirrors.hust.edu.cn/apache/tomcat/
历史各版本下载页面:http://archive.apache.org/dist/tomcat/
linux要下载tar.gz版本不要下载zip版本,不然各文件可权限配置不正确(尤其是各.sh文件没有可执行权限)
3.解压
Windows用RAR等解压,Linux用tar -zxvf解压
4.网站根目录和端口
tomcat默认主目录是其解压包下的webapps目录;修改网站根目录:
conf目录下的server.xml文件,在<Host name="localhost" appBase="webapps" unpackWARs="true" autoDeploy="true"></Host>标签中添加:<Context path="" docBase="yourDiretory" debug="0"/>
端口:conf目录下的server.xml文件,修改port的值即可<Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" />
在Linux中如果端口值小于1024(不包括1024)那么需要使用root用户才能成功启动tomcat监听该端口(已验证,应该只是tomcat自身的限定操作系统应该不会限制进程使用什么端口)
5.启停
bin目录下:
Windows:startup.bat/shutdown.bat
Linux:startup.sh/shutdown.sh
参考: