Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Neo4J webadmin with password protection

Tags:

neo4j

Is it possible to have password protection on localhost:7474/webadmin? It is better if we put a htaccess and htpasswd files in the folder but I cannot find the folder webadmin lies. I believe if I find the path, I can protect it with password. Anyone who knows the folder path? The documentation does not say about it.

additional information: I'm using Ubuntu 12.04 and neo4j version is 1.8.

like image 905
gzg Avatar asked Dec 04 '12 15:12

gzg


People also ask

How do I enable authentication on neo4j?

Authentication and authorization are enabled by default in Neo4j (refer to Operations Manual → Authentication and authorization). With authentication and authorization enabled, requests to the HTTP API must be authorized using the username and password of a valid user.

What is the default password for neo4j?

The default username for a neo4j database is neo4j. The DB Password is the password for the neo4j database. The default password for a neo4j database is neo4j.

How do I get my neo4j password?

Recover a lost password You can use a client such as Cypher Shell or the Neo4j Browser to connect to the system database and set a new password for the admin user. In a cluster deployment, you should complete the steps only on one of the Core servers. Complete the steps in Disable authentication as per your deployment.

How do I change my neo4j username and password?

start the Neo4j server. - Open the url(http://127.0.0.1:7474/browser/) in browser. - click on Database icon from left side menu. - Find "Connected as" -> :server user add , click on and add your desire user name and password in right windows.


1 Answers

You can either use an apache proxy in front of Neo4j, see the manual

or look into something like the authentication-extension which supplies basic-auth.

like image 102
Michael Hunger Avatar answered Oct 30 '22 23:10

Michael Hunger