这是官方的教程
Install Kong
Use the Homebrew package manager to add Kong as a tap and install it:
$ brew tap kong/kong
$ brew install kong
Prepare your database
Configure Kong so it can connect to your database. Kong supports both PostgreSQL 9.5+ and Cassandra 3.x.x as its datastore.
If you are using Postgres, please provision a database and a user before starting Kong, ie:
CREATE USER kong; CREATE DATABASE kong OWNER kong;
Now, run the Kong migrations:
$ kong migrations up [-c /path/to/kong.conf]
Note: migrations should never be run concurrently; only one Kong nodes should be performing migrations at a time.
Start Kong
$ kong start [-c /path/to/kong.conf]
我在 kong start 的时候时候报错,
Error: /usr/local/share/lua/5.1/kong/cmd/start.lua:28: nginx configuration is invalid (exit code 1):
nginx: the configuration file /usr/local/opt/kong/nginx.conf syntax is ok
nginx: [error] init_by_lua error: /usr/local/share/lua/5.1/kong.lua:145: no file at: /usr/local/opt/kong/.kong_env
stack traceback:
[C]: in function 'assert'
/usr/local/share/lua/5.1/kong.lua:145: in function 'init'
init_by_lua:3: in main chunk
nginx: configuration file /usr/local/opt/kong/nginx.conf test failed
一切都是安装教程来了 这是 NGINX 哪里出错了吗,
1
neoblackcap 2018-09-14 15:17:10 +08:00
nginx 配置有问题,一般我都是直接 docker 启动
|
2
dany813 OP @neoblackcap 我刚才也是用 docker 才弄好,还是 docker 好用啊
|