溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

【1】微服務(wù)架構(gòu)-開源API網(wǎng)關(guān)Kong的部署與使用

發(fā)布時間:2020-07-02 12:50:33 來源:網(wǎng)絡(luò) 閱讀:15917 作者:醬醬醬子啊 欄目:數(shù)據(jù)庫

前言:

     微服務(wù)架構(gòu)是現(xiàn)在很火熱的技術(shù)話題,其本質(zhì)是將龐大而復(fù)雜的系統(tǒng),拆分成微小的服務(wù)模塊,使服務(wù)之間實現(xiàn)解耦,能夠?qū)崿F(xiàn)各模塊的獨立開發(fā)、升級、部署。大大降低了系統(tǒng)的運維及開發(fā)難度。

     然而由于服務(wù)的拆分,客戶端可能同時需要和多個服務(wù)進行交互,隨著微服務(wù)規(guī)模的增大,這樣的交互模式在性能和管理上都有很大的不便。那么基于微服務(wù)的客戶端如何能夠更好的去訪問這些獨立的服務(wù)呢,這時我們就需要一個統(tǒng)一的入口來向外提供服務(wù)。這就是我們所說的API網(wǎng)關(guān),

    API Gateway是一個在客戶端和服務(wù)之間的中間人,客戶端不用直接訪問服務(wù)器,而是通過API Gateway來傳遞中間消息。API Gateway能夠?qū)崿F(xiàn)負載均衡、緩存、訪問控制、API 計費監(jiān)控等等功能。下面為網(wǎng)上關(guān)于API Gateway的圖。

【1】微服務(wù)架構(gòu)-開源API網(wǎng)關(guān)Kong的部署與使用

    Kong 是由Mashape公司開發(fā)的一款A(yù)PI Gateway的軟件,Kong是基于nginx開發(fā),用來接收客戶端的API請求,同時還需要一個數(shù)據(jù)庫來存儲操作數(shù)據(jù)。寫這篇文章時Kong的最新版是0.9.3,其支持數(shù)據(jù)庫為PostgreSQL 9.4+ 和Cassandra 2.2.x .


一:安裝

  • centos

(1):安裝kong

$ sudo yum install epel-release
$ sudo yum install kong-0.9.3.*.noarch.rpm --nogpgcheck

or 

Download kong-0.9.3.el7.noarch.rpm

$ wget kong-0.9.3.el7.noarch.rpm


(2):配置數(shù)據(jù)庫

kong支持 PostgreSQL 9.4+ 和Cassandra 2.2.x .

如果使用PostgreSQL數(shù)據(jù)庫,請創(chuàng)建用戶和對應(yīng)的數(shù)據(jù)庫

$ CREATE USER kong; CREATE DATABASE kong OWNER kong;

(3):啟動

$ kong start
# Kong is running
$ curl 127.0.0.1:8001

Kong啟動后,會分別監(jiān)聽8000端口和8001端口。8000端口是用來提供服務(wù),8001是用來對API進行管理。



  • docker

(1):啟動數(shù)據(jù)庫

cassandra

$ docker run -d --name kong-database \
              -p 9042:9042 \
              cassandra:2.2

OR PostgreSQL

$ docker run -d --name kong-database \
              -p 5432:5432 \
              -e "POSTGRES_USER=kong" \
              -e "POSTGRES_DB=kong" \
              postgres:9.4

(2):啟動kong

$ docker run -d --name kong \
              --link kong-database:kong-database \
              -e "KONG_DATABASE=cassandra" \
              -e "KONG_CASSANDRA_CONTACT_POINTS=kong-database" \
              -e "KONG_PG_HOST=kong-database" \
              -p 8000:8000 \
              -p 8443:8443 \
              -p 8001:8001 \
              -p 7946:7946 \
              -p 7946:7946/udp \
              kong


附上docker-compose.yml

kong-database:
  p_w_picpath: postgres:9.4
  ports: 
  - 5432:5432/tcp
  environment:
  - POSTGRES_USER=kong 
  - POSTGRES_DB=kong
kong:
  p_w_picpath: kong
  links: 
  -  kong-database:kong-database
  environment:
  - KONG_DATABASE=postgres
  - KONG_CASSANDRA_CONTACT_POINTS=kong-database
  - KONG_PG_HOST=kong-database
  ports:
  - 8000:8000/tcp
  - 8443:8443/tcp
  - 8001:8001/tcp
  - 7946:7946/tcp
  - 7946:7946/udp



二:使用kong

(1):添加api到kong

$ curl -i -X POST \
--url http://localhost:8001/apis/ \
--data 'name=baidu' \
--data 'upstream_url=http://baidu.com/' \
--data 'request_host=baidu.com'
  • --url:8001端口是Kong的管理端口。

  • upstream_url:提供服務(wù)的后端url。

  • request_path:使用path參數(shù)時,加入該路徑的服務(wù)接口。

  • request_host 使用這個參數(shù)時,將加入該host的所有服務(wù)接口:


(2):查詢已經(jīng)添加的API

$curl localhost:8001/apis/


(3):訪問API

$curl -i -X POST --url http://localhost:8000/ --header 10.100.55.1


(4):刪除API

根據(jù)API_NAME or API_ID來刪除指定api

$curl -i -X DELETE localhost:8001/apis/00f90ca9-cf2d-4830-c842-3b90f6cd08af
$curl -i -X DELETE localhost:8001/apis/test1


(5):添加實例

  • 實例1  (request_path限制path內(nèi)的接口)

URL:

http://10.100.55.1/hello1/index.html

添加:

$curl -i -X POST --url http://localhost:8001/apis/ \
--data name=test1 \
--data 'upstream_url=http://10.100.55.1' \
--data 'request_path=/hello1/'

訪問接口:

$curl -i -X GET --url http://localhost:8000/hello1/

所謂的request_path,就是固定只能訪問hello1下的內(nèi)容,如果該host的www目錄下還有hello2、hello3、那么是不能通過網(wǎng)關(guān)去訪問這個目錄下的內(nèi)容,例如下面是訪問不到的,因為沒有加入到Kong中。

$curl -i -X GET --url http://localhost:8000/hello2/



  • 實例2  (request_host可以訪問host所有接口)

URL:

http://10.100.55.1

添加:

$ curl -i -X POST --url http://localhost:8001/apis/ \
--data name=test2 \
--data 'upstream_url=http://10.100.55.1' \
--data 'request_host=10.100.55.1'


訪問接口:

使用request_host后,該host所有api都加入到Kong中,下面的都能夠通過網(wǎng)關(guān)訪問。

$curl -i -X GET --url http://localhost:8000/hello1  --header host:10.100.55.1 
$curl -i -X GET --url http://localhost:8000/hello2 --header host:10.100.55.1


  • 實例3 (request_host  port:8080)

URL:

http://10.100.55.2:8080

添加:

$curl -i -X POST --url http://localhost:8001/apis/ \
--data  name=test3  \
--data 'upstream_url=http://10.100.55.2:8080' \
--data 'request_host=10.100.55.2'

訪問接口:

$curl -i -X GET --url http://localhost:8000/ --header host:10.100.55.2


  • 實例4 (復(fù)雜url的添加和訪問)

URL: 

http://10.100.55.3:8000/opj/list?serviceId=box&c=nanjing

添加:

$ curl -i -X POST --url http://localhost:8001/apis/ --data 'name=test4' --data 'upstream_url=http://10.100.55.3:8000/' --data 'request_path=/opj/list'

訪問接口:

$ curl -i -X GET --url http://localhost:8000/opj/list?serviceId=box&c=nanjing




三:創(chuàng)建認證

(1)給API配置pulgin認證

1:添加api

$curl -i -X POST --url http://localhost:8001/apis/ --data 'name=test5' --data 'upstream_url=http://10.100.55.1/' --data 'request_host=10.100.55.1'
$curl -i -X GET --url http://localhost:8000/ --header host:10.100.55.1
訪問正常
Connect  Success...

2:添加plugin認證

$curl -i -X POST --url http://localhost:8001/apis/test5/plugins/ --data 'name=key-auth'
$curl -i -X GET --url http://localhost:8000/ --header host:10.100.55.1
訪問失敗
HTTP/1.1 401 Unauthorized
WWW-Authenticate: Key realm="kong"
Server: kong/0.9.3
{"message":"No API key found in headers or querystring"}


(2)添加用戶

1:創(chuàng)建用戶

$curl -i -X POST --url http://localhost:8001/consumers/ --data "username=heqin"
{"username":"heqin","created_at":1477382339000,"id":"8e6273c9-f332-4d68-b74c-73ae9f82f150"}

2:給用戶創(chuàng)建key

$curl -i -X POST --url http://localhost:8001/consumers/heqin/key-auth/ --data 'key=helloworld'
{"created_at":1477382483000,"consumer_id":"8e6273c9-f332-4d68-b74c-73ae9f82f150","key":"helloworld","id":"62c0d640-b1bd-4f3b-aa6e-ba3adaf8ec38"}

3:帶著key去訪問

$curl -i -X GET --url http://localhost:8000/  --header host:10.100.55.1 --header apikey:helloworld
訪問成功
Connect  Success...

通過上面的兩步,就可以實現(xiàn)對API接口的權(quán)限控制。


未完待續(xù)。。。。。。。


向AI問一下細節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI