From 5bf05508387359124498a55ab53857602602f29c Mon Sep 17 00:00:00 2001 From: Brendan Telzrow Date: Sun, 10 Jan 2016 13:03:22 -0600 Subject: [PATCH 1/6] add vps_run_node knowledgebase guide --- .gitignore | 2 +- knowledge-base/user-guides/vps_run_node.md | 54 +++++++++++++++++++++- 2 files changed, 54 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index d5cc6dce..31fde2d2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ ietemplates/ - +.idea/ diff --git a/knowledge-base/user-guides/vps_run_node.md b/knowledge-base/user-guides/vps_run_node.md index 15b48822..ce84b5b5 100644 --- a/knowledge-base/user-guides/vps_run_node.md +++ b/knowledge-base/user-guides/vps_run_node.md @@ -1 +1,53 @@ -in progress +--- +layout: static_page +title: "Monero tools" +title-pre-kick: "Monero tools " +title-kick: "for the network " +title-post-kick: "" +kick-class: "purple-kicks" +icon: "icon_userguides" +attribution: "" +--- +# bitmonerod + +`bitmonerod` is the daemon software that ships with the Monero tree. It is a console program, and manages the blockchain. While a bitcoin wallet manages both an account and the blockchain, Monero separates these: `bitmonerod` handles the blockchain, and `simplewallet` handles the account. + +This guide assumes you have already set up your VPS account and are using SSH to tunnel into the server console. + +## Linux, 64-bit (Ubuntu 14.04) + +### Make sure that port 18080 is open +`bitmonerod` uses this port to communicate with other nodes on the Monero network. + +Example if using `ufw`: `sudo ufw allow 18080` +Example if using `iptables`: `sudo iptables -A INPUT -p tcp --dport 18080 -j ACCEPT` + +### Download the current Monero Core binaries + + wget https://downloads.getmonero.org/linux64 + +### Make a directory and extract the files. + + mkdir bitmonero + tar -xjvf linux64 -C bitmonero + +### Launch the daemon + + cd bitmonero + ./bitmonerod + +### Options: + +Show list of all options and settings: + + ./bitmonerod --help + +Launch the daemon as a background process: + + ./bitmonerod --detach + +Monitor the output of `bitmonerod` if running as daemon: + + tail -f .bitmonero/bitmonero.log + + \ No newline at end of file From f3b296cc4170e113629a12af863b9ff57850b0e3 Mon Sep 17 00:00:00 2001 From: Brendan Telzrow Date: Sun, 10 Jan 2016 13:07:03 -0600 Subject: [PATCH 2/6] fix path to bitmonero.log --- knowledge-base/user-guides/vps_run_node.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/knowledge-base/user-guides/vps_run_node.md b/knowledge-base/user-guides/vps_run_node.md index ce84b5b5..613fe0da 100644 --- a/knowledge-base/user-guides/vps_run_node.md +++ b/knowledge-base/user-guides/vps_run_node.md @@ -48,6 +48,6 @@ Launch the daemon as a background process: Monitor the output of `bitmonerod` if running as daemon: - tail -f .bitmonero/bitmonero.log + tail -f ~/.bitmonero/bitmonero.log \ No newline at end of file From b9c6e8f6115c3cca120fbbe79cd548ce7408ec44 Mon Sep 17 00:00:00 2001 From: Brendan Telzrow Date: Sun, 10 Jan 2016 13:45:36 -0600 Subject: [PATCH 3/6] updated simplewallet knowledgebase: formatting and updates for 0.9 use --- knowledge-base/user-guides/simplewallet.md | 59 +++++++++++----------- 1 file changed, 30 insertions(+), 29 deletions(-) diff --git a/knowledge-base/user-guides/simplewallet.md b/knowledge-base/user-guides/simplewallet.md index d0bee8e6..32be4a11 100644 --- a/knowledge-base/user-guides/simplewallet.md +++ b/knowledge-base/user-guides/simplewallet.md @@ -10,26 +10,25 @@ attribution: "