From 0ce79f4b4753a11817a2cfdc849b1c89419c2569 Mon Sep 17 00:00:00 2001 From: troymc Date: Mon, 13 Jun 2016 11:39:51 +0200 Subject: [PATCH] Renamed installing-server.md to setup-run-node.md --- README.md | 4 ++-- docs/source/appendices/local-rethinkdb-cluster.md | 2 +- docs/source/nodes/index.rst | 2 +- docs/source/nodes/monitoring.md | 2 +- docs/source/nodes/python-server-api-examples.md | 2 +- docs/source/nodes/running-unit-tests.md | 2 +- docs/source/nodes/{installing-server.md => setup-run-node.md} | 4 ++-- 7 files changed, 9 insertions(+), 9 deletions(-) rename docs/source/nodes/{installing-server.md => setup-run-node.md} (97%) diff --git a/README.md b/README.md index 979239f7..56286ad9 100644 --- a/README.md +++ b/README.md @@ -13,8 +13,8 @@ A scalable blockchain database. [The whitepaper](https://www.bigchaindb.com/whit ## Quick Start -### [Install and Run BigchainDB Server](http://bigchaindb.readthedocs.io/en/latest/nodes/installing-server.html) -### [Run BigchainDB with Docker](http://bigchaindb.readthedocs.io/en/latest/installing-server.html#run-bigchaindb-with-docker) +### [Set Up and Run a BigchainDB Node](http://bigchaindb.readthedocs.io/en/latest/nodes/setup-run-node.html) +### [Run BigchainDB with Docker](http://bigchaindb.readthedocs.io/en/latest/setup-run-node.html#run-bigchaindb-with-docker) ### [The Python Server API by Example](http://bigchaindb.readthedocs.io/en/latest/nodes/python-server-api-examples.html) ### [The Python Driver API by Example](http://bigchaindb.readthedocs.io/en/latest/drivers-clients/python-driver-api-examples.html) diff --git a/docs/source/appendices/local-rethinkdb-cluster.md b/docs/source/appendices/local-rethinkdb-cluster.md index 518fd261..948e3f40 100644 --- a/docs/source/appendices/local-rethinkdb-cluster.md +++ b/docs/source/appendices/local-rethinkdb-cluster.md @@ -4,7 +4,7 @@ This section explains one way to deploy a multi-node RethinkDB cluster on one ma ## Launching More RethinkDB Nodes -Assuming you've already [installed RethinkDB](../nodes/installing-server.html#install-and-run-rethinkdb-server) and have one RethinkDB node running, here's how you can launch two more nodes on the same machine. First, prepare two additional nodes. Note that the user who starts RethinkDB must have write access to the created directories: +Assuming you've already [installed RethinkDB](../nodes/setup-run-node.html#install-and-run-rethinkdb-server) and have one RethinkDB node running, here's how you can launch two more nodes on the same machine. First, prepare two additional nodes. Note that the user who starts RethinkDB must have write access to the created directories: mkdir -p /path/to/node2 mkdir -p /path/to/node3 diff --git a/docs/source/nodes/index.rst b/docs/source/nodes/index.rst index abfd966a..20fa4e33 100644 --- a/docs/source/nodes/index.rst +++ b/docs/source/nodes/index.rst @@ -20,7 +20,7 @@ Confusingly, we sometimes call a federation's cluster its "federation." You can :maxdepth: 1 node-requirements - installing-server + setup-run-node running-unit-tests configuration bigchaindb-cli diff --git a/docs/source/nodes/monitoring.md b/docs/source/nodes/monitoring.md index 1da58e4d..626230fe 100644 --- a/docs/source/nodes/monitoring.md +++ b/docs/source/nodes/monitoring.md @@ -28,7 +28,7 @@ You can view the Grafana dashboard in your web browser at: (You may want to replace `localhost` with another hostname in that URL, e.g. the hostname of a remote monitoring server.) -The login and password are `admin` by default. If BigchainDB is running and processing transactions, you should see analytics—if not, [start BigchainDB](installing-server.html#run-bigchaindb) and load some test transactions: +The login and password are `admin` by default. If BigchainDB is running and processing transactions, you should see analytics—if not, [start BigchainDB](setup-run-node.html#run-bigchaindb) and load some test transactions: ```text $ bigchaindb load ``` diff --git a/docs/source/nodes/python-server-api-examples.md b/docs/source/nodes/python-server-api-examples.md index 8aa97ee1..8b4ccd80 100644 --- a/docs/source/nodes/python-server-api-examples.md +++ b/docs/source/nodes/python-server-api-examples.md @@ -8,7 +8,7 @@ We create a digital asset, sign it, write it to a BigchainDB Server instance, re ## Getting Started -First, make sure you have RethinkDB and BigchainDB _installed and running_, i.e. you [installed them](installing-server.html) and you ran: +First, make sure you have RethinkDB and BigchainDB _installed and running_, i.e. you [installed them](setup-run-node.html) and you ran: ```text $ rethinkdb $ bigchaindb configure diff --git a/docs/source/nodes/running-unit-tests.md b/docs/source/nodes/running-unit-tests.md index f8fc4809..17c75256 100644 --- a/docs/source/nodes/running-unit-tests.md +++ b/docs/source/nodes/running-unit-tests.md @@ -2,7 +2,7 @@ Once you've installed BigchainDB Server, you may want to run all the unit tests. This section explains how. -First of all, if you installed BigchainDB Server using `pip` (i.e. by getting the package from PyPI), then you didn't install the tests. **Before you can run all the unit tests, you must [install BigchainDB from source](installing-server.html#how-to-install-bigchaindb-from-source).** +First of all, if you installed BigchainDB Server using `pip` (i.e. by getting the package from PyPI), then you didn't install the tests. **Before you can run all the unit tests, you must [install BigchainDB from source](setup-run-node.html#how-to-install-bigchaindb-from-source).** To run all the unit tests, first make sure you have RethinkDB running: diff --git a/docs/source/nodes/installing-server.md b/docs/source/nodes/setup-run-node.md similarity index 97% rename from docs/source/nodes/installing-server.md rename to docs/source/nodes/setup-run-node.md index 6a561d6e..bcc9f135 100644 --- a/docs/source/nodes/installing-server.md +++ b/docs/source/nodes/setup-run-node.md @@ -2,9 +2,9 @@ First make sure your server(s) meet [the requirements for a BigchainDB node](node-requirements.html). -Mac OS X users may get the best results [running BigchainDB Server with Docker](installing-server.html#run-bigchaindb-with-docker). +Mac OS X users may get the best results [running BigchainDB Server with Docker](setup-run-node.html#run-bigchaindb-with-docker). -We currently don't test BigchainDB on Windows. If you run into problems on Windows, then you may want to try [using Vagrant](installing-server.html#how-to-install-bigchaindb-on-a-vm-with-vagrant). +We currently don't test BigchainDB on Windows. If you run into problems on Windows, then you may want to try [using Vagrant](setup-run-node.html#how-to-install-bigchaindb-on-a-vm-with-vagrant). ## Install and Run RethinkDB Server