当前位置:网站首页>Neo4j error when accessing the browser: serviceunavailable: websocket connection failure Due to security constraints in your

Neo4j error when accessing the browser: serviceunavailable: websocket connection failure Due to security constraints in your

2022-06-09 09:28:00 Great for the rest of my life

In the use of neo4j The default is local access , If the database is not modified after remote access is enabled ip Will report this mistake .

Solution :

modify neo4j.conf, Find this line of code :

dbms.connector.bolt.listen_address=:7687

Let go if you comment , And change to the following code

dbms.connector.bolt.listen_address=0.0.0.0:7687

neo4j 4.4.7 Turn on Remote Access :

modify neo4j.conf, Find the following configuration :

​dbms.connector.http.listen_address=:7474
dbms.connector.http.advertised_address=:7474

Remove the comment and change it to the following

​dbms.connector.http.listen_address=0.0.0.0:7474
dbms.connector.http.advertised_address=0.0.0.0:7474

原网站

版权声明
本文为[Great for the rest of my life]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/160/202206090851581666.html