Install Neo4J As Systemd Service

Neo4j
graph database
systemd service
Linux
installation guide
configuration file
tutorial
This instruction offers a configuration file to simplify the installation and management of Neo4j, a graph database, as a systemd service on Linux-based systems.
Published

January 5, 2023


save this under /lib/systemd/system/neo4j.service

[Unit]
Description=Neo4j Graph Database
Documentation=http://docs.neo4j.org
[Service]
Type=simple
ExecStart=/usr/bin/neo4j console
ExecStop=/usr/bin/neo4j stop
Restart=on-failure
[Install]
WantedBy=multi-user.target