本篇内容主要讲解“Kong网关的安装与配置方法”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“Kong网关的安装与配置方法”吧!
Kong,是由Mashape公司开源的,基于Nginx的API gateway
特点
可扩展,支持分布式
模块化 功能:授权、日志、ip限制、限流、api 统计分析(存在商业插件Galileo等、也可自己研发)、请求转化、跨域(CORS)、其他功能通过lua编写插件实现
安装
全程使用的全部都是默认配置
安装包下载和官网示列:https://getkong.org/install/centos/
安装前先安装PostgreSQL
yum install https://download.postgresql.org/pub/repos/yum/9.6/redhat/rhel-7-x86_64/pgdg-centos96-9.6-3.noarch.rpm yum install postgresql96-server postgresql96-contrib
初始化数据库
/usr/pgsql-9.6/bin/postgresql96-setup initdb
修改配置
vi /var/lib/pgsql/9.6/data/pg_hba.conf
启动并创建kong数据库和用户权限
systemctl start postgresql-9.6 sudo -i -u postgres psql CREATE USER kong; CREATE DATABASE kong OWNER kong;
安装启动Kong
$ sudo yum install epel-release $ sudo yum install https://kong.bintray.com/kong-community-edition-rpm/centos/7/kong-community-edition-1.0.0.el7.noarch.rpm --nogpgcheck $ cp /etc/kong/kong.conf.default /etc/kong/kong.conf $ kong migrations bootstrap [-c /etc/kong/kong.conf] $ kong start [-c /etc/kong/kong.conf] $ curl http://127.0.0.1:8001
安装kong dashboard 提供界面化操作支持
git clone https://github.com/PGBI/kong-dashboard.git
cd kong-dashboard sudo npm install --unsafe-perm --registry=https://registry.npm.taobao.org npm install -g kong-dashboard kong-dashboard start --kong-url http://127.0.0.1:8001
访问kong dashboard UI:http://192.168.20.54:8080
配置需要代理的API
把代理用路由转出去
访问得到:http://192.168.20.54:8000/apis/user/user/zhangsan
到此,相信大家对“Kong网关的安装与配置方法”有了更深的了解,不妨来实际操作一番吧!这里是亿速云网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。