2022-10-27 13:35:06 +00:00
|
|
|
---
|
|
|
|
sidebar_position: 2
|
|
|
|
---
|
|
|
|
# Setting Up Canined
|
|
|
|
|
|
|
|
## Canined Init
|
|
|
|
|
|
|
|
We need to set up canine to live inside the mount point we just created as that is where all the files are stored.
|
|
|
|
|
|
|
|
:::info
|
|
|
|
|
|
|
|
The chain must be live on main-net to complete the following actions
|
|
|
|
|
|
|
|
:::
|
|
|
|
|
2022-10-29 00:22:23 +00:00
|
|
|
|
2022-12-02 16:11:35 +00:00
|
|
|
```sh
|
|
|
|
export PHOME={path-to-pool-from-before}
|
2022-10-29 00:22:23 +00:00
|
|
|
|
2022-12-02 16:11:35 +00:00
|
|
|
jprovd client gen-key --home=$PHOME
|
2022-10-27 13:35:06 +00:00
|
|
|
|
2022-12-02 16:11:35 +00:00
|
|
|
jprovd config chain-id {chain-id} --home=$PHOME
|
|
|
|
jprovd config node {your node} --home=$PHOME
|
2022-10-27 13:35:06 +00:00
|
|
|
|
2022-12-02 16:11:35 +00:00
|
|
|
jprovd init {IP_ADDRESS} {STORAGE_IN_BYTES} {KEYBASE_IDENTITY} --home=$PHOME
|
2022-10-27 13:35:06 +00:00
|
|
|
|
2022-12-02 16:11:35 +00:00
|
|
|
jprovd start --home=$PHOME
|
|
|
|
```
|
2022-10-27 13:35:06 +00:00
|
|
|
|