apache apisix 及dashboard centos 7 完整安装

安装依赖 (CentOS 7)

# 安装 epel, `luarocks` 需要它
wget http://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
sudo rpm -ivh epel-release-latest-7.noarch.rpm

# 添加 OpenResty 源
sudo yum install yum-utils
sudo yum-config-manager --add-repo https://openresty.org/package/centos/openresty.repo

# 安装 OpenResty, etcd 和 编译工具
sudo yum install -y etcd openresty curl git gcc luarocks lua-devel

# 开启 etcd server
sudo service etcd start

安装apisix (CentOS 7)

安装apisix  可以选用 rpm包安装

  • RPM 包(只适用于 CentOS 7)

    • 安装依赖:OpenResty 和 etcd,参考依赖安装文档
    • 安装 APISIX:
    sudo yum install -y https://github.com/apache/apisix/releases/download/1.5/apisix-1.5-0.el7.noarch.rpm
    • 检查 APISIX 的版本号:
      apisix version
    • 启动 APISIX (请先确保已经启动了 etcd,并打开了 v2 协议):
      apisix start

注意:Apache APISIX 现在还不支持 etcd 的 v3 协议,所以启动 etcd 时需要开启 v2 协议的支持。 我们正在做 etcd v3 协议的支持。

etcd --enable-v2=true &

 

安装 apisix-dashboard (CentOS 7)

 

 

你可能感兴趣的:(API网关)