Reputation: 1788
I tried to set up username and password for Neo4j instance running on linux machine. I couldn't find any documentation.Please let me know how to do this.
Upvotes: 6
Views: 27767
Reputation: 978
After going to localhost:7474 in your browser, go to the :server connect
prompt and enter the default login info:
user: neo4j
password: neo4j
it should then ask you to change your password. You're now connected.
Upvotes: 8
Reputation: 1249
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.
Open the url http://localhost:7474/db/data/ this will prompt the user name password authentication windows. enter the added user/password created above and click on OK.
Upvotes: 2
Reputation: 1463
Neo4j doesn't have the support for using a username and password for accessing the database (as you would do with MySQL for instance). So you have to rely on other security mechanisms, like for instance the security groups in AWS, or a firewall. You may want to check the documentation and the other stackoverflow questions on this matter:
Upvotes: -2
Reputation: 41676
The username used on install as a service by default is neo4j
, group is also neo4j
.
I think you can configure the used user in conf/neo4j-wrapper.conf
# Name of the service
wrapper.name=neo4j
# User account to be used for linux installs. Will default to current
# user if not set.
wrapper.user=
You change the password for an user on Linux with passwd
, see man passwd
for details.
Upvotes: 3