Páginas filhas
  • Configuração HTTPS e Certificado para Jboss AS

Versões comparadas

Chave

  • Esta linha foi adicionada.
  • Esta linha foi removida.
  • A formatação mudou.

...

keyalg

allias:

validity:

dname:

cn

ou

c

s

c


keytool -genkey -keystore my.keystore -storepass senhaStore -keypass senhaKey -keyalg RSA -alias minhaChave -validity 3650 -dname "CN=192.161.0.12, O=Customer, L=Seattle, S=Washington, C=US, OU=Seattle"




2. Extrair chave pública
keytool -export -alias testeChave -keystore my.keystore -storepass teste123 -rfc -file public.cert

3. Importar certificado
keytool -import -alias testeChave -file public.cert -storetype JKS -keystore my.truststore -storepass teste123