-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Seeking help in getting the browser interface working #1
Comments
@Analect did you get this working? |
I think I just opted for the "don't use bolt" in the settings to get it working. |
Also having the same problem and hoping there's a fix someone is familiar with |
I am also facing the same issue. Can anybody help to fix the same and finally access using (value: "bolt://@192.168.1.3:7687") this url format |
@Analect can you try port forwarding the Bolt port as well?
That should then allow the Neo4j browser to connect to the Bolt port on the Kubernetes pod |
Thanks @mneedham ... haven't really touched the kubernetes solution for neo4j in a long time. Is this helm chart now considered the best approach. Never really found a good way of populating/seeding a pre-running neo4j in kubernetes ... all approaches required a stopped instance, which was hard to reconcile in kubernetes ... don't suppose there's a better solution to that now? Thanks. |
@mneedham
Thanks for your efforts in getting this running. I wanted to test it out, but I've hit a few obstacles.
I think your README is slightly out-of-sync with your files in this repo, but I was able to get things going by running
kubectl create -f neo4j_env.yml
, which combines the core cluster statefulset and a service together.As per these logs from one of the core pods, the cluster seems to form fine.
However, in looking to interface with the installation, I ran
kubectl port-forward neo4j-core-0 7474:7474
, which forwards port 7474 from the cluster to my local browser. While this appears to partly work, it's not allowing me to enter the default neo4j password, so that I can set my own.In the past, I've been able to get around this problem by adding an end-point for bolt. I modified the headless service as follows:
... hoping that that would allow me to feed either
0.0.0.0:7687
orneo4j-core-0.neo4j.default.svc.cluster.local:7687
into the bolt field in settings, but neither work. Can you suggest what I might be able to do to get this working? Is there another form/way of entering the bolt end-point? I see you havevalue: "bolt://@192.168.1.3:7687"
at the bottom of the README, but I'm not sure in what context.In terms of getting pre-existing data into this cluster, is there a recommended approach using
kubectl exec
to stop a neo4j process temporarily on one node and thenkubectl cp
to copy in a backup/zipped folder of a database, that can be used to seed the other nodes?The text was updated successfully, but these errors were encountered: