aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2018-03-05 17:39:56 +0100
committerWladimir J. van der Laan <[email protected]>2018-03-05 17:40:08 +0100
commit71f56da384afbf62b5936b077d9861c51a511490 (patch)
treece2e995f0c10d3c3356dc4031c31fee5f70600d5
parentMerge #12434: [doc] dev-notes: Members should be initialized (diff)
parentdocs: clarified systemd installation instructions in init.md for Ubuntu users. (diff)
downloaddiscoin-71f56da384afbf62b5936b077d9861c51a511490.tar.xz
discoin-71f56da384afbf62b5936b077d9861c51a511490.zip
Merge #12452: docs: clarified systemd installation instructions in init.md for Ubuntu users.
4d14d06fc docs: clarified systemd installation instructions in init.md for Ubuntu users. (DaveFromBinary) Pull request description: Added a note to init.md to clarify the .service copy path for Ubuntu because it differs from the described copy path. Also noted which version of Ubuntu switched to systemd for the default system init to clarify when the systemd installation steps should be used instead of the upstart installation steps for Ubuntu users. Tree-SHA512: 1ac6143a177d0f3782ff641029d71eb1f3b3be0c1482e266154d3ca093251b58a10a5f037d1cc82dbfaeae058df2bb8e904833ccb88b032f1a59a151724f95e2
-rw-r--r--doc/init.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/init.md b/doc/init.md
index 75f9013f2..ffd13ae1f 100644
--- a/doc/init.md
+++ b/doc/init.md
@@ -84,6 +84,8 @@ Installing this .service file consists of just copying it to
To test, run `systemctl start bitcoind` and to enable for system startup run
`systemctl enable bitcoind`
+NOTE: When installing for systemd in Debian/Ubuntu the .service file needs to be copied to the /lib/systemd/system directory instead.
+
### OpenRC
Rename bitcoind.openrc to bitcoind and drop it in /etc/init.d. Double
@@ -93,6 +95,8 @@ check ownership and permissions and make it executable. Test it with
### Upstart (for Debian/Ubuntu based distributions)
+Upstart is the default init system for Debian/Ubuntu versions older than 15.04. If you are using version 15.04 or newer and haven't manually configured upstart you should follow the systemd instructions instead.
+
Drop bitcoind.conf in /etc/init. Test by running `service bitcoind start`
it will automatically start on reboot.