Install ShadowSocks server on Debian 10

To install ShadowSocks server on Debian 10, run

apt install -y shadowsocks

Create config file

vi /etc/shadowsocks/config.json

Add following

Advertisement

{
    "server":"SERVER_IP",
    "server_port":8044,
    "local_port":0,
    "password":"PASSWOARD_HERE",
    "timeout":600,
    "method":"aes-256-cfb"
}

You can change server_port if required.

To enable service, run

systemctl enable shadowsocks-server@config

To start shadowsocks proxy, run

systemctl start shadowsocks-server@config

For status/restart

systemctl status shadowsocks-server@config
systemctl restart shadowsocks-server@config
Add a comment

Leave a Reply

Your email address will not be published. Required fields are marked *

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Advertisement