项目作者: mapping77

项目描述 :
A backup of vps set up.
高级语言:
项目地址: git://github.com/mapping77/VPSsetup.git
创建时间: 2019-01-11T03:38:32Z
项目社区:https://github.com/mapping77/VPSsetup

开源协议:

下载


VPSsetup

This is a backup of setting up a new vps based on shadowsocks-libev, which originates from solving the problem of visiting google scholar. It includes the basic steps of seting up a simple vps for a beginer. It will also be used to be a record for the problems that I have met, solved and need-to-be solved during the usage of this.

Vultr+Debian9+shadowsocks-libev+serverspeeder

  1. It will be better to choose Japan or Singapore server locations for lower ping value.
  2. It is not recommented for you to new a vps from snapshot taked in a different location because there may be a problem of ip configuration.
  3. Using ssh connecting to the vps and install the shadowsocks-libev.(Be careful about that y default sudo is not installed on Debian.)
    https://github.com/shadowsocks/shadowsocks-libev#debian--ubuntu
    https://unix.stackexchange.com/questions/354928/bash-sudo-command-not-found
    1. sudo sh -c 'printf "deb http://deb.debian.org/debian stretch-backports main" > /etc/apt/sources.list.d/stretch-backports.list'
    2. sudo apt update
    3. sudo apt -t stretch-backports install shadowsocks-libev

    Shadowsocks-libev basics

    1. service shadowsocks-libev status
    2. service shadowsocks-libev start
    3. service shadowsocks-libev stop
    4. service shadowsocks-libev restart
    You can find the config.json on /etc/shadowsocks-libev/config.json,and use scp to back it up on your local computerscp root@server_ip:/etc/shadowsocks-libev/config.json ~/backupconfig/
    1. {
    2. "server":"server_ip",
    3. "server_port":server_port,
    4. "local_port":1080,
    5. "password":"passwords of ss",
    6. "timeout":600,
    7. "method":"aes-256-cfb"
    8. }

    Serverspeder

    Need to be added.
    https://blog.yanzhe.tk/2015/10/18/build-myself-ss-on-vps/