You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zipkin.apache.org by GitBox <gi...@apache.org> on 2019/06/17 08:45:50 UTC

[GitHub] [incubator-zipkin] adriancole commented on issue #2627: HTTPS/SSL failing for 2.14 zipkin

adriancole commented on issue #2627: HTTPS/SSL failing for 2.14 zipkin
URL: https://github.com/apache/incubator-zipkin/issues/2627#issuecomment-502591653
 
 
   Hi @koushik9951 we have a related issue for armeria to accept spring boot defaults for TLS configuration. Meanwhile, here are working instructions you can use.
   
   ```bash
   # assuming you generate the key like this
   keytool -genkeypair -alias koushik9951 -keyalg RSA -keysize 2048 -storetype PKCS12 -keystore zipkin.p12 -validity 3650
   
   # enter the following overrides, note the password is key-store-password not key-password
   java -jar zipkin.jar --armeria.ssl.key-store=zipkin.p12 --armeria.ssl.key-store-type=PKCS12 --armeria.ssl.key-store-password=123123 --armeria.ssl.key-alias=koushik9951 --security.require-ssl=true --armeria.ssl.enabled=true --armeria.ports[0].port=9411 --armeria.ports[0].protocols[0]=https
   ```
   
   cc also @gquintana

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services