Solved How to let config for neo4j take effect?

neo4j daemon seems working
Code:
# pkg install neo4j

...

# neo4j start

Started neo4j (pid:1495). It is available at [URL]http://localhost:7474[/URL]

...

But needs IP in lan instead of localhost for a web browser.
Add /usr/local/neo4j/conf/neo4j.conf, content as below
Code:
# cat /usr/local/neo4j/conf/neo4j.conf
server.http.listen_address=192.168.1.200:7777

After # neo4j restart, the config doesn't take effect.

How to let the config take effect?

Thanks
 
I had one running (for test/play) but it seems it's broken now. There's also an issue with %%DBDIR%% in the rc(8) file, port should have translated that. I'm also getting the same JAVA_HOME error trying to start it.

I suggest opening a PR as there appears to be a bunch of issues with the port now.
 
I had one running (for test/play) but it seems it's broken now. There's also an issue with %%DBDIR%% in the rc(8) file, port should have translated that. I'm also getting the same JAVA_HOME error trying to start it.

I suggest opening a PR as there appears to be a bunch of issues with the port now.
I'm not familiar with freebsd ports.
I'm going to use Linux for neo4j, mainly for continiuous upgrades.

Thanks
 
Back
Top