2020-01-22 16:19:01 +08:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
#
|
|
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
# contributor license agreements. See the NOTICE file distributed with
|
|
|
|
# this work for additional information regarding copyright ownership.
|
|
|
|
# The ASF licenses this file to You under the Apache License, Version 2.0
|
|
|
|
# (the "License"); you may not use this file except in compliance with
|
|
|
|
# the License. You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
#
|
|
|
|
|
|
|
|
set -ex
|
|
|
|
|
|
|
|
export_or_prefix() {
|
|
|
|
export OPENRESTY_PREFIX="/usr/local/openresty-debug"
|
|
|
|
}
|
|
|
|
|
|
|
|
do_install() {
|
|
|
|
wget -qO - https://openresty.org/package/pubkey.gpg | sudo apt-key add -
|
|
|
|
sudo apt-get -y update --fix-missing
|
|
|
|
sudo apt-get -y install software-properties-common
|
|
|
|
sudo add-apt-repository -y "deb http://openresty.org/package/ubuntu $(lsb_release -sc) main"
|
|
|
|
sudo add-apt-repository -y ppa:longsleep/golang-backports
|
|
|
|
|
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install openresty-debug
|
|
|
|
}
|
|
|
|
|
|
|
|
script() {
|
|
|
|
export_or_prefix
|
|
|
|
export PATH=$OPENRESTY_PREFIX/nginx/sbin:$OPENRESTY_PREFIX/luajit/bin:$OPENRESTY_PREFIX/bin:$PATH
|
|
|
|
openresty -V
|
|
|
|
sudo service etcd start
|
|
|
|
|
2020-04-13 09:54:07 +08:00
|
|
|
sudo rm -rf /usr/local/apisix
|
|
|
|
|
2020-03-07 14:59:18 +08:00
|
|
|
# install APISIX with local version
|
|
|
|
sudo luarocks install rockspec/apisix-master-0.rockspec --only-deps
|
|
|
|
sudo luarocks make rockspec/apisix-master-0.rockspec
|
2020-01-22 16:19:01 +08:00
|
|
|
|
2020-03-07 14:59:18 +08:00
|
|
|
# show install file
|
|
|
|
luarocks show apisix
|
2020-01-22 16:19:01 +08:00
|
|
|
|
2020-02-09 17:19:45 +08:00
|
|
|
sudo PATH=$PATH apisix help
|
|
|
|
sudo PATH=$PATH apisix init
|
|
|
|
sudo PATH=$PATH apisix start
|
|
|
|
sudo PATH=$PATH apisix stop
|
|
|
|
|
2020-02-18 12:40:15 +08:00
|
|
|
# apisix cli test
|
|
|
|
sudo PATH=$PATH .travis/apisix_cli_test.sh
|
2020-01-22 16:19:01 +08:00
|
|
|
|
2020-03-27 07:34:08 +08:00
|
|
|
cat /usr/local/apisix/logs/error.log | grep '\[error\]' > /tmp/error.log | true
|
|
|
|
if [ -s /tmp/error.log ]; then
|
|
|
|
echo "=====found error log====="
|
|
|
|
cat /usr/local/apisix/logs/error.log
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2020-04-13 09:54:07 +08:00
|
|
|
sudo luarocks purge --tree=/usr/local
|
|
|
|
sudo rm -rf /usr/local/apisix
|
2020-01-22 16:19:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
case_opt=$1
|
|
|
|
shift
|
|
|
|
|
|
|
|
case ${case_opt} in
|
|
|
|
do_install)
|
|
|
|
do_install "$@"
|
|
|
|
;;
|
|
|
|
script)
|
|
|
|
script "$@"
|
|
|
|
;;
|
|
|
|
esac
|