the 2 issues I had installing the services via the scripts were: - for some reason [`echo -e "disable_log_bin\nwait_timeout = 31536000\ninteractive_timeout = 31536000" >> /etc/mysql/mysql.conf.d/mysqld.cnf`](https://github.com/OriginTrail/edge-node-installer/blob/3d7c7f481192f060c7b78f486a5ae172adfb9412/edge-node-installer.sh#L83) copied also the `-e` over to the config which mysql didn't like and crashed 🤷🏼♂️ - all the specified node versions are breaking when using `nvm use 22` or `nvm use 20` and the minor versions change. - [e.g. `/root/.nvm/versions/node/v22.9.0/bin/node /root/edge-node-auth-service/index.js`](https://github.com/OriginTrail/edge-node-installer/blob/3d7c7f481192f060c7b78f486a5ae172adfb9412/edge-node-installer.sh#L392C11-L392C90) broke because `nvm install 22` installed `22.10.0` now. - so I'd recommend specifying the exact version in the `nvm install / nvm use` command
the 2 issues I had installing the services via the scripts were:
echo -e "disable_log_bin\nwait_timeout = 31536000\ninteractive_timeout = 31536000" >> /etc/mysql/mysql.conf.d/mysqld.cnfcopied also the-eover to the config which mysql didn't like and crashed 🤷🏼♂️nvm use 22ornvm use 20and the minor versions change./root/.nvm/versions/node/v22.9.0/bin/node /root/edge-node-auth-service/index.jsbroke becausenvm install 22installed22.10.0now.nvm install / nvm usecommand