安裝 shadowsocks
1. 安裝shadowsocks
創(chuàng)新互聯(lián)建站主要從事成都網(wǎng)站建設(shè)、成都網(wǎng)站設(shè)計(jì)、網(wǎng)頁(yè)設(shè)計(jì)、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)二連浩特,10年網(wǎng)站建設(shè)經(jīng)驗(yàn),價(jià)格優(yōu)惠、服務(wù)專業(yè),歡迎來(lái)電咨詢建站服務(wù):028-86922220
pip install shadowsocks
2. 編寫shadowsocks配置文件測(cè)試,配置文件如下:
cat >> /etc/shadowsocks.json <<EOF { "server":"0.0.0.0", "server_port":1075, "local_port":1080, "password":"25d55ad283aa400af464c76d713c07ab", "timeout":10, "method":"aes-256-cfb" } EOF
3.測(cè)試配置文件是否可用
ssserver -c /etc/shadowsocks.json
4.如果啟動(dòng)成功,出現(xiàn)1075端口即可
5. 使用supervisor管理shadowsocks進(jìn)程。安裝 supervisor
pip install supervisor
6. 啟動(dòng) supervisor
mkdir -p /etc/supervisor/conf.d/ cat >>/etc/supervisor/supervisor.conf<<EOF ; supervisor config file [unix_http_server] file=/var/run/supervisor.sock ; (the path to the socket file) chmod=0700 ; sockef file mode (default 0700) [supervisord] logfile=/var/log/supervisor/supervisord.log ; (main log file;default $CWD/supervisord.log) pidfile=/var/run/supervisord.pid ; (supervisord pidfile;default supervisord.pid) childlogdir=/var/log/supervisor ; ('AUTO' child log dir, default $TEMP) ; the below section must remain in the config file for RPC ; (supervisorctl/web interface) to work, additional interfaces may be ; added by defining them in separate rpcinterface: sections [rpcinterface:supervisor] supervisor.rpcinterface_factory = supervisor.rpcinterface:make_main_rpcinterface [supervisorctl] serverurl=unix:///var/run/supervisor.sock ; use a unix:// URL for a unix socket ; The [include] section can just contain the "files" setting. This ; setting can list multiple files (separated by whitespace or ; newlines). It can also contain wildcards. The filenames are ; interpreted as relative to this file. Included files *cannot* ; include files themselves. [include] files = /etc/supervisor/conf.d/*.conf EOF
啟動(dòng)supervisor
supervisord
7. 添加supervisor 的shadowsocks配置文件
cat >>/etc/supervisor/conf.d/shadowsocks.conf <<EOF [program:shadowsocks] command=ssserver -c /etc/shadowsocks.json autorestart=true redirect_stderr=true stdout_logfile=/tmp/shadowsocks.log stdout_logfile_maxbytes=300MB stdout_logfile_backups=10 stdout_capture_maxbytes=500MB EOF
8.重新加載supervisor
supervisorctl update
9.檢查supervisor是否啟動(dòng)了shadowsocks
ubuntu@ip-172-131-12-251:~$ sudo supervisorctl status shadowsocks RUNNING pid 18785, uptime 0:13:10 ubuntu@ip-172-131-12-251:~$ 出現(xiàn)RUNNING 即成功
windows客戶端下載地址:https://github.com/shadowsocks/shadowsocks-windows/releases/download/4.0.4/Shadowsocks-4.0.4.zip
mac客戶端下載地址:https://github.com/shadowsocks/shadowsocks-iOS/releases
當(dāng)前題目:shadowsocks安裝及使用
文章源于:http://muchs.cn/article6/pdhhig.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供做網(wǎng)站、微信小程序、、網(wǎng)站改版、微信公眾號(hào)、商城網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)