-
Notifications
You must be signed in to change notification settings - Fork 9
Description
For participants:
Don't take any action until you've read all the way through.
The real cause of the problem is at the end.
#9 (comment)
I'll try to describe it step by step:
After I switched to Mainnet, I did not access the server with the Minima node installed for a long time.
Yesterday I found out that the Minima node was down:
- Doesn't give out status;
- did not show the version of the node;
- It does not show the seed-phrase.
Minima node installed in Docker
Attempts to restart Docker did nothing:
sudo docker stop minima9001
sudo docker start minima9001
Attempting to run the update script did not give a positive result either:
docker run --name watchtower_runonce -e WATCHTOWER_CLEANUP=true -e WATCHTOWER_TIMEOUT=60s -v /var/run/docker.sock:/var/run/docker.sock containrrr/watchtower --run-once
Trying to resync the node did not solve the problem:
archive action:resync host:auto
I decided to try uninstalling the Docker container and reinstalling it and then restore the data from the backup:
sudo docker stop minima9001
sudo docker rm minima9001
sudo rm -rf minimadocker9001
After deleting, I entered the command (with my password for MDS):
docker run -d -e minima_mdspassword=MY_PASSWORD_MDS -e minima_server=true -v ~/minimadocker9001:/home/minima/data -p 9001-9004:9001-9004 --restart unless-stopped --name minima9001 minimaglobal/minima:latest
The command to view the logs:
docker logs minima9001
displayed:

command:
docker exec -it minima9001 minima
status

Attempting to check the version:
curl -s 127.0.0.1:9005/status | jq '{'Version':.response.version,'Block height':.response.chain.block,'Block time':.response.chain.time}'
I then tried to log in to MDS using my browser.
First I went to port 9004
https://my_server_ip:9004
Got a warning and approved it:

Then I went to port 9003
https://my_server_ip:9003
I entered my login and got to MDS - there is a blank screen (no apps installed)

Clicking on the plus sign, I selected the previously downloaded archive with the terminal, from the website: https://minidapps.minima.global/.

A spinning wheel appeared, which rotates to infinity (the application is not installed):

How to restore normal operation of the Minima node
