用Google Cloud Platform搭建***服务教程

之前FQ一直用的是***,天有不测风云,前几天发现ss服务挂了。更可怕的是ping都ping不通,多方打听,***中文社区已经炸开锅了,原因就是IP被封了。需要付费更换IP。然后到现在还是没有给我更换IP,于是就有了这篇随笔。记录自己用Google Cloud Platform搭建***服务教程的辛酸泪。

1.申请试用Google Cloud。登陆你的谷歌账户,必须使用信用卡,而且不能使用虚拟卡,招商银行、中信银行的全币种卡、浦发银行的 VISA 卡均可以通过验证。理论上 VISA 卡均可获得通过,成功后会于扣款1刀,验证卡片后会返还。GCD 现在免费赠送300刀期限是一年,也就是300刀和一年时间谁先用完就以谁为准,结束之后你不点继续使用时不会扣费的。地址:https://cloud.google.com

2.登录控制台。依次在菜单栏中点击【网络】【外部ip地址】【保留静态IP】点击右侧更改可以关联创建的实例VM对象。

用Google Cloud Platform搭建***服务教程

用Google Cloud Platform搭建***服务教程

3.修改防火墙,依次点击【网络】【防火墙规则】【创建防火墙规则】

用Google Cloud Platform搭建***服务教程

用Google Cloud Platform搭建***服务教程

3.创建计算机引擎VM实例。配置如图下。

用Google Cloud Platform搭建***服务教程

用Google Cloud Platform搭建***服务教程

用Google Cloud Platform搭建***服务教程

4.搭建* server 及自启动。使用谷歌云自带的ssh工具。

用Google Cloud Platform搭建***服务教程

登录远端之后首先更新一下 apt-get 软件包

sudo apt-get update

然后通过 apt-get 安装 python-pip

sudo apt-get install python-pip

完成之后使用 pip 安装 * 服务

sudo pip install *

用Google Cloud Platform搭建***服务教程

说明安装成功

然后我们需要创建一个 * server 的配置文件,可以直接建在当前用户目录下

sudo vim /etc/ss-conf.json

回车之后会进入这个创建的文件,按键盘上的 insert键会进入编辑,然后把下面的内容输入进去。按ESC键会发现左下角的insert消失,shift+:这个组合键左下角出现:输入wq回车就保存退出文件。红色字体分边是端口和密码,设置成你想要的就行了

server_port 与防火墙中的端口保持一致。

用Google Cloud Platform搭建***服务教程

{
  "server":"0.0.0.0",
  "server_port":8888,
  "local_address":"127.0.0.1",
  "local_port":1080,
  "password":"xxxxxx",    
  "timeout":600,
  "method":"aes-256-cfb"
}

7.31日更新:上面的内容有网友反映直接复制会报错,请注意以下两点:1代码的全部内容必须为英文半角输入,2server_port与password后面的数字内容请自定义,也就是你之后在*客户端上配置使用的端口和密码。

最后用这个配置文件启动 * 服务

sudo ssserver -c /etc/ss-conf.json -d start

ss服务自启动实现

这一点让我尝试了很久,搜了很多教程说什么在系统的rc.local里面添加启动命令就行等等,试过很多次,各种折腾改路径都不行,最后还是参考别人步骤如下。

创建脚本 /etc/init.d/*

sudo vim /etc/init.d/*

进入文件后添加以下内容,方法与前面创建ss-conf.json这个文件一样,使用insert键、shif+:、wq回车保存等等

#!/bin/sh

start(){
   ssserver -c /etc/*.json -d start
}
stop(){
   ssserver -c /etc/*.json -d stop
}
case “$1” in
start)
   start
   ;;
stop)
   stop
   ;;
reload)
   stop
   start
   ;;
*)
   echo “Usage: $0 {start|reload|stop}”
   exit 1
   ;;
esac

然后增加这个文件的可执行权限

sudo chmod +x /etc/init.d/*

创建文件 /etc/init/*.conf

sudo vim /etc/init/*.conf

内容直接复制如下

start on (runlevel [2345])stop on (runlevel [016])pre-start script
/etc/init.d/* start
end script

post-stop script
/etc/init.d/* stop
end script

执行

sudo update-rc.d * defaults

然后就添加到开机启动中了

5.有了ss配置文件,就可以愉快的上google了。ps:ss配置文件的server填VM实例的外部IP而不是0.0.0.0。

用Google Cloud Platform搭建***服务教程

上一篇:socket模块的getaddrinfo方法详解


下一篇:如何弹出QQ临时对话框实现不添加好友在线交谈效果