Below you will find pages that utilize the taxonomy term “Tomcat”
June 13, 2011
CentOS 5.5 Nginx+JDK+MySQL+Tomcat(jsp)
"\u003cp\u003e\u003cstrong\u003e一.安装Nginx\u003c/strong\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003cp\u003e\u003ca href=\"http://blog.haohtml.com/archives/6051\"\u003ehttp://blog.haohtml.com/archives/6051\u003c/a\u003e\u003c/p\u003e\u003c/blockquote\u003e\n\u003cp\u003e\u003cstrong\u003e二.安装jdk\u003c/strong\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003cp\u003e\u003ca href=\"http://blog.haohtml.com/archives/9765\"\u003ehttp://blog.haohtml.com/archives/9765\u003c/a\u003e\u003c/p\u003e\u003c/blockquote\u003e\n\u003cp\u003e\u003cstrong\u003e三、安装apache tomcat\u003c/strong\u003e\n1、下载apache tomcat并安装tomcat\u003c/p\u003e\n\u003cblockquote\u003e\n\u003cp\u003ewget \u003ca href=\"http://labs.renren.com/apache-mirror/tomcat/tomcat-7/v7.0.14/bin/apache-tomcat-7.0.14.tar.gz\"\u003ehttp://labs.renren.com/apache-mirror/tomcat/tomcat-7/v7.0.14/bin/apache-tomcat-7.0.14.tar.gz\u003c/a\u003e\ntar zxvf apache-tomcat-7.0.14.tar.gz\nmv apache-tomcat-7.0.14 /usr/local/tomcat\ncp -rf /usr/local/tomcat/webapps/* /www/\u003c/p\u003e\u003c/blockquote\u003e\n\u003cp\u003e2、配置tomcat的server.xml文件,并启动或停止tomcat\u003c/p\u003e\n\u003cblockquote\u003e\n\u003cp\u003e#vim /usr/local/tomcat/conf/server.xml\u003c/p\u003e\u003c/blockquote\u003e\n\u003cp\u003e查找appBase=”webapps”,修改为appBase=”/www”,其中/www 即为网页的根目录。\n安装完成后,启 …\u003c/p\u003e"
September 13, 2010
用Tomcat绑定多域名
"\u003cp\u003e\u003cstrong\u003e一、首先将端口改为80端口\u003c/strong\u003e\u003c/p\u003e\n\u003cp\u003e打开server.xml文件\u003c/p\u003e\n\u003cp\u003e将其中的8080端口改为80,即:\u003c/p\u003e\n\u003cp\u003emaxThreads=”150″ minSpareThreads=”25″ maxSpareThreads=”75″\u003c/p\u003e\n\u003cp\u003eenableLookups=”false” redirectPort=”8443″ acceptCount=”100″\u003c/p\u003e\n\u003cp\u003econnectionTimeout=”20000″ disableUploadTimeout=”true” /\u0026gt;\u003c/p\u003e\n\u003cp\u003e改为:\u003c/p\u003e\n\u003cp\u003emaxThreads=”150″ minSpareThreads=”25″ maxSpareThreads=”75″\u003c/p\u003e\n\u003cp\u003eenableLookups=”false” redirectPort=”8443″ acceptCount=”100″\u003c/p\u003e\n\u003cp\u003econnectionTimeout=”20000″ disableUploadTimeout=”true” /\u0026gt;\u003c/p\u003e\n\u003cp\u003e\u003cstrong\u003e二、然后更改默认访问站点:\u003c/strong\u003e\u003c/p\u003e\n\u003cp\u003e即\u003c/p\u003e\n\u003cp\u003e默认的是localhost\u003c/p\u003e\n\u003cp\u003e现在将其改为任意本机上绑定域名,如改为:\u003c/p\u003e\n\u003cp\u003e这样做是为了防止进入Tomcat的默认管理页面!\u003c/p\u003e\n\u003cp\u003e\u003cstrong\u003e三、最后配置,即在前加入以下代 …\u003c/strong\u003e\u003c/p\u003e"