美文网首页
Ubuntu安装GO版本ShadowSocks

Ubuntu安装GO版本ShadowSocks

作者: wyaoo | 来源:发表于2017-03-25 13:14 被阅读711次
    wget --no-check-certificate https://raw.githubusercontent.com/teddysun/shadowsocks_install/master/shadowsocks-go.sh
    chmod +x shadowsocks-go.sh
    ./shadowsocks-go.sh 2>&1 | tee shadowsocks-go.log
    

    输入密码和端口
    看到下面这段,说明该安装成功:

    Congratulations, shadowsocks-go install completed!
    Your Server IP:your_server_ip
    Your Server Port:your_server_port
    Your Password:your_password
    Your Local Port:1080
    Your Encryption Method:aes-256-cfb
    
    Welcome to visit:http://teddysun.com/392.html
    Enjoy it!
    

    卸载:

    ./shadowsocks-go.sh uninstall
    
    启动:/etc/init.d/shadowsocks start
    停止:/etc/init.d/shadowsocks stop
    重启:/etc/init.d/shadowsocks restart
    状态:/etc/init.d/shadowsocks status
    

    配置多用户

    vi /etc/shadowsocks/config.json
    
    "port_password":{
    "8989":"password0",
    "9001":"password1",
    "9002":"password2",
    "9003":"password3",
    "9004":"password4"
    },
    
    /etc/init.d/shadowsocks restart
    

    相关文章

      网友评论

          本文标题:Ubuntu安装GO版本ShadowSocks

          本文链接:https://www.haomeiwen.com/subject/qpkcottx.html