mirror of
https://github.com/monero-project/monero-docs.git
synced 2024-12-22 19:49:22 +00:00
Cosmetics
This commit is contained in:
parent
d3aab53c61
commit
fd32d2a0a5
2 changed files with 25 additions and 4 deletions
|
@ -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-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`.
|
||||
|
||||
## 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).
|
||||
|
|
|
@ -10,17 +10,21 @@ On top of that, Monero nodes interact with each other in a peer-to-peer network.
|
|||
|
||||
## 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.
|
||||
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
|
||||
|
||||
# ---- Executable files -----------
|
||||
# ---- executable files -----------
|
||||
|
||||
monerod
|
||||
|
||||
|
@ -40,7 +44,7 @@ monero-blockchain-depth
|
|||
|
||||
start-gui.sh
|
||||
|
||||
# ---- Directories ----------------
|
||||
# ---- directories ----------------
|
||||
|
||||
libs
|
||||
plugins
|
||||
|
|
Loading…
Reference in a new issue