mirror of https://github.com/midoks/mdserver-web
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.4 KiB
50 lines
1.4 KiB
#!/bin/bash
|
|
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin:/opt/homebrew/bin
|
|
export PATH
|
|
|
|
curPath=`pwd`
|
|
rootPath=$(dirname "$curPath")
|
|
rootPath=$(dirname "$rootPath")
|
|
rootPath=$(dirname "$rootPath")
|
|
serverPath=$(dirname "$rootPath")
|
|
|
|
install_tmp=${rootPath}/tmp/mw_install.pl
|
|
VERSION=6.0.9
|
|
SYS_ARCH=`arch`
|
|
|
|
SYS_VERSION_ID=`cat /etc/*-release | grep VERSION_ID | awk -F = '{print $2}' | awk -F "\"" '{print $2}' | awk -F . '{print $1}'`
|
|
|
|
SYS_NAME="15"
|
|
if [ "$SYS_VERSION_ID" -gt "15" ];then
|
|
SYS_NAME="15"
|
|
fi
|
|
|
|
if [ "$SYS_NAME" -lt "12" ];then
|
|
SYS_NAME="12"
|
|
fi
|
|
|
|
# https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-suse15-4.4.23.tgz
|
|
# https://fastdl.mongodb.org/linux/mongodb-linux-x86_64-suse12-4.4.23.tgz
|
|
|
|
MG_DIR=$serverPath/source/mongodb
|
|
mkdir -p $MG_DIR
|
|
|
|
FILE_NAME=mongodb-linux-${SYS_ARCH}-suse${SYS_NAME}-${VERSION}
|
|
FILE_NAME_TGZ=${FILE_NAME}.tgz
|
|
|
|
if [ ! -f $MG_DIR/${FILE_NAME_TGZ} ]; then
|
|
wget --no-check-certificate -O $MG_DIR/${FILE_NAME_TGZ} https://fastdl.mongodb.org/linux/${FILE_NAME_TGZ}
|
|
echo "wget --no-check-certificate -O $MG_DIR/${FILE_NAME_TGZ} https://fastdl.mongodb.org/linux/${FILE_NAME_TGZ}"
|
|
fi
|
|
|
|
if [ ! -d $MG_DIR/${FILE_NAME} ];then
|
|
cd $MG_DIR && tar -zxvf ${FILE_NAME_TGZ}
|
|
fi
|
|
|
|
if [ ! -d $serverPath/mongodb/bin ];then
|
|
mkdir -p $serverPath/mongodb
|
|
cd $MG_DIR/${FILE_NAME} && cp -rf ./bin $serverPath/mongodb
|
|
fi
|
|
|
|
cd ${MG_DIR} && rm -rf ${MG_DIR}/${FILE_NAME}
|
|
|
|
|