Install or UPDATE a Mixnode in Spanish | Daoariwas

In these two videos… you will be able to install a new mixnode or update your mixnode.

This video was made during a call and the quality is not the best, but it is very helpful.

7 Likes

Thanks DAOariwas! This is amazing <3

3 Likes

ty bro, agrega los codigo en texto para solo copiar y pegar ajaajaajaj

1 Like

This is for install mixnode


#Update server
apt update
apt upgrade 

#get binary from github (this is the latest version today may-13 )
wget https://github.com/nymtech/nym/releases/download/nym-binaries-v2024.4-nutella/nym-node

#makes binary exec
chmod +x nym-node

#init mixnode with tesnode id
./nym-node run --id testnode --init-only --mode mixnode --verloc-bind-address 0.0.0.0:1790 --public-ips "$(curl -4 https://ifconfig.me)"

#make service file
vi /etc/systemd/system/nym-node.service

#content of file
[Unit]
Description=Nym Node
StartLimitInterval=350
StartLimitBurst=10

[Service]
User=root
LimitNOFILE=65536
ExecStart=/root/nym-node run --mode mixnode --id testnode --deny-init
KillSignal=SIGINT
Restart=on-failure
RestartSec=30

[Install]
WantedBy=multi-user.target


#enabling service
systemctl enable nym-node.service

#reload system control
systemctl daemon-reload

#start service
service nym-node start

#verify status service
service nym-node status

#for bonding wallet
./nym-node bonding-information --id  testnode

./nym-node sign --id testnode --contract-msg <message from wallet>


#activate firewall
ufw enable
ufw allow 22,443,1789,1790,8080/tcp

#at web navigator you can test 
http://<yourip>:8080/api/v1/swagger/#/`Preformatted text`
4 Likes

Con eso ya estamos al otro lado loco!!

1 Like

Muchas gracias por el tutorial hermanito!

1 Like

Acabo de seguir los pasos de las lineas de comando y todo al pelo, lo unico es que también toca habilitar el puerto 8000

ufw allow 22,443,1789,1790,8080,8000/tcp
1 Like