Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/neo4j/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
启用远程访问neo4j 4.2社区版_Neo4j_Remote Access - Fatal编程技术网

启用远程访问neo4j 4.2社区版

启用远程访问neo4j 4.2社区版,neo4j,remote-access,Neo4j,Remote Access,由于在家工作,我需要一种监视远程neo4j实例的方法—最好是通过web浏览器实例 在过去(如在3.0中),它可以通过以下方式轻松实现 不幸的是,在4.2版中,情况已不复存在-该行不再存在,并尝试以相同的方式工作,即改变: # HTTP Connector. There can be zero or one HTTP connectors. dbms.connector.http.enabled=true #dbms.connector.http.listen_address=:7474 #dbm

由于在家工作,我需要一种监视远程neo4j实例的方法—最好是通过web浏览器实例

在过去(如在3.0中),它可以通过以下方式轻松实现

不幸的是,在4.2版中,情况已不复存在-该行不再存在,并尝试以相同的方式工作,即改变:

# HTTP Connector. There can be zero or one HTTP connectors.
dbms.connector.http.enabled=true
#dbms.connector.http.listen_address=:7474
#dbms.connector.http.advertised_address=:7474

# HTTPS Connector. There can be zero or one HTTPS connectors.
dbms.connector.https.enabled=false
#dbms.connector.https.listen_address=:7473
#dbms.connector.https.advertised_address=:7473


未成功-无法访问:7474和:7473。请尝试取消对以下配置的注释:

# With default configuration Neo4j only accepts local connections.
# To accept non-local connections, uncomment this line:
#dbms.default_listen_address=0.0.0.0

尝试取消注释以下配置:

# With default configuration Neo4j only accepts local connections.
# To accept non-local connections, uncomment this line:
#dbms.default_listen_address=0.0.0.0

谢谢,成功了!我一定是在扫描配置文件时没有看到这行代码。谢谢,这很有效!我一定在扫描配置文件时没有看到这行代码。