Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions neo4j/content.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# What is Neo4j?

Neo4j is the world's leading graph database, with native graph storage and processing. You can learn more [here](http://neo4j.com/developer).
Neo4j is the world's leading graph database, with native graph storage and processing. You can learn more [here](http://neo4j.com).

%%LOGO%%

Expand All @@ -15,11 +15,11 @@ docker run \
%%IMAGE%%
```

which allows you to access neo4j through your browser at [http://localhost:7474](http://localhost:7474).
This binds two ports (`7474` and `7687`) for HTTP and Bolt access to the Neo4j API. A volume is bound to `/data` to allow the database to be persisted outside the container. Once running, you can use the [Neo4j Aura console](https://console.neo4j.io/ce) which includes graph tools for visualizations, data exploration, and monitoring for free. No subscription is required. Simply create a self-managed instance and specify `bolt://localhost:7687` or `http://localhost:7474` in the "Add Deployment" UI.

This binds two ports (`7474` and `7687`) for HTTP and Bolt access to the Neo4j API. A volume is bound to `/data` to allow the database to be persisted outside the container.
Alternatively, you can use the Neo4j Browser, a web-based user interface for interacting with Neo4j that is included with the Neo4j installation. To access the Neo4j Browser, open a web browser and navigate to http://localhost:7474.

By default, this requires you to login with `neo4j/neo4j` and change the password. You can, for development purposes, disable authentication by passing `--env=NEO4J_AUTH=none` to docker run.
Your default credentials are neo4j/neo4j. You will be prompted to change the password upon first login. For development purposes, you can disable authentication by passing `--env=NEO4J_AUTH=none` to docker run.

# Documentation

Expand Down
4 changes: 3 additions & 1 deletion neo4j/get-help.md
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
[Neo4j Community Forums](https://community.neo4j.com)
- [Neo4j Community Forums](https://community.neo4j.com)
- [Neo4j Docker Documentation](https://neo4j.com/docs/operations-manual/current/docker/)
- [Discord](https://discord.gg/neo4j)
2 changes: 1 addition & 1 deletion neo4j/maintainer.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
[Neo4j](%%GITHUB-REPO%%)
- [Neo4j](https://www.neo4j.com)
Loading