From commits-return-2124-archive-asf-public=cust-asf.ponee.io@zipkin.apache.org Mon Jun 17 08:45:51 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id 8FA8318062B for ; Mon, 17 Jun 2019 10:45:51 +0200 (CEST) Received: (qmail 5847 invoked by uid 500); 17 Jun 2019 08:45:51 -0000 Mailing-List: contact commits-help@zipkin.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@zipkin.apache.org Delivered-To: mailing list commits@zipkin.apache.org Received: (qmail 5838 invoked by uid 99); 17 Jun 2019 08:45:50 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 17 Jun 2019 08:45:50 +0000 From: GitBox To: commits@zipkin.apache.org Subject: [GitHub] [incubator-zipkin] adriancole commented on issue #2627: HTTPS/SSL failing for 2.14 zipkin Message-ID: <156076115087.11372.8370295618782508683.gitbox@gitbox.apache.org> Date: Mon, 17 Jun 2019 08:45:50 -0000 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit 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