Skip to content
This repository has been archived by the owner on Dec 12, 2023. It is now read-only.

Problem in ./tangle-explorer.sh install ../hornet-private-net #89

Open
luciogtelecom opened this issue Sep 19, 2023 · 0 comments
Open
Labels
bug Something isn't working

Comments

@luciogtelecom
Copy link

Below are all the procedures I performed:

Installation
The entire basis for installing Private-Tangle was used from this site: Deploy Your Own Tangle | IOTA Wiki

First step is to install Docker and Docker-compose.

Make sure you are using Docker 18.03 or higher and Docker Compose 1.21 or higher and update if necessary.

This part is the most delicate of all, because if you install it incorrectly or install something incompletely, you won't be able to make any further progress in the “one-click-tangle”.

Docker
The method I used to install Docker raspberry, can be found on this website: Install Docker Engine on Raspberry Pi OS
Docker-Compose
Since I did not identify how to install Docker-compose on the official Docker website, follow the procedure that was used.
To download and install Docker Compose on a Raspberry Pi 4 Model B, follow the steps below. Before you start, make sure you already have Docker installed. If not, you will need to install it.
Install Docker (if you haven't already):
curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh get-docker.sh
sudo usermod -aG docker pi
After installation, you may need to restart your Raspberry Pi for the changes to take effect.
Install dependencies:
You will need Python and pip to install docker-compose. If you don't already have them installed, you can do so with the following commands:
sudo apt-get update
sudo apt-get install -y python3 python3-pip
Install Docker-Compose:
Docker Compose can be installed via pip. Since Docker Compose from the official repository may not be fully compatible with Raspberry Pi's ARM architecture, it is a good idea to use pip to install the latest supported version:
sudo pip3 install docker-compose
Check installation:
docker-compose --version
You should see the Docker Compose version displayed, indicating that the installation was successful.
Installation of additional packages not mentioned in the tutorial:
Package that provides common commands and features for managing software repositories
sudo apt install curl software-properties-common
Install the DNS utility packages
sudo apt-get install dnsutils
Need to install NodeJS utility packages
sudo apt install nodejs
Install the NVM version of NOde.js
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
This script is used to configure the Nodesource repository, which is used to install Node.js version 16.x. (But I think installing 17 is better)
curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash -
After all this, you can continue with the Private-tangle tutorial
Deploy Your Own Tangle | IOTA Wiki

Now I want to start the cd part ../explorer
./tangle-explorer.sh install ../hornet-private-net and this error appears below:

image

@luciogtelecom luciogtelecom added the bug Something isn't working label Sep 19, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant