Skip to content

How to get CA certificate for Jaeger over gRCP (TLS) #6377

Answered by dosubot bot
BenElferink asked this question in Q&A
Discussion options

You must be logged in to vote

Hey @BenElferink! I'm here to help you with your Jaeger TLS setup. Let's get this sorted out together! 🤖

To generate a CA certificate for Jaeger over gRPC (TLS) without using a third-party backend, you can use a shell script like gen-certs.sh from the Jaeger repository, which utilizes OpenSSL. Here’s a brief overview of the steps involved:

  1. Generate a CA Key and Certificate:

    openssl genrsa -out example-CA-key.pem 2048
    openssl req -new -key example-CA-key.pem -x509 -days 3650 -out example-CA-cert.pem -config ssl.conf
  2. Create Server and Client Keys:

    openssl genrsa -out example-server-key.pem 2048
    openssl genrsa -out example-client-key.pem 2048
  3. Create Certificate Signing Requests (CSRs):

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by BenElferink
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant