大家好,欢迎来到IT知识分享网。
centos搭建kong+konga
前言:最近正在学习kong网关 记录一下搭建服务的过程 也是百度东拼西凑出来的 基于华为云服务器 保证可用!
- gcc
- pcre
- zlib
- openssl
- postgresql9.6+
- konga
安装 gcc 编译环境:
sudo yum install -y pcre pcre-devel
pcre 安装
sudo yum install -y pcre pcre-devel
zlib 安装
sudo yum install -y zlib zlib-devel
openssl 安装
sudo yum install -y openssl openssl-devel
postgresql 安装
kong持久化数据有postgresql和cassandra两种数据库选择 这里选择postgresql
PS:不要图省事直接 yum install postgresql,因为这个版本比较低,kong不适用,至少要9.5+。
sudo yum install -y https://download.postgresql.org/pub/repos/yum/9.6/redhat/rhel-6-x86_64/pgdg-redhat-repo-42.0-11.noarch.rpm
yum install postgresql96-server
#启动
service postgresql-9.6 start
postgresql配置
为kong创建用户以及数据库
// 新建 linux kong 用户
sudo adduser kong
// 使用管理员账号登录 psql 创建用户和数据库
// 切换 postgres 用户
// 切换 postgres 用户后,提示符变成 `-bash-4.2$`
su postgres
// 进入 psql 控制台
psql
// 此时会进入到控制台(系统提示符变为'postgres=#')
// 先为管理员用户postgres修改密码
\password postgres
// 建立新的数据库用户(和之前建立的系统用户要重名)
create user kong with password '123456';
// 为新用户建立数据库
create database kong owner kong;
// 把新建的数据库权限赋予 kong
grant all privileges on database kong to kong;
// 退出控制台
\q
修改postgresql权限控制文件pg_hba.conf
local all all trust
host all all 0.0.0.0/0 md5
# IPv4 local connections:
host all all 127.0.0.1/32 ident
# IPv6 local connections:
host all all ::1/128 ident
修改postgresql文件pg_hba.conf以开启远程访问
listen_addresses = '*'
kong安装
#kong一定要在1.0和1.3之间 不然konga不支持
yum install -y https://bintray.com/kong/kong-rpm/download_file?file_path=centos/7/kong-1.3.0.el7.amd64.rpm
修改kong配置文件
sudo cp /etc/kong/kong.conf.default /etc/kong/kong.conf
sudo vi /etc/kong/kong.conf
#------------------------------------------------------------------------------
# DATASTORE
#------------------------------------------------------------------------------
# Kong will store all of its data (such as APIs, consumers and plugins) in
# either Cassandra or PostgreSQL.
#
# All Kong nodes belonging to the same cluster must connect themselves to the
# same database.
admin_listen = 0.0.0.0:8001, 0.0.0.0:8444 ssl
database = postgres # Determines which of PostgreSQL or Cassandra
# this node will use as its datastore.
# Accepted values are `postgres` and
# `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.
ssl = off # 如果不希望开放 8443 的 ssl 访问可关闭
#初始化kong数据库表
kong migrations up -c /etc/kong/kong.conf
#启动
kong start
curl 127.0.0.1:8001
安装开源项目konga
建议使用docker 如果对nodejs不熟悉 各种依赖很烦
#启动docker
systemctl start docker
docker pull pantsel/konga:0.14.1
docker run --rm pantsel/konga:0.14.1 -c prepare -a postgres -u postgresql://konga:123456@124.71.171.71:5432/konga
docker run -d -p 1337:1337 \
-e "DB_ADAPTER=postgres" \
-e "DB_HOST=124.71.171.71" \
-e "DB_PORT=5432" \
-e "DB_USER=konga" \
-e "DB_PASSWORD=123456" \
-e "DB_DATABASE=konga" \
-e "DB_PG_SCHEMA=public"\
-e "NODE_ENV=production" \
--name konga \
pantsel/konga
免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://yundeesoft.com/23170.html