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.
124 lines
3.3 KiB
124 lines
3.3 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")
|
|
serverPath=$(dirname "$rootPath")
|
|
|
|
sysName=`uname`
|
|
sysArch=`arch`
|
|
echo "use system: ${sysName}"
|
|
|
|
# https://cn.pingcap.com/product-community/
|
|
# https://docs.pingcap.com/zh/tidb/stable/quick-start-with-tidb
|
|
|
|
# cd /Users/midoks/Desktop/mwdev/server/mdserver-web/plugins/tidb && bash install.sh install v7.5.1
|
|
# mw update_dev && cd /www/server/mdserver-web/plugins/tidb && bash install.sh install v7.5.1
|
|
# python3 /www/server/mdserver-web/plugins/tidb/index.py start
|
|
# cd /www/server/source/tidb/tidb-community-server-v7.5.1-linux-amd64 && ./local_install.sh
|
|
# cd /www/server/tidb/mirror && ./local_install.sh
|
|
# source /root/.bashrc
|
|
|
|
# ssh 192.168.4.1 -l root
|
|
# useradd -d /home/tidb1 tidb1 && passwd tidb1
|
|
|
|
# tidb ssh
|
|
# /root/.tiup/storage/cluster/clusters/tidb/ssh
|
|
|
|
# ssh-copy-id -p 2022 root@154.21.203.138
|
|
# ssh -p 2022 root@154.21.203.138 -i /root/.tiup/storage/cluster/clusters/tidb/ssh/id_rsa
|
|
|
|
# grafana
|
|
# http://154.21.203.138:3000
|
|
|
|
# grafana
|
|
# http://154.21.203.138:3000
|
|
|
|
# rm -rf /root/.tiup
|
|
# tiup cluster deploy tidb v7.5.1 /www/server/tidb/tidb.yaml --user root -p
|
|
# tiup cluster deploy mw v7.5.1 /www/server/tidb/tidb.yaml --user root -p
|
|
|
|
# tiup cluster clean tidb --all
|
|
# tiup cluster display tidb
|
|
# tiup cluster destroy tidb
|
|
|
|
# tiup cluster clean tidb --all --ignore-role prometheus grafana
|
|
|
|
|
|
|
|
install_tmp=${rootPath}/tmp/mw_install.pl
|
|
VERSION=$2
|
|
TIDB_ARCH=arm64
|
|
if [ "$sysArch" == "x86_64" ];then
|
|
TIDB_ARCH=amd64
|
|
fi
|
|
|
|
if [ "$sysArch" == "aarch64" ];then
|
|
TIDB_ARCH=arm64
|
|
fi
|
|
|
|
Install_App()
|
|
{
|
|
echo '正在安装脚本文件...' > $install_tmp
|
|
mkdir -p $serverPath/source
|
|
mkdir -p $serverPath/source/tidb
|
|
|
|
tidb_name=tidb-community-server-${VERSION}-linux-${TIDB_ARCH}
|
|
tidb_toolkit_name=tidb-community-toolkit-${VERSION}-linux-${TIDB_ARCH}
|
|
tgz_name=${tidb_name}.tar.gz
|
|
tgz_toolkit_name=${tidb_toolkit_name}.tar.gz
|
|
|
|
|
|
if [ ! -f $serverPath/source/tidb/${tgz_name} ];then
|
|
wget -O $serverPath/source/tidb/${tgz_name} https://download.pingcap.org/${tgz_name}
|
|
fi
|
|
|
|
|
|
if [ ! -d $serverPath/source/tidb/${tidb_name} ];then
|
|
cd $serverPath/source/tidb && tar -zxvf $serverPath/source/tidb/${tgz_name}
|
|
fi
|
|
|
|
if [ ! -f $serverPath/source/tidb/${tgz_toolkit_name} ];then
|
|
wget -O $serverPath/source/tidb/${tgz_toolkit_name} https://download.pingcap.org/${tgz_toolkit_name}
|
|
fi
|
|
|
|
if [ ! -d $serverPath/source/tidb/${tgz_toolkit_name} ];then
|
|
cd $serverPath/source/tidb && tar -zxvf $serverPath/source/tidb/${tgz_toolkit_name}
|
|
fi
|
|
|
|
if [ ! -d $serverPath/tidb/mirror ];then
|
|
mkdir -p $serverPath/tidb/mirror
|
|
cp -rf $serverPath/source/tidb/${tidb_name}/* $serverPath/tidb/mirror
|
|
fi
|
|
|
|
cd $serverPath/tidb/mirror && ./local_install.sh
|
|
|
|
if [ -d $serverPath/tidb ];then
|
|
echo "${VERSION}" > $serverPath/tidb/version.pl
|
|
|
|
cd ${rootPath} && python3 ${rootPath}/plugins/tidb/index.py start
|
|
# cd ${rootPath} && python3 ${rootPath}/plugins/tidb/index.py initd_install
|
|
echo '安装完成'
|
|
else
|
|
echo '安装失败!'
|
|
fi
|
|
|
|
if [ -d $serverPath/source/redis-${VERSION} ];then
|
|
rm -rf $serverPath/source/redis-${VERSION}
|
|
fi
|
|
}
|
|
|
|
Uninstall_App()
|
|
{
|
|
rm -rf $serverPath/tidb
|
|
echo "卸载TiDB"
|
|
}
|
|
|
|
action=$1
|
|
if [ "${1}" == 'install' ];then
|
|
Install_App
|
|
else
|
|
Uninstall_App
|
|
fi
|
|
|