阿里云服务器常用软件设置
先简单介绍
阿里云香港服务器
二次修改,我决定把必要的命令补上,不然后续重新安装太麻烦了。
首先安装ss,搬用别人的代码:链接地址
wget --no-check-certificate https://raw.githubusercontent.com/teddysun/shadowsocks_install/master/shadowsocks.sh chmod +x shadowsocks.sh ./shadowsocks.sh 2>&1 | tee shadowsocks.log
基本配置好了
前面步骤参考网上诸位的程序,pip装好应用,写好json,也start了
但是,但是
依旧不能用,
问题来了,确认你的端口是不是能用
这里可以 cmd 然后 命令行 telnet 你的服务器地址 你设置的端口 回车键 看能否连通:连通会跳出一个新窗口。
如果不能用,就登陆阿里云,在网络和安全中,配置规则,添加新规则,你的端口添两条规则,一个是tcp,一个udp,加入后记得重启服务器。
规则大概如图:
然后大功告成!!!
如果还不能用,那就是ss安装出问题了,重新安装配置。
注意:下面这步并非必不可少。
确认服务是否启动
要先写服务配置,然后应用并启动
[root@localhost ~]# vi /etc/systemd/system/shadowsocks.service
[Unit]
Description=Shadowsocks
[Service]
TimeoutStartSec=0
ExecStart=/usr/bin/ssserver -c /etc/shadowsocks.json
[Install]
WantedBy=multi-user.target
[root@localhost ~]# systemctl enable shadowsocks
[root@localhost ~]# systemctl start shadowsocks
查看服务是否正常:
systemctl status shadowsocks -l
确保服务正常active,应该就没问题了。
posted on 2017-11-01 23:42 qdjkncsdsg 阅读(265) 评论(0) 编辑 收藏 举报