首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 服务器 > Apache >

tomcat跟apache整合

2012-09-02 
tomcat和apache整合Context path/jsong docBaseD:\jsong debug0 reloadabletrue crossC/Co

tomcat和apache整合

    <Context path="/jsong" docBase="D:\jsong" debug="0" reloadable="true" crossC></Context> </host>
    必须在host标签里面,然后保存
    5.修改apache配置文件
    修改httpd.conf文件
    在文件的最后面加入:
      LoadModule jk2_module modules/mod_jk2.so:表示把od_jk2.so文件加载近来 <VirtualHost 127.0.0.1:80> ServerAdmin songj888@sina.com :是我的服务器管理员,必须和文件上面的ServerAdmin里面的内容一样 DocumentRoot "D:\jsong" :是我的项目的路径 ServerName 127.0.0.1 :我的服务名 127.0.0.1代表是我的本机 <!-- 下面的都是自动生成的 --> DirectoryIndex index.htm index.html index.jsp ErrorLog logs/dummy-host.example.com-error_log CustomLog logs/dummy-host.example.com-access_log common </VirtualHost> 6.然后在新建一个workers2.properties文件
      在里面写入
        [shm] file=D:/Apache2/logs/shm.file size=1048576 [channel.socket:localhost:8009] port=8009 host=127.0.0.1 [ajp13:localhost:8009] channel=channel.socket:localhost:8009 #让Apache支持servlet、jsp,.do传送,交由tomcat处理 [uri:/*.jsp] worker=ajp13:localhost:8009 [uri:/*.do] worker=ajp13:localhost:8009 [uri:/servlet/*] worker=ajp13:localhost:8009 保存
        7.在d://新建一个jsong文件夹,在里面新建一个index.jsp的文件.在里面写入以下代码:
          <html> <head> <title>Hello</title> </head> <body> <h1>heello</h1> <% out.println("Hello World!"); %> </body> </html> 保存
          然后在重启apache和tomcat服务器,
          在IE上是输入http://localhost:8080/jsong/index.jsp 测试tomcat
          http://localhost/jsong/index.jsp 测试apache
          页面显示都 "hello和hello word"的话 就表示整合成功

热点排行