1
0
mirror of https://github.com/bigchaindb/bigchaindb.git synced 2024-06-23 01:36:42 +02:00

Renamed installing-server.md to setup-run-node.md

This commit is contained in:
troymc 2016-06-13 11:39:51 +02:00
parent 06b261ebb4
commit 0ce79f4b47
7 changed files with 9 additions and 9 deletions

View File

@ -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)

View File

@ -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

View File

@ -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

View File

@ -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
```

View File

@ -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

View File

@ -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:

View File

@ -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