Exorde. Устанавливаем ноду || How to run an Exorde node, Step by step
Network: MainNet
Site: exordelabs.com
Discord: dscord
Token EXD coinmarketcap.com
Requirements
Windows 8.1/10/11 or Linux or macOS
6 GB RAM per client instance
2 CPU cores per client instance
20 GB storage (HDD or SSD)
Manual installation || Установка вручную
Update your system || Обновляем систему и список пакетов.
sudo apt update && sudo apt upgrade -y
Install Docker
Install Docker ( If docker is installed, skip this step) || Устанавливаем Docker (Если докер установлен, пропускаем этот шаг).
curl -fsSL https://get.docker.com -o get-docker.sh sudo sh get-docker.sh
Adding a user to a docker workgroup || Добавление пользователя в рабочую группа docker
myusername=$(echo $USER) sudo usermod -aG docker $myusername
Log out of the user or reboot our VPS. If you are using a server and there are other projects on it, simply log out of the session and log in again (re-login).
Выходим из пользователя или перезагружаем нашу VPS. Если используете сервер и на нем есть другие проекты - просто выйдите из сессии и снова зайдите (перелогинится).
We will create a new directory named exorde
and enter it. Inside this directory, we will create and edit a file named docker-compose.yml
. The following text should be inserted into the docker-compose.yml
file. 0x0F97049ea5c123104E46B46796194dB6DC805C99
- this is a placeholder for an EVM network wallet address. Please replace it with your actual wallet address. All rewards will be sent to the specified address.
Создаем папку exorde
и переходим в нее. Создаем и редактируем фаил docker-compose.yml. Ниже приведен текст, который необходимо скопировать и вставить в наш docker-compose.yml
. 0x0F97049ea5c123104E46B46796194dB6DC805C99
- это придуманный кошелек, меняем на свой адрес кошелька сети evm. На этот адрес будут начисляться награды.
mkdir exorde && cd exorde nano docker-compose.yml
version: '3' services: exorde-eny: image: exordelabs/exorde-client:latest command: --main_address 0x0F97049ea5c123104E46B46796194dB6DC805C99 restart: unless-stopped
To save the file and exit: Press Ctrl+O to save the file. Press Enter to confirm the filename. Press Ctrl+X to exit the nano editor.
Сохранить файл и выйти: Нажмите Ctrl + O (чтобы сохранить файл). Нажмите Enter (чтобы подтвердить имя файла). Нажмите Ctrl + X (чтобы выйти из редактора nano).
We start our node using the following command. If you have an older version of Docker, use docker-compose
instead of docker compose
.
Запускаем нашу ноду командой. Если у Вас более старая версия docker, тогда используйте docker-compose
в место docker compose
docker compose -f $HOME/exorde/docker-compose.yml -d up
Thank you for your attention and congratulations on successfully setting up the node. || Спасибо за внимание и поздравляю с успешной настройкой узла.
Additional commands || Дополнительные команды
If you want to stop your node || Остановить ноду
docker compose -f $HOME/exorde/docker-compose.yml down
If you want to restart your node || Сделать рестарт
docker compose -f $HOME/exorde/docker-compose.yml restart