tomcat6两个常用配置,端口和web目录
该端口这个事比较纠结,改的时候一定要小心,因为端口有可能被其他服务占用哦
80端口是默认端口就很容易被其他服务占用
我想改成8088端口:
首先在cmd中输入netstat -aon | findstr "8088" 查看端口是否被占用 当然我的乜有
在tomcat安装目录下打开conf下的server.xml
找到
<Connector port="8080" protocol="HTTP/1.1"
maxThreads="150" connectionTimeout="20000"
redirectPort="8443" />
将port值改为8088然后重启tomcat就ok了
在server.xml中找到
<Host name="localhost" appBase="webapps"
unpackWARs="true" autoDeploy="true"
xmlValidation="false" xmlNamespaceAware="false">
将appBase的值改为你想作为你想要作为根目录的路径就好了(最好用绝对路径)