Dec 25
1.服务端安装
Debian / Ubuntu 系统:
apt-get install python-pip
pip install shadowsocks
2.修改配置文件
/etc/shadowsocks.json
{
"server":"my_server_ip",
"server_port":8388,
"local_address": "127.0.0.1",
"local_port":1080,
"password":"mypassword",
"timeout":300,
"method":"aes-256-cfb",
"fast_open": false
}
3.测试配置文件
ssserver -c /etc/shadowsocks.json
如果没有错误提示就可以在后端运行了:
ssserver -c /etc/shadowsocks.json -d start
终止运行:
ssserver -c /etc/shadowsocks.json -d stop
参考资料:https://github.com/shadowsocks/shadowsocks/wiki/Configuration-via-Config-File
Oct 16
修改一下config.json,其中server字段为:
"server": "::",
如果使用Supervisor监视Shadowsocks运行的话,重启shadowsocks:
supervisorctl restart shadowsocks
没有使用Supervisor监视Shadowsocks运行的话,手动重启shadowsocks:
ssserver -c /etc/shadowsocks.json
参考:https://www.librehat.com/let-shadowsocks-server-listen-on-ipv4-and-ipv6-ports/
Aug 25
昨天注册了板瓦工的64M的版本,今天就开始后台维护,等维护完成后才发现系统已经将内存从64M升级到72M,感谢!
看着了Heroku云空间部署Shadowsocks的相关文章,目前还不需要,先记录一下,以后可能用得着的,Paas的服务最好不要滥用。
参考连接:
1.源代码:https://github.com/mrluanma/shadowsocks-heroku
2.Heroku云空间部署Shadowsocks http://www.faith.ga/2411.html
3.Shadowsocks-heroku 使用教程 http://luckazhao.diandian.com/post/2014-08-02/shadowsocks-heroku
Recent Comments