Centos7.2 搭建SS

今天我把我的阿里云服务器系统改成了Centos7.2,为了能在本地享受到阿里云飞一般的网速,我决定在服务器上搭建一个ss。 第一步:安装 pip pip是python用来加载各种模块的一个工具。 我使用的是python下的shadowsocks模块。 这个shadowsocks模块可以在 pip 上直接安装。 curl “https://bootstrap.pypa.io/get-pip.py" -o “get-pip.py” python get-pip.py 第二步:安装配置 shadowsocks 安装 shadowsocks: pip install –upgrade pip pip install shadowsocks 第三步:配置文件 安装完成后,需要创建配置文件/etc/shadowsocks.json,内容如下: { “server”: “0.0.0.0”, “server_port”: 8388, “password”: “你的密码”, “method”: “aes-256-cfb” } 第四步: 新建启动脚本文件/etc/systemd/system/shadowsocks.service,内容如下: [Unit] Description=Shadowsocks [Service] TimeoutStartSec=0 ExecStart=/usr/bin/ssserver -c /etc/shadowsocks.json [Install] WantedBy=multi-user.target 第五步:启动 shadowsocks 服务 systemctl start shadowsocks 接下来,就是在本地用ss软件连接我的阿里云服务器了,连上之后查一下ip emmmmm…..nice~ ip

  • Copyrights © 2018-2021 rich4rd
  • Visitors: | Views: