|
3 | 3 | ## Overview |
4 | 4 |
|
5 | 5 | This guide explains how to deploy the Hiero Block Node on a Google Cloud Platform (GCP) virtual machine (VM) using the Solo Weaver tool. |
6 | | -The Block Node supports the Hiero network by processing and validating consensus node produced blocks amongst others features. |
| 6 | +The Block Node supports the Hiero network by processing and validating Consensus Node produced blocks amongst others features. |
7 | 7 | This deployment uses the Weaver binary to provision the VM, set up Kubernetes and install the Block Node Helm chart on the VM. |
8 | 8 |
|
9 | 9 | This guide walks you through creating the VM, uploading the Weaver binary to it, and running the Block Node using the local profile. |
@@ -93,7 +93,7 @@ Before you begin, ensure you have: |
93 | 93 | 1. Run the Block Node install command with **`sudo`** and the desired profile (choose one of: **`local`**, **`previewnet`**, **`testnet`**, **`mainnet`**): |
94 | 94 |
|
95 | 95 | ```bash |
96 | | - sudo ./weaver-linux-amd64 block node install -p <profile> |
| 96 | + sudo ./weaver-linux-amd64 Block Node install -p <profile> |
97 | 97 | ``` |
98 | 98 |
|
99 | 99 | *(Replace **`<profile>`** with the desired value. For ARM, use **`weaver-linux-arm64`** instead.)* |
@@ -214,18 +214,18 @@ If you need to permanently remove a Block Node deployment (for decommissioning, |
214 | 214 | See below for common errors, causes, and solutions during Block Node setup: |
215 | 215 |
|
216 | 216 | 1. Error: “Profile not set” |
217 | | - - **Cause:** The **`block node install`** command was run without specifying a profile. |
| 217 | + - **Cause:** The **`Block Node install`** command was run without specifying a profile. |
218 | 218 | - **Fix:** Re-run with a valid profile, for example: |
219 | 219 |
|
220 | 220 | ```bash |
221 | | - sudo ./weaver-linux-amd64 block node install -p local |
| 221 | + sudo ./weaver-linux-amd64 Block Node install -p local |
222 | 222 | ``` |
223 | 223 | 2. Error: “Requires super user privilege” |
224 | | - - **Cause:** The **`block node installp`** command was run without **`sudo`**. |
| 224 | + - **Cause:** The **`Block Node installp`** command was run without **`sudo`**. |
225 | 225 | - **Fix:** Add **`sudo`** before your command: |
226 | 226 |
|
227 | 227 | ```bash |
228 | | - sudo ./weaver-linux-amd64 block node install -p local |
| 228 | + sudo ./weaver-linux-amd64 Block Node install -p local |
229 | 229 | ``` |
230 | 230 | 3. Error: Missing **`weaver`** User and/or Group |
231 | 231 | - **Cause:** First **`sudo`** run; the **`weaver`** system user and group are not yet created. |
|
0 commit comments