国产成人卡2卡3卡4乱码_国产婷婷色一区二区三区在线_亚洲VA久久久噜噜噜久久天堂_漂亮人妻被中出中文字幕久久

阿里云 centos6.8 安裝ngrok服務(wù)

行業(yè)動態(tài) 公司新聞 案例分享 技術(shù)百科

阿里云 centos6.8 安裝ngrok服務(wù)

來源:奇站網(wǎng)絡(luò) 瀏覽量:2,703 發(fā)布日期: 2017-12-08

一、安裝環(huán)境

服務(wù)器

centos 6.8 64位
已安裝gcc(如果沒安裝,在下面的步驟要安裝)
微信開發(fā)需要80端口,用于微信開發(fā)的話80端口不能有其他程序使用(nginx,apache等)

客戶端

win10 64位

二、安裝步驟

1、安裝git

  1. yum install git

2、安裝go

下載go1.4.2.linux-amd64.tar.gz
解壓

  1. mv go /usr/local/
  1. ln -s /usr/local/go/bin/* /usr/bin/
  1. vi /etc/profile
  1. #go lang
  2. export GOROOT=/usr/local/go
  3. export PATH=$PATH:$GOROOT/bin

使環(huán)境變量生效:

  1. source /etc/profile

檢查是否安裝成功:

  1. go version

3、ngrok

  1. cd /usr/local/src
  1. git clone https://github.com/inconshreveable/ngrok.git
  1. cd ngrok
  2. openssl genrsa -out rootCA.key 2048
  3. openssl req -x509 -new -nodes -key rootCA.key -subj "/CN=ngrok.qizhan100.com" -days 5000 -out rootCA.pem
  4. openssl genrsa -out device.key 2048
  5. openssl req -new -key device.key -subj "/CN=ngrok.qizhan100.com" -out device.csr
  6. openssl x509 -req -in device.csr -CA rootCA.pem -CAkey rootCA.key -CAcreateserial -out device.crt -days 5000
  1. cp rootCA.pem assets/client/tls/ngrokroot.crt
  2. cp device.crt assets/server/tls/snakeoil.crt
  3. cp device.key assets/server/tls/snakeoil.key

4、編譯服務(wù)端

設(shè)置變量:

  1. GOOS=linux GOARCH=amd64 #如果是32位系統(tǒng),這里 GOARCH=386

生成服務(wù)端與客戶端

  1. make release-server release-client

5、編譯客戶端

  1. cd /usr/local/go/src/
  2. GOOS=windows GOARCH=amd64 CGO_ENABLED=0 ./make.bash

因?yàn)榭蛻舳艘趙indows下運(yùn)行,所以這里指定os為windows編譯,linux系統(tǒng)GOOS=linux,64位系統(tǒng)GOARCH=amd64,32位系統(tǒng)GOARCH=386

  1. cd /usr/local/src/ngrok/
  2. GOOS=windows GOARCH=amd64 make release-server release-client

啟動服務(wù)

  1. bin/ngrokd -domain="ngrok.qizhan100.com" -httpAddr=":80"

其他

注意記得開放ngrok.cfg配置文件對應(yīng)的端口4443

標(biāo)簽:

廈門奇站網(wǎng)絡(luò)科技有限公司

電話:13313868605

QQ:3413772931

地址:廈門集美區(qū)軟件園三期

網(wǎng)站地圖


                    掃一掃加我咨詢