Install FirmaChain(임시)
Specification
Hardware requirements
Disk space depends on the pruning strategy of your choice.
There are four strategies for pruning state. These strategies apply only to state and do not apply to block storage. To set pruning, adjust the pruning
parameter in the ~/.firmachain/config/app.toml
file. The following pruning state settings are available:
everything
: Prune all saved states other than the current state.nothing
: Save all states and delete nothing.default
: Save the last 100 states and the state of every 10,000th block.custom
: Specify pruning settings with thepruning-keep-recent
,pruning-keep-every
, andpruning-interval
parameters.
Pruning strategy | Minimum disk space | Recommended disk space |
---|---|---|
everything | 20 GB | 40 GB |
default | 80 GB | 120 GB |
nothing | 120 GB | > 240 GB |
By default, every node is in default
mode which is the recommended setting for most environments.
Apart from disk space, the following requirements should be met.
Minimum CPU cores | Recommended CPU cores |
---|---|
2 | 4 |
Minimum RAM | Recommended RAM |
---|---|
4 GB | 8 GB |
Service Ports
Type | Port number | Description |
---|---|---|
SSH | 22 | for connect ssh |
API | 1317 | http api |
P2P | 26656 | for peer communication |
Installation
Ways 1. Install FirmaChain from pre-built binary by curl
You can easily download a pre-built binary for your operating system using the command below.
download binary
check version & sha1sum
Ways 2. Download from Github Release page
You can download a prebuilt binary from the link below. https://github.com/FirmaChain/firmachain/releases/tag/v0.3.1
Select, download and unzip a binary that suits your OS. Please confirm whether you’ve downloaded the correct version, using the method provided in Ways 1.
Last updated