From be90cdb2229ef28384375b77f37c445201c1d5b7 Mon Sep 17 00:00:00 2001 From: Ted Date: Tue, 8 Feb 2022 14:28:58 +1100 Subject: [PATCH] Update linux.rst Added 'sudo' to the beginning of a few commands where it seemed to have been implied, which was inconsistent with other examples where it was already present. E.g. the apt-get commands and the systemctl commands. --- docs/installation/linux.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/installation/linux.rst b/docs/installation/linux.rst index abb370154..9310c99d2 100644 --- a/docs/installation/linux.rst +++ b/docs/installation/linux.rst @@ -34,7 +34,7 @@ Install neo4j :: - apt-get install apt-transport-https + sudo apt-get install apt-transport-https 2. Install neo4j community edition using apt: @@ -46,7 +46,7 @@ Install neo4j :: - systemctl stop neo4j + sudo systemctl stop neo4j 4. Start neo4j as a console application and verify it starts up without errors: @@ -76,7 +76,7 @@ Or use systemctl to start neo4j: :: - systemctl start neo4j + sudo systemctl start neo4j 6. Open a web browser and navigate to https://localhost:7474/. You should see the neo4j web console.