English 中文(简体)
JBoss——服务器、xml 连接器,没有为认证进行适当配置
原标题:JBoss - server.xml connector not properly configurated for certificate recognition

我先从真正的签字(有效期为15天,时间越长或更低)获得审判根证书,然后进口到由jdk钥匙tool创建的钥匙店。 所有必要的步骤,即设立领取证书的办事员(不是自签),等等都已签发。

These are the files the keystore contains:

  • private key
  • a trial root certificate obtained by verisgin
  • my own certificate created by a csr and obtained from verising

可悲的是,火ox所交回的数据与关键仓库所装的私人钥匙相对应。

I suspect there is something to do with the CN of the certificate created from csr, probably that piece of data should contain the FQDN of the hosts which runs the application. I m using JBoss 4.x as the app. server and configured server.xml Connector element, the so called configuration is the following:

<Connector port="443" protocol="HTTP/1.1" SSLEnabled="true"
    redirectPort="8443"
    maxThreads="3000" scheme="https" secure="true"
    strategy="ms"
    address="${jboss.bind.address}"
    keystoreFile="${jboss.server.home.dir}/conf/t2facebook.jks"
    keystorePass="TPC.961"
truststoreFile="${jboss.server.home.dir}/conf/t2facebook.jks"
    truststorePass="TPC.961"
    sslProtocol="TLS"
clientAuth="true"/>

提前感谢!

PS:顺便说一句,从火ox中抽出的错误是:sec_error_ca_cert_invalid

问题回答

最后,我进口证书时,与私人钥匙不同。 只是根据私人钥匙的同样内容进口证书(或链条或证书,指根基、中间和从地主那里获得的证书),并将进行罚款。





相关问题
Signed executables under Linux

For security reasons, it is desirable to check the integrity of code before execution, avoiding tampered software by an attacker. So, my question is How to sign executable code and run only trusted ...

MALICIOUS_CODE EI_EXPOSE_REP Medium

I run findbugs against all of my code and only tackle the top stuff. I finally got the top stuff resolved and now am looking at the details. I have a simple entity, say a user: public class User ...

XSS on jsbin.com

Anyone know if jsbin.com implements any protection for XSS or other javascript attacks? I see jsbin links used fairly regularly on sites like this one and I can t find any indication from the site ...

Make md5 strong

Im making a website that will intergrate with game that only support md5 hashing metod (atm). Which ofc is not especially safe anymore. But how could i make it stronger? Should I just generate long ...

Why running a service as Local System is bad on windows?

I am trying to find out the difference between difference service account types. I tumbled upon this question. The answer was because it has powerful access to local resources, and Network Service ...

Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

热门标签