In this recipe, we will learn how to configure the Iroha peer node and define the domain, role, permission, and account for the Iroha network.
Configuring Hyperledger Iroha
Getting ready
Before configuring the Iroha network, we will restart the Iroha network that was installed in the Installing Hyperledger Iroha on AWS recipe and install a text editor on the Iroha Docker container, which will be used to edit Iroha configuration files in this recipe:
- Restart the Iroha Docker containers that were installed in a previous recipe with the following commands:
ubuntu@ip-172-31-90-67:~/iroha/iroha$ sudo docker start postgresDB
postgresDB
ubuntu@ip-172-31-90-67:~/iroha/iroha$ sudo docker start iroha
iroha
ubuntu@ip-172-31-90-67:~/iroha...