我们需要设置哪些附加属性来访问从本地实例在服务器上运行的neo4j Web UI。
答案 0 :(得分:1)
编辑$hash = @{
Serv1 = @(
'User1',
'User3',
'User7'
)
Serv2 = @(
'User2',
'User1'
)
}
# add a new user to an existing key
$hash.Serv2 += 'User8'
# add a new key
$hash.Serv3 = @(
'User3',
'User2'
)
以允许网络服务器接受来自localhost以外的IP的连接:
conf/neo4j-server.properties
然后,您可以# http port (for all data, administrative, and UI access)
org.neo4j.server.webserver.port=7474
# Let the webserver only listen on the specified IP. Default is localhost (only
# accept local connections). Uncomment to allow any connection.
#org.neo4j.server.webserver.address=0.0.0.0