Cosmetics

This commit is contained in:
Piotr Włodarek 2018-10-19 15:51:32 +02:00
parent d3aab53c61
commit fd32d2a0a5
2 changed files with 25 additions and 4 deletions

View file

@ -171,3 +171,20 @@ These options should no longer be necessary. They are still present in `monerod`
| `--zmq-rpc-bind-ip` | IP for ZMQ RPC server to listen on. By default `127.0.0.1`. This is not yet widely used as ZMQ interface currently does not provide meaningful advantage over classic JSON-RPC interface. Unfortunately, currently there is no way to disable the ZMQ server. | `--zmq-rpc-bind-ip` | IP for ZMQ RPC server to listen on. By default `127.0.0.1`. This is not yet widely used as ZMQ interface currently does not provide meaningful advantage over classic JSON-RPC interface. Unfortunately, currently there is no way to disable the ZMQ server.
| `--zmq-rpc-bind-port` | Port for ZMQ RPC server to listen on. By default `18082` for mainnet, `38082` for stagenet, and `28082` for testnet. | `--zmq-rpc-bind-port` | Port for ZMQ RPC server to listen on. By default `18082` for mainnet, `38082` for stagenet, and `28082` for testnet.
| `--db-type` | Specify database type. The default and only available: `lmdb`. | `--db-type` | Specify database type. The default and only available: `lmdb`.
## Commands
!!! warning
Commands reference is a work in progress.
Commands give access to specific services provided by the daemon. Commands are executed against the running daemon. Their names follow the command_name pattern.
First, run the daemon:
`./monerod --stagenet`
Then, using a second terminal run the command:
`./monerod --stagenet sync_info`
You can also type commands directly in the console of the running `monerod` (if not detached).

View file

@ -10,17 +10,21 @@ On top of that, Monero nodes interact with each other in a peer-to-peer network.
## Installation directory overview ## Installation directory overview
[Download Monero](https://getmonero.org/downloads). Once unpacked you will see several executable files. [Download Monero](https://getmonero.org/downloads).
Once unpacked you will see several executable files. You will also find a nice PDF guide for the GUI wallet.
Monero project nicely decouples network node logic from wallet logic. Monero project nicely decouples network node logic from wallet logic.
Wallet logic is offered through three independent user interfaces - the GUI, the CLI, and the HTTP API. Wallet logic is offered through three independent user interfaces - the GUI, the CLI, and the HTTP API.
``` ```
# ---- PDF guide to Monero GUI ---- # cd monero-gui-v0.13.0.3
# ---- guide to Monero GUI ----
monero-GUI-guide.pdf monero-GUI-guide.pdf
# ---- Executable files ----------- # ---- executable files -----------
monerod monerod
@ -40,7 +44,7 @@ monero-blockchain-depth
start-gui.sh start-gui.sh
# ---- Directories ---------------- # ---- directories ----------------
libs libs
plugins plugins