Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
|
- sudo apt-get install curl
- sudo apt-get remove nodejs npm ## remove existing nodejs and npm packages
- # Using Ubuntu
- curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash -
- curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor | sudo tee /usr/share/keyrings/yarnkey.gpg >/dev/null
- echo "deb [signed-by=/usr/share/keyrings/yarnkey.gpg] https://dl.yarnpkg.com/debian stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
- sudo apt-get update && sudo apt-get install yarn -y
- npm install
- npm audit fix --force
- cat /etc/masternodes/vivo_n1.conf | grep rpcpass
-
- nano /etc/lighttpd/lighttpd.conf
-
- /etc/init.d/lighttpd restart
-
- ufw allow 3002
|