28 lines
833 B
Markdown
28 lines
833 B
Markdown
To install [[neo4j]] on a [[Debian]] server, you must first add the neo4j repository:
|
|
|
|
```
|
|
$ wget -O - https://debian.neo4j.com/neotechnology.gpg.key | sudo apt-key add -
|
|
echo 'deb https://debian.neo4j.com stable latest' | sudo tee /etc/apt/sources.list.d/neo4j.list
|
|
sudo apt-get update
|
|
```
|
|
|
|
You can then install the latest version:
|
|
|
|
```
|
|
$ sudo apt-get install neo4j
|
|
```
|
|
|
|
[source](https://debian.neo4j.com/)
|
|
|
|
By default, the username will be `neo4j` with `neo4j` I you wish to use the neo4j browser (note that this will need correct port forwarding), you will be asked to change the password upon first connection. If you prefer to use neo4j via a third party application, you can set the initial password via the command line
|
|
|
|
```
|
|
$ sudo neo4j-admin dbms set-initial-password <password>
|
|
```
|
|
|
|
```
|
|
$ sudo apt-get install neo4j
|
|
```
|
|
|
|
|