With these above mentioned configuration and bypassing proxy, I can login using neo4j/neo4j , however cannot create database. Possible issue : error in establishing bolt connection
Steps taken: Disabled HTTP and enable HTTPS.
https.listen_address : 0.0.0.0:7473.
Still not working.
My question :
Is https compulsory for running neo4j browser and enable bolt connectivity? Can it be done on http too? If so how?
In answer to your query, neo4j runs it's HTTP browser on 7474 (and secure HTTPS on 7473)
To run secure I believe you'll need to create/install and then setup neo4j to use a certificate, right?
If you have that setup, can you share how you are starting it, and the error message you see?
Created certificates using OpenSSL. Here are he cofigurations
dbms.default_listen_address=0.0.0.0
dbms.default_advertised_address= à Please note that there is no connectivity issue with private IP as I can open the browser and login with neo4j/neo4j credentials.
dbms.connector.bolt.enabled=true
dbms.connector.bolt.tls_level=OPTIONAL
dbms.connector.bolt.listen_address=0.0.0.0:7687
#dbms.connector.http.enabled=true
#dbms.connector.http.listen_address=0.0.0.0:7474
HTTPS Connector. There can be zero or one HTTPS connectors.