Hi there !
I've installed the neo4j version 3.5.8, and I'm experiencing an issue while enabling the remote HTTPS support.
I've followed this quick tutorial here --> How do I enable remote HTTPS access with Neo4j 3.0.x - Knowledge Base
But when I restart the neo4j service, the remote interface is still unavailable:
INFO ======== Neo4j 3.5.8 ========
INFO Starting...
INFO Bolt enabled on 0.0.0.0:7687.
INFO Started.
INFO Remote interface available at https://localhost:7473/
On my configuration file (On path: /etc/neo4j/neo4j.conf), I've enabled the following:
[...]
dbms.connectors.default_listen_address=0.0.0.0
[...]
# Bolt connector
dbms.connector.bolt.enabled=true
#dbms.connector.bolt.tls_level=OPTIONAL
#dbms.connector.bolt.listen_address=:7687
# HTTP Connector. There can be zero or one HTTP connectors.
dbms.connector.http.enabled=false
#dbms.connector.http.listen_address=:7474
# HTTPS Connector. There can be zero or one HTTPS connectors.
dbms.connector.https.enabled=true
dbms.connector.https.listen_address=0.0.0.0:7473
Did I forgot something here ?
Thank you for your help