shadowsocks in aws linux

In ubuntu version linux

1
2
3
sudo apt-get update
sudo apt-get install python-pip
sudo pip install shadowsocks

then add config file

1
2
3
4
5
6
7
8
9
10
11
xxx.json

{
"server":"0.0.0.0",
"server_port":8388,
"password": "123456",
"local_port":1080,
"timeout":300,
"method":"aes-256-cfb",
"fast_open": false
}

start service

1
sudo ssserver -c shadowsocks.json -d start

In aws version linux

Install pip first

1
sudo yum install python-pip

If the pip insatll command failed like this

1
pkg_resources.DistributionNotFound: pip==9.0.1

Then install customized pip

1
sudo easy_install pip

Same as above start server

1
sudo pip install shadowsocks

https://github.com/shadowsocks
https://blog.csdn.net/u011054333/article/details/52496303
https://blog.csdn.net/xlx921027/article/details/55102248
https://blog.csdn.net/dlmmu/article/details/78397284
https://blog.csdn.net/daiyutage/article/details/69945850