2023年12月

wget https://npm.taobao.org/mirrors/node/v14.17.6/node-v14.17.6-linux-x64.tar.xz
tar -xJvf ./node-v14.17.6-linux-x64.tar.xz
mkdir  -pv /alidata/server/nodejs/nodejs-14
cp -rf ./node-v14.17.6-linux-x64/*  /alidata/server/nodejs/nodejs-14
sudo ln -sf /alidata/server/nodejs/nodejs-14/bin/node /usr/local/bin/
sudo ln -sf /alidata/server/nodejs/nodejs-14/bin/npm /usr/local/bin/
sudo ln -sf /alidata/server/nodejs/nodejs-14/bin/npx /usr/local/bin/
node -v

apisix版本:2.13.0-alpine
apisix-dashboard版本:2.10.1-alpine
etcd版本:3.4.16-debian-10-r14

https://registry.hub.docker.com/r/apache/apisix
https://registry.hub.docker.com/r/apache/apisix-dashboard

1)部署etcd

docker run -d --name etcd \
        --net host \
        -p 2379:2379 \
        -p 2380:2380 \
        -e ALLOW_NONE_AUTHENTICATION=yes \
        -e ETCD_ADVERTISE_CLIENT_URLS=http://127.0.0.1:2379 \
        bitnami/etcd:3.4.16-debian-10-r14

2)部署apisix

mkdir -p /opt/apisix/{conf,logs}
mkdir -p /opt/apisix-dashboard/{conf,logs}
touch /opt/apisix/conf/config.yaml
touch /opt/apisix-dashboard/conf/config.yaml

docker run -d --name apisix \
        --net host \
        -p 9080:9080 \
        -p 9180:9180 \
        -v /opt/apisix/conf/config.yaml:/usr/local/apisix/conf/config.yaml \
        -v /opt/apisix/logs:/tmp/logs \
        apache/apisix:2.13.0-alpine

3)部署apisix-dashboard

docker run -d --name apisix-dashboard \
        --net host \
        -p 9000:9000 \
        -v /opt/apisix-dashboard/conf/conf.yaml:/usr/local/apisix-dashboard/conf/conf.yaml \
        -v /opt/apisix-dashboard/logs:/tmp/logs \
        apache/apisix-dashboard:2.10.1-alpine

安装Apisix

安装文档:https://apisix.apache.org/zh/docs/apisix/installation-guide/

如果当前系统没有安装 OpenResty,请使用以下命令来安装 OpenResty 和 APISIX 仓库:

sudo yum install -y https://repos.apiseven.com/packages/centos/apache-apisix-repo-1.0-1.noarch.rpm

如果已安装 OpenResty 的官方 RPM 仓库,请使用以下命令安装 APISIX 的 RPM 仓库:

sudo yum-config-manager --add-repo https://repos.apiseven.com/packages/centos/apache-apisix.repo

查询可安装的版本

yum search apisix --showduplicates

安装

yum install -y apisix-2.15.3

安装后的目录是/usr/local/apisix和/usr/local/openresty

启动apisix

systemctl daemon-reload
systemctl enable apisix
systemctl start apisix
# apisix网关地址:http://x.x.x.x:9080
# apisix api地址:http://x.x.x.x:9180/apisix/admin

安装Apisix-Dashboard

安装到/usr/local/apisix/dashboard目录
sudo yum install -y https://github.com/apache/apisix-dashboard/releases/download/v3.0.1/apisix-dashboard-3.0.1-0.el7.x86_64.rpm
systemctl enable apisix-dashboard
systemctl start apisix-dashboard

apisix-dashboard地址:http://x.x.x.x:9000
systemctl restart apisix-dashboard

1)安装依赖

yum install -y make cmake gcc gcc-c++ autoconf automake libpng-devel libjpeg-devel zlib libxml2-devel ncurses-devel bison libtool-ltdl-devel libiconv libmcrypt mhash mcrypt pcre-devel openssl-devel freetype-devel libcurl-devel lua-devel readline-devel curl wget

2)源码构建

wget https://openresty.org/download/openresty-1.21.4.1.tar.gz
tar -xzvf openresty-1.21.4.1.tar.gz
cd openresty-1.21.4.1/
./configure --with-pcre-jit --with-stream --with-stream_ssl_module --with-stream_ssl_preread_module --with-http_v2_module --without-mail_pop3_module --without-mail_imap_module --without-mail_smtp_module --with-http_stub_status_module --with-http_realip_module --with-http_addition_module --with-http_auth_request_module --with-http_secure_link_module --with-http_random_index_module --with-http_gzip_static_module --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module --with-threads --with-compat --with-stream --with-http_ssl_module
sudo make
sudo make install

3)修改nginx.conf

user  nobody;
worker_processes  auto;
worker_rlimit_nofile 65535;
 
error_log  /var/log/nginx/error.log;
#error_log  logs/error.log  notice;
#error_log  logs/error.log  info;
 
pid        /run/nginx.pid;
 
events {
    worker_connections  65535;
    multi_accept on;
    use epoll;
}
 
http {
    include       mime.types;
    default_type  application/octet-stream;
    server_tokens off;
 
    server_names_hash_max_size 1024;
#    server_names_hash_bucket_size 128;
 
   set_real_ip_from 100.125.0.0/16;
    real_ip_header X-Forwarded-For;
 
    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '
    #                  '$status $body_bytes_sent "$http_referer" '
    #                  '"$http_user_agent" "$http_x_forwarded_for"';
 
    log_format  main    '$remote_addr - $remote_user [$time_local] "$request" '
            '$status $body_bytes_sent "$http_referer" '
            '"$http_user_agent" "$http_x_forwarded_for"';
 
    access_log  /var/log/nginx/access.log  main;
 
    sendfile    on;
    tcp_nopush  on;
    tcp_nodelay on;
    types_hash_max_size 4096;
 
    #keepalive_timeout  0;
    keepalive_timeout  65;
 
    gzip  on;
#    gzip_static on;
    gzip_min_length 1k;
    gzip_vary on;
    gzip_comp_level 6;
    gzip_buffers 16 64k;
    gzip_http_version 1.1;
    gzip_types text/plain text/css application/json application/javascript application/xml application/xml+rss text/javascript application/x-javascript;
 
    include /etc/nginx/conf.d/*.conf;
 
    server {
        listen       80;
        server_name  localhost;
 
        #charset koi8-r;
 
        #access_log  logs/host.access.log  main;
 
        location / {
            root   html;
            index  index.html index.htm;
        }
 
        error_page   500 502 503 504  /50x.html;
        location = /50x.html {
            root   html;
        }
    }
}