in Education by
I have neo4j-server installed on remote linux server. This server using nginx and has virtual host. Here is config: server { listen 80; listen [::]:80; server_name neo.mydomain.in.ua; access_log /var/log/nginx/neo-browser-access.log; error_log /var/log/nginx/neo-browser-error.log; location / { proxy_pass http://localhost:7474; proxy_set_header Host $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Real-IP $remote_addr; } } I use it because i cant use port 7474, only 80 or 8080. http://neo.mydomain.in.ua/browser/, works good, and i see neo4j-browser. But i cant connect to DB using any client (even using console client). I got this: >> neo4j-client -u neo4j neo.mydomain.in.ua 80 OpenSSL error: 336031996:SSL routines:SSL23_GET_SERVER_HELLO:unknown protocol error: Unexpected error But when i tried to use postman for it, i got >> http://neo.mydomain.in.ua/db/data/ { "errors": [ { "code": "Neo.ClientError.Security.Unauthorized", "message": "No authentication header supplied." } ] } This means that i have an access to DB, but not through neo4j-client. I tried to login using basic auth, and it`s works. What is wrong? JavaScript questions and answers, JavaScript questions pdf, JavaScript question bank, JavaScript questions and answers pdf, mcq on JavaScript pdf, JavaScript questions and solutions, JavaScript mcq Test , Interview JavaScript questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)

1 Answer

0 votes
by
Problem solved. I just uncomment dbms.connectors.default_listen_address=0.0.0.0 in my neo4j.conf. But strange that i can login to neo4j using postman even this option is disabled. \(0_0)/

Related questions

0 votes
    we're have a client that needs to get interactive messages from a server, from clients that are distributed ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Mar 19, 2022 in Education by JackTerrance
0 votes
    What happens when Intercept is off? A.) The request will hit the server B.) The request will hit the proxy C.) Hit the proxy...
asked Apr 29, 2021 in Technology by JackTerrance
0 votes
    I am trying to monitor GC information using VisualVM from local laptop and connecting to Neo4j (enterprise) ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 22, 2022 in Education by JackTerrance
0 votes
    I'm trying to incorporate Google Maps into my Access form so that for every record a map of its ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jan 13, 2022 in Education by JackTerrance
0 votes
    If you connect to a database or a file in a program you should always __________ it when you’re finished using it. Select the correct answer from above options...
asked Dec 23, 2021 in Education by JackTerrance
0 votes
    I have Django application deployed on Kubernetes Engine following this tutorial - https://cloud.google.com/python ... for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 26, 2022 in Education by JackTerrance
0 votes
    I am building a plugin for a web application in java which is running on Tomcat and behind a apache ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 18, 2022 in Education by JackTerrance
0 votes
    I am building a plugin for a web application in java which is running on Tomcat and behind a apache ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 17, 2022 in Education by JackTerrance
0 votes
    I've got a Node.js powered site that I'm running on Amazon Elastic Beanstalk. My Node.js app listens on port ... to my site via HTTPS. Select the correct answer from above options...
asked Feb 8, 2022 in Education by JackTerrance
0 votes
    To secure your system from such type of attack, you have to hide your system behind any VPN or proxy server. ( ... Security questions and answers pdf, mcq on Cyber Security pdf,...
asked Nov 4, 2021 in Education by JackTerrance
0 votes
    how to proxy enable in server nodejs?...
asked Dec 10, 2020 in Technology by JackTerrance
0 votes
    I'm trying to publish my data to Amazon web services using BG96 (NB-IoT device that use AT ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 1, 2022 in Education by JackTerrance
0 votes
    I'm currently developing a web application using asp.net c#. I got a server where I today was ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 12, 2022 in Education by JackTerrance
0 votes
    I want to connect to db on EC2 from my local machine, I am not able to do and have tried everything- I ... to connect to the database Select the correct answer from above options...
asked Feb 8, 2022 in Education by JackTerrance
0 votes
    I'm trying to generate an 837P EDI file using EDIDev. I was able to generate 4 other 837P files ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 19, 2022 in Education by JackTerrance
...