摘要:是一个成熟的网关解决方案。网关的下一层,是内部服务,内部服务只需开发和关注具体业务相关的实现。网关可以提供发布管理维护等主要功能。
Kong是一个使用了lua-nginx-module运行在Nginx之上的Lua应用。Kong是一个成熟的API网关解决方案。API 网关,即API Gateway,是大型分布式系统中,为了保护内部服务而设计的一道屏障,可以提供高性能、高可用的 API托管服务,从而帮助服务的开发者便捷地对外提供服务,而不用考虑安全控制、流量控制、审计日志等问题,统一在网关层将安全认证,流量控制,审计日志,黑白名单等实现。网关的下一层,是内部服务,内部服务只需开发和关注具体业务相关的实现。网关可以提供API发布、管理、维护等主要功能。开发者只需要简单的配置操作即可把自己开发的服务发布出去,同时置于网关的保护之下。
参考文档:
https://konghq.com/ (kong官网)
https://www.pocketdigi.com/bo...
https://www.postgresql.org/ (postgresql官网)
http://www.postgres.cn/index....
环境:一、安装PostgreSQL
环境:Centos7
配置:2c4g
权限:root
注意:请勿使用"yum install kong-community-edition"安装Kong,必须指定版本号!"yum install kong-community-edition-0.14.1.*.noarch.rpm --nogpgcheck"1、配置yum源
# 配置完yum库之后卸载之前安装的Postgresql yum erase postgresql* # 删除遗留的数据 rm -rf /var/lib/pgsql2、安装
下载RPM(PostgreSQL YUM源),找到对应的版本 CentOS 7 - x86_64
# 安装yum源 yum install https://download.postgresql.org/pub/repos/yum/9.6/redhat/rhel-7-x86_64/pgdg-centos96-9.6-3.noarch.rpm # 安装PostgreSQL yum install postgresql96-server postgresql96-contrib3、初始化数据库
# 初始化数据库 /usr/pgsql-9.6/bin/postgresql96-setup initdb4、PostgreSQL服务控制
# PostgreSQL 使用systemctl作为服务托管 service postgresql-9.6 start/stop/restart/reload # 或是 systemctl start/stop/restart/status postgresql-9.6 # 设置开机自启 systemctl enable postgresql-9.65、卸载(顺便提供卸载PostgreSQL的命令)
# 卸载PostgreSQL yum erase postgresql966、修改密码
PostgreSQL数据库默认会创建一个Linux系统用户postgres,通过passwd命令可以设置密码。
# 创建postgres数据库账号 su postgres psql ALTER USER postgres WITH PASSWORD "123456"; q su root7、设置远程控制
将listen_addresses前的#去掉,并将 listen_addresses = "localhost" 改成 listen_addresses = "*";
#------------------------------------------------------------------------------ # CONNECTIONS AND AUTHENTICATION #------------------------------------------------------------------------------ # - Connection Settings - # 放开IP的限制 listen_addresses = "*" # what IP address(es) to listen on;
将IPv4区下的127.0.0.1/32修改为0.0.0.0/0; 将ident修改为md5
# TYPE DATABASE USER ADDRESS METHOD # "local" is for Unix domain socket connections only local all all peer local all all md5 # IPv4 local connections: ### 假如Kong用户设置了密码,需要配置MD5认证 host all all 127.0.0.1/32 md5 ### 容许远程向Navicat客户端访问 host all all 0.0.0.0/0 md5 # IPv6 local connections: host all all ::1/128 ident
#为postgres用户增加work分组 sudo usermod -a -G work postgres # 添加kong数据库账户及数据库 createuser -s -e kong createdb -E UTF8 -O kong kong # 添加kong系统用户名 sudo adduser kong # 可选 为kong系统用户设置密码 sudo passwd kong9、新建Kong数据库
# 创建postgres数据库账号 su postgres psql ALTER USER kong WITH PASSWORD "123456"; q exit二、安装Kong
官网文档:Kong Install
1、根据系统版本配置yum源# 新建Kong的yum reposit vi /etc/yum.repos.d/kong-community-edition.repo # 输入内容 [kong-community-edition] name=kong-community-edition baseurl=https://kong.bintray.com/kong-community-edition-rpm/centos/7 gpgcheck=0 repo_gpgcheck=0 enabled=12、安装
# 安装epel yum install epel-release # 安装Kong yum localinstall https://bintray.com/kong/kong-community-edition-rpm/download_file?file_path=centos/7/kong-community-edition-0.14.1.el7.noarch.rpm3、配置Kong DataSource
# 创建配置 cp kong.conf.default kong.conf vim /etc/kong/kong.conf # 修改数据库配置 database = postgres # Determines which of PostgreSQL or Cassandra pg_host = 127.0.0.1 # The PostgreSQL host to connect to. pg_port = 5432 # The port to connect to. pg_user = kong # The username to authenticate if required. pg_password = 123456 # The password to authenticate if required. pg_database = kong # The database name to connect to.4、迁移Kong (在数据库Kong中创建需要的表)
kong migrations up [-c /path/to/kong.conf]5、启动Kong
kong start [-c /path/to/kong.conf] # 非root权限用户启动方式 chmod -R 777 /usr/local/kong chmod -R 777 /usr/local/share/lua/5.16、验证
curl -i http://localhost:8001/三、安装Kong Dashboard
官方文档:Kong Dashboard Install
1、安装npm# kong Dashboard是nodejs写的 sudo yum install nodejs2、安装
# Install Kong Dashboard npm install -g kong-dashboard # Start Kong Dashboard kong-dashboard start --kong-url http://kong:8001 # Start Kong Dashboard on a custom port kong-dashboard start --kong-url http://kong:8001 --port [port] # Start Kong Dashboard with basic auth kong-dashboard start --kong-url http://kong:8001 --basic-auth user1=password1 user2=password2 # See full list of start options kong-dashboard start --help四、大功告成
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/40522.html
摘要:自定义配置文件镜像的配置文件路径为如需自定义配置文件,自行挂载即可。配置项手册管理网关的的使用教程这里就不写了,自行觅食吧简单的看看下面这篇可以的集成插件服务网关 Kong 镜像: https://hub.docker.com/_/kong 官网给定的用户安装手册上并没有设置 PG 的密码,导致如下问题无法启动 nginx: [error] init_by_lua error: /us...
摘要:搭建的安装部署方式有很多中,官方提供了如下几种的安装方式。还有一些社区提供的安装方式注每种方式的具体如何安装部署,请移驾到官网安装部署下面我们来详细介绍下使用来部署过程需要创建一个自定义网络,以允许容器相互发现和通信。 1、Kong搭建 kong 的安装部署方式有很多中,官方提供了如下几种的安装方式。showImg(https://segmentfault.com/img/bVbvv3...
摘要:为万开发者提供每月数十亿的请求支持。在请求和响应之间,将执行任何安装的插件,扩展的功能集。其有效的成为每个的请求入口。主要组件介绍基于服务器,用来接受请求的。总结就是一个针对管理系统,并提供了很多关于网关功能的扩展插件介绍插件使用脚本编写。 1、简介 Kong 是一个企业级服务网关,底层是使用lua语言,整合Nginx 实现了强大的服务转发,路由,验证功能, 1.2 官方描述 Kong...
摘要:企业级网关学习使用整理目录介绍网关简介安装部署网关安装注学习过程会逐步完善文档,敬请关注,谢谢参考文献官网文档社区如有不当之处欢迎指正,谢谢 1、企业级API网关学习使用整理 1.2 目录 1.2.1 介绍 API网关Kong-简介 1.2.2 安装部署 API网关Kong-docker&安装 注:学习过程会逐步完善文档,敬请关注, 谢谢!参考文献: 官网:https://kongh...
阅读 3000·2023-04-25 20:22
阅读 3314·2019-08-30 11:14
阅读 2574·2019-08-29 13:03
阅读 3165·2019-08-26 13:47
阅读 3200·2019-08-26 10:22
阅读 1249·2019-08-23 18:26
阅读 558·2019-08-23 17:16
阅读 1889·2019-08-23 17:01