通过github学生账号免费试用亚马逊aws EC2服务器搭建v
2017-11-08 本文已影响3862人
30fd099ab263
github学生账号获取方法:
https://education.github.com/pack/offers#aws-educate
然后申请aws账号并填入学生优惠码
然后新建EC2实例 选择免费版的ubuntu 系统,安全策略设置为允许全部流量全部位置
然后通过ssh链接到EC2服务器
ssh -i "your pem file" ubuntu@your was dns
##在服务器运行以下命令
sudo apt update
sudo apt install shadowsocks
sudo vim /etc/shadowsocks/config.json
###按i进入编辑模式
{
"server":"本机inet地址", #通过ifconfig命令查看
"server_port":8388,
"local_address":"127.0.0.1",
"local_port":1080,
"password":"你的密码",
"timeout":300,
"method":"aes-256-cfb",
"fast_open":false,
"workers": 1
}
按esc 然后输入:wq按回车保存退出
然后执行以下命令启动服务
nohup server -c /etc/shadowsocks/config.json start > ~/vpnlog.txt &
#log文件保存在~/vpnlog下,通过cat查看
重点
在客户端配置服务器的时候ip地址要填写外网ip地址,也就是aws控制面板里给的,不要填刚才ifconfig里的内网地址