How to use SSL certificates in Neo4j instead of self-signed certificates (or snakeoil.cert)

前端 未结 3 802
隐瞒了意图╮
隐瞒了意图╮ 2021-01-14 06:58

For a production Neo4j server I need to use a SSL certificate that is not self-signed. I will post lessons learned in the response below.

3条回答
  •  逝去的感伤
    2021-01-14 07:35

    Thanks rvaneijk. It works for me.

    To install the signed certificate (Which is obtained from your CA). Keep your pem and key file in same folder.

    1. Create certificate in (der format) with extension .crt

    sudo openssl x509 -outform der -in your_server_pem.pem -out /.crt

    1. Create DER formatted key

    sudo openssl rsa -in server.key -inform PEM -out /.key -outform DER

    http://www.scriptscoop2.com/t/8f3630652fcd/how-to-use-ssl-certificates-in-neo4j-instead-of-self-signed-certificat.html

提交回复
热议问题