LinuxSir.cn,穿越时空的Linuxsir!

 找回密码
 注册
搜索
热搜: shell linux mysql
查看: 829|回复: 1

apache+tomcat 的ssl设置问题

[复制链接]
发表于 2008-5-30 23:46:53 | 显示全部楼层 |阅读模式
各位大侠,最近碰到一个棘手的问题,因为刚刚接触tomcat+apache整合,所以有些问题一时搞不明白,老板却一直催,经过多种测试网上的方法无效,在这里请求指点一二。
  我们主要的服务是基于java开发的,web服务放在了tomcat5 下边,apache+tomcat 貌似已经整合,只是在设置ssl的时候,不知道应该怎么设。
我的问题是我应该将ssl设置在哪里?
1.apache +openssl?
2. tomcat +ssl?
第二种方法,设置完成,测试可以使用,但是使用第一种方法apache+tomcat+ssl ,访问https,只能访问到apache目录下的文件,我如果想实现,比如说,https://192.168.30.201/访问的是apache,如果访问https://192.168.30.201/"tomcat目录"该页就无法打开,请问这是哪里出了问题?
我如何才能实现,从apache 设置的ssl也连接到tomcat上?
希望高人给指点一下,感激不尽。
 楼主| 发表于 2008-5-31 01:00:29 | 显示全部楼层
1、##############httpd.conf################
...
..
....
....以上为默认
# Secure (SSL/TLS) connections
Include conf/extra/httpd-ssl.conf

#
# Note: The following must must be present to support
#       starting without SSL on platforms with no /dev/random equivalent
#       but a statically compiled-in mod_ssl.
#
<IfModule ssl_module>
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
</IfModule>
Include conf/extra/tomcat.conf


2、#########################tomcat.conf###########
LoadModule jk_module modules/mod_jk.so
JkWorkersFile /opt/tomcat5/conf/workers.properties
JkMount /* ajp13w
JkUnMount /statics* ajp13w




################workers.properties##############
# The workers that jk should create and work with
#
workers.tomcat_home=/opt/tomcat5
workers.java_home=/opt/jdk1.5.0

worker.list=ajp13w

# Defining a worker named ajp13w and of type ajp13
# Note that the name and the type do not have to match.
#
worker.ajp13w.type=ajp13
worker.ajp13w.host=localhost
worker.ajp13w.port=8009

worker.ajp13w.socket_timeout=30
worker.ajp13w.socket_keepalive=true


大概就是这样
server.key,server.crt 我已经生成了,ssh,在apache下工作是正常的。
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

快速回复 返回顶部 返回列表