-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: getting started and bootstrap guide progress
- Loading branch information
Tasos Bitsios
committed
Jan 8, 2025
1 parent
bdefe8b
commit 9ba5575
Showing
10 changed files
with
115 additions
and
8 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
--- | ||
title: "Troubleshooting: Installing and bootstrapping the Algorand node" | ||
description: Troubleshooting nodekit bootstrap | ||
--- | ||
|
||
This section outlines **common errors encountered** during the "bootstrap" node installation process. | ||
|
||
**If you are looking for the instructions instead, they are located [here](/guides/20-bootstrap).** | ||
|
||
### Asking for password | ||
|
||
The installer will ask for your user password during this process. This is required by your operating system in order to install new software. | ||
|
||
Enter your operating system user password when you see this prompt: | ||
|
||
``` | ||
[sudo] password for user: | ||
``` | ||
|
||
### Fast catchup is taking too long to complete | ||
|
||
If the fast catchup process is taking too long to complete, check the following: | ||
|
||
#### Status is in FAST-CATCHUP | ||
|
||
The colored status at the top of Nodekit should be in a yellow `FAST-CATCHUP` state: | ||
|
||
![](/assets/nodekit-state-fast-catchup.png) | ||
|
||
After fast-catchup completes successfully, it is normal for a node to be in a `SYNCING` state for a few minutes: | ||
|
||
![](/assets/nodekit-state-syncing.png) | ||
|
||
During this the `Latest Round` number should be increasing rapidly. | ||
|
||
If there is no progress for a while, or the Latest Round value is smaller than `46000000` (46 million) then you should start fast-catchup again: | ||
|
||
#### Fast Catchup was interrupted or did not complete | ||
|
||
To start the fast catchup process again, exit the Nodekit user interface by pressing `Q` and enter the following command: | ||
|
||
```bash | ||
./nodekit catchup | ||
``` | ||
|
||
You can enter nodekit again by running: | ||
|
||
```bash | ||
./nodekit | ||
``` | ||
|
||
When the syncing process completes, the status will display `RUNNING`: | ||
|
||
![](/assets/nodekit-state-running.png) | ||
|
||
### Your hardware meets the minimum specs | ||
|
||
TODO SSD | ||
|
||
### Your network connection meets the minimum specs | ||
|
||
TODO |