Quick Start

Get TLS configured on your Bindplane collector receiver in minutes.

Before You Begin

circle-exclamation

Quick Format Verification

Before proceeding, verify your certificate and key files are in the correct format:

Check Certificate Format

head -5 /path/to/certificate.crt

You should see:

-----BEGIN CERTIFICATE-----
MIIDXTCCAkWgAwIBAgIJAKJ3PqGFGNkqMA0GCSqGSIb3DQEBCwUAMEUxCzAJBgNV
...

Check Private Key Format

You should see one of these (unencrypted):

triangle-exclamation

Minimal Working Configuration

For more detailed information on configuration, see the Configuration Guide.

For TCP Receiver

circle-info

What this does:

  • Enables TLS on the TCP receiver listening on port 10514

  • Presents your server certificate to connecting clients

  • Requires TLS 1.2 or higher

  • Clients verify your server's certificate (standard TLS)

For Syslog Receiver

File Permissions

Ensure proper file permissions for security:

Test Your Configuration

After configuring TLS, test the connection with OpenSSL:

You should see:

  • Connection established

  • Certificate chain displayed

  • Verify return code: 0 (ok) or appropriate verification result

For detailed testing instructions, see Testing and Verification.

Common Quick Start Issues

Issue: "Certificate and key do not match"

Cause: The certificate and private key files don't correspond to each other.

Quick Fix:

See Troubleshooting: Certificate Mismatch for details.

Issue: "Unknown CA" from clients

Cause: Missing intermediate certificates in the certificate chain.

Quick Fix: Create a fullchain file with your server certificate + intermediates:

See Certificate Requirements: Certificate Chain for details.

Issue: Collector won't start

Cause: Encrypted private key or wrong format.

Quick Fix:

See Troubleshooting: Failed to Load for details.

Next Steps

Verify your setup works:

Configure mutual TLS (mTLS):

Having issues?

Want to understand TLS better?

Need to convert certificate formats?

Last updated

Was this helpful?