Skip to content

Running ZeroNet on VPS

tangdou1 edited this page Jan 24, 2019 · 14 revisions

Take the Debian for example.

  1. enter the vps as root user using putty
  2. Run apt-get update
  3. Run apt-get install tmux
  4. Run tmux new -s zeronet
  5. Run apt-get install msgpack-python python-gevent
  6. Run wget https://github.com/HelloZeroNet/ZeroNet/archive/master.tar.gz
  7. Run tar xvpfz master.tar.gz
  8. Run cd ZeroNet-master/plugins
  9. Run mv disabled-Bootstrapper Bootstrapper (optional)
  10. Run mv disabled-UiPassword UiPassword
  11. Run cd ..
  12. Run vi zeronet.conf
  13. write (notice space)(press i key)
[global]
fileserver_port = 6666
ui_ip = *
ui_port = 8888
ui_host = 
 VPS's IP:8888
 127.0.0.1:8888
 localhost:8888
 zero
ui_password = password
  1. save zeronet.conf(press Esc key,input :wq then enter key)
  2. Run python2 zeronet.py
  3. open http://VPS's IP:8888 ,input password
  4. close your putty
Clone this wiki locally