mirror of
https://github.com/minio/minio.git
synced 2025-02-06 11:18:08 -05:00
313a3a286a
Simplify the cmd/http package overall by removing custom plain text v/s tls connection detection, by migrating to go1.12 and choose minimum version to be go1.12 Also remove all the vendored deps, since they are not useful anymore.
69 lines
1.8 KiB
Bash
Executable File
69 lines
1.8 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Minio Cloud Storage, (C) 2019 Minio, Inc.
|
|
#
|
|
# Licensed 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 -e
|
|
set -E
|
|
set -o pipefail
|
|
|
|
function start_minio_server()
|
|
{
|
|
MINIO_ACCESS_KEY=minio MINIO_SECRET_KEY=minio123 \
|
|
minio --quiet --json server data --address 127.0.0.1:24242 > server.log 2>&1 &
|
|
server_pid=$!
|
|
sleep 3
|
|
|
|
echo "$server_pid"
|
|
}
|
|
|
|
function start_minio_gateway_s3()
|
|
{
|
|
MINIO_ACCESS_KEY=minio MINIO_SECRET_KEY=minio123 \
|
|
minio --quiet --json gateway s3 http://127.0.0.1:24242 \
|
|
--address 127.0.0.1:24240 > gateway.log 2>&1 &
|
|
gw_pid=$!
|
|
sleep 3
|
|
|
|
echo "$gw_pid"
|
|
}
|
|
|
|
function main()
|
|
{
|
|
sr_pid="$(start_minio_server)"
|
|
gw_pid="$(start_minio_gateway_s3)"
|
|
|
|
SERVER_ENDPOINT=127.0.0.1:24240 ENABLE_HTTPS=0 ACCESS_KEY=minio \
|
|
SECRET_KEY=minio123 MINT_MODE="full" /mint/entrypoint.sh aws-sdk-go \
|
|
aws-sdk-java aws-sdk-php aws-sdk-ruby awscli healthcheck minio-dotnet \
|
|
minio-go minio-java minio-js minio-py
|
|
rv=$?
|
|
|
|
kill "$sr_pid"
|
|
kill "$gw_pid"
|
|
sleep 3
|
|
|
|
if [ "$rv" -ne 0 ]; then
|
|
echo "=========== Gateway ==========="
|
|
cat "gateway.log"
|
|
echo "=========== Server ==========="
|
|
cat "server.log"
|
|
fi
|
|
|
|
rm -f gateway.log server.log
|
|
}
|
|
|
|
main "$@"
|