Mina Mainnet
  • Summary
  • Technical Requirements
  • RUSSIAN
    • Создание и проверка ключей
    • Варианты запуска ноды
      • Запуск Mina с Докером
      • Запуск Mina без Докера
    • Обновление ноды для Докера
    • Обновление ноды для Сервиса
    • CLI. Импорт ключа, отправка токенов, делегирование
    • Настройка TMUX
    • Настройка Снарк Стоппера
  • ENGLISH
    • Generating and verifying keys
    • Node launch options
      • Running Mina with Docker
      • Running Mina without Docker
    • Update for Docker
    • Update for Service
    • CLI. Key import, sending tokens
    • Setting up TMUX
    • Setting up Snark Stopper
  • Explorers
  • Mina Explorer from Staketab
  • Mina explorer from @Garethtdavies
  • Related materials
    • Mina Academy from Staketab
    • How to stake MINA from Staketab
    • Troubleshooting guide from @Garethtdavies
    • Docker guide from @Garethtdavies
    • Mina Snark Stopper from @Whataday2day
    • Official Mina docs
Powered by GitBook
On this page
  • 1. Stopping the Service
  • 2. Settings
  • 3. Change configuration
  • 4. Launch

Was this helpful?

  1. ENGLISH

Update for Service

Simple steps to update a node in the Service.

1. Stopping the Service

Stopping:

systemctl --user stop mina

2. Settings

Downloading the new update:

echo "deb [trusted=yes] http://packages.o1test.net $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/mina.list
sudo apt-get update
sudo apt-get install -y curl unzip mina-mainnet=1.3.0-9b0369c

3. Change configuration

Do this item only if you need to change something in the configuration files. .mina-env or service filemina.service .

Go to the file with flags:

nano .mina-env

Changing data then save and exit: CTRL+S and CTRL+X

4. Launch

Reload the configuration change:

systemctl --user daemon-reload

Start the Service:

systemctl --user restart mina

Viewing logs:

journalctl --user-unit mina -n 1000 -f
PreviousUpdate for DockerNextCLI. Key import, sending tokens

Last updated 2 years ago

Was this helpful?