Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1087350
  • 博文数量: 282
  • 博客积分: 10865
  • 博客等级: 上将
  • 技术积分: 2480
  • 用 户 组: 普通用户
  • 注册时间: 2006-05-12 12:35
文章存档

2017年(1)

2016年(3)

2015年(10)

2014年(12)

2013年(5)

2012年(10)

2011年(29)

2010年(3)

2008年(13)

2007年(92)

2006年(104)

我的朋友

分类: Java

2006-11-01 17:34:16

1.用keytool生成server.keystore文件:
C:\Documents and Settings\new>keytool -genkey -alias tc-ssl -keyalg RSA -keystore c:\ExpressPoscard.keystore -validity 3650
生成完后放入C:\jboss-3.2.6\server\default\conf中。
2。配置server.xml文件

                 maxThreads="100" minSpareThreads="5" maxSpareThreads="15"
           scheme="https" secure="true" clientAuth="false"
           keystoreFile="${jboss.server.home.dir}/conf/server.keystore"
           keystorePass="111111" sslProtocol = "TLS" />
3。访问,可以了。
同时也可以访问,
如果将http转向到https: 修改WEB应用的web.xml
=========web.xml==================

    
       HtmlAdaptor
       An example security config that only allows users with the
         role JBossAdmin to access the HTML JMX console web application
      

       /
      
    

    
    
            Protection should be CONFIDENTIAL
            CONFIDENTIAL
       

  

阅读(2062) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~