搭建 Shadowsocks 科学上网 ss
Shadowsocks 官网: https://shadowsocks.org
Shadowsocks 官方 GitHub: https://github.com/shadowsocks
服务器环境:
系统: CentOS 6,7,Debian,Ubuntu
内存: ≥128M
默认配置
服务器端口: 自己设定(如不设定,默认从 9000-19999 之间随机生成)
密码: 自己设定(如不设定,默认为 teddysun.com)
加密方式: 自己设定(如不设定,默认为 aes-256-gcm)
安装 ss
- 使用 root 用户登录服务器, 运行以下命令
wget --no-check-certificate -O shadowsocks.sh https://raw.githubusercontent.com/teddysun/shadowsocks_install/master/shadowsocks.sh
chmod +x shadowsocks.sh
./shadowsocks.sh 2>&1 | tee shadowsocks.log
- 安装完成示例
卸载 ss
使用 root 用户登录服务器, 运行以下命令
./shadowsocks.sh uninstall
ss 使用命令
- 启动:
/etc/init.d/shadowsocks start
- 停止:
/etc/init.d/shadowsocks stop
- 重启:
/etc/init.d/shadowsocks restart
- 状态:
/etc/init.d/shadowsocks status
查看 ss 配置信息
使用 root 用户登录服务器, 运行以下命令
cat /etc/shadowsocks.json
修改 ss 配置信息
方法 1: 修改文件/etc/shadowsocks.json
方法 2: 重新安装./shadowsocks.sh
(安装之前先卸载 ss)