.安装Pip。1
| apt-get install python-pip python-gevent python-m2crypto
|
2.安装Shadowsocks。
1
| pip install shadowsocks
|
3.创建Shadowsocks配置文件。
配置文件 /etc/shadowsocks.json 内容如下:
1
2
3
4
5
6
7
8
9
10
11
| {
"server":"0.0.0.0",
"server_port":8388,
"local_address": "127.0.0.1",
"local_port":1080,
"password":"密码",
"timeout":300,
"method":"aes-256-cfb",
"fast_open": false,
"workers": 1
}
|
4.启动服务。
1
| nohup ssserver -c /etc/shadowsocks.json &
|
5.设定为自动启动的方法:
写入 nohup ssserver -c /etc/shadowsocks.json & 到 /etc/rc.local 文件的 exit 之前。 |