Skip to content

Latest commit

 

History

History
57 lines (45 loc) · 1.09 KB

Configure-Shadowsocks-with-Supervisor.md

File metadata and controls

57 lines (45 loc) · 1.09 KB

中文版

Notice: from Shadowsocks 2.6, you can run Shadowsocks directly in the background without Supervisor. This saves RAM for the extra supervisor process.

ssserver -c /etc/shadowsocks.json -d start
ssserver -c /etc/shadowsocks.json -d stop

For old versions:

Edit /etc/shadowsocks.json

{
    "server":"my ip",
    "server_port":8388,
    "local_port":1080,
    "password":"my password",
    "timeout":600,
    "method":"aes-256-cfb"
}

Run

apt-get update
apt-get install python-pip python-m2crypto supervisor
pip install shadowsocks

Edit /etc/supervisor/conf.d/shadowsocks.conf

[program:shadowsocks]
command=ssserver -c /etc/shadowsocks.json
autorestart=true
user=nobody

Add the following line into /etc/default/supervisor

ulimit -n 51200

Run

service supervisor start
supervisorctl reload

Now it's up.

You can check logs or control the shadowsocks process:

supervisorctl tail -f shadowsocks stderr
supervisorctl restart shadowsocks