1 Star 0 Fork 166

wulugeng / apisix

forked from iresty / Apache APISIX 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
install-dependencies.md 2.99 KB
一键复制 编辑 原始数据 按行查看 历史

Install Dependencies

CentOS 7

# install epel, `luarocks` need it.
wget http://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
sudo rpm -ivh epel-release-latest-7.noarch.rpm

# add openresty source
sudo yum install yum-utils
sudo yum-config-manager --add-repo https://openresty.org/package/centos/openresty.repo

# install openresty, etcd and some compilation tools
sudo yum install -y etcd openresty curl git automake autoconf \
    gcc pcre-devel libtool gcc-c++ luarocks cmake3 lua-devel

sudo ln -s /usr/bin/cmake3 /usr/bin/cmake

# start etcd server
sudo service etcd start

Ubuntu 18.04

# add openresty source
wget -qO - https://openresty.org/package/pubkey.gpg | sudo apt-key add -
sudo apt-get -y install software-properties-common
sudo add-apt-repository -y "deb http://openresty.org/package/ubuntu $(lsb_release -sc) main"
sudo apt-get update

# install openresty, etcd and some compilation tools
sudo apt-get install -y git etcd openresty curl luarocks\
    check libpcre3 libpcre3-dev libjemalloc-dev \
    libjemalloc1 build-essential libtool automake autoconf pkg-config cmake

# start etcd server
sudo service etcd start

Debian 9

# add openresty source
wget -qO - https://openresty.org/package/pubkey.gpg | sudo apt-key add -
sudo apt-get -y install software-properties-common
sudo add-apt-repository -y "deb http://openresty.org/package/debian $(lsb_release -sc) openresty"
sudo apt-get update

# install etcd
wget https://github.com/etcd-io/etcd/releases/download/v3.3.13/etcd-v3.3.13-linux-amd64.tar.gz
tar -xvf etcd-v3.3.13-linux-amd64.tar.gz && \
    cd etcd-v3.3.13-linux-amd64 && \
    sudo cp -a etcd etcdctl /usr/bin/

# install openresty and some compilation tools

sudo apt-get install -y git openresty cmake curl \
    check libpcre3 libpcre3-dev libjemalloc-dev \
    libjemalloc1 build-essential libtool automake autoconf pkg-config

install luarocks
(the version must > 3.0, --lua-dir was first introduced in the luarocks 3.0 release)

-$ wget https://luarocks.org/releases/luarocks-3.1.3.tar.gz -$ tar zxpf luarocks-3.1.3.tar.gz -$ cd luarocks-3.1.3


* Run `./configure`. (This will attempt to detect your installation of Lua. If you get any error messages, see the section "Customizing your settings", below.)
* Run `make build`.
* As superuser, run `make install`.
ln -s /usr/local/bin/luarocks /usr/bin/luarocks


# start etcd server
nohup etcd &

CentOS 6

TODO

Failed to compile rapidjson, and the compilation of libr3 relies on later versions of autoconf and pcre, but the CentOS 6 comes with a lower version, will support CentOS 6 later.

Mac OSX

# install openresty, etcd and some compilation tools
brew install autoconf automake check pkg-config pcre cmake libtool openresty/brew/openresty etcd luarocks

# start etcd server
brew services start etcd
Lua
1
https://gitee.com/wulugeng/apisix.git
git@gitee.com:wulugeng/apisix.git
wulugeng
apisix
apisix
master

搜索帮助