Simple Linux Panel
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.
mdserver-web/plugins/phpmyadmin/install.sh

82 lines
2.0 KiB

6 years ago
#!/bin/bash
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin
export PATH
curPath=`pwd`
rootPath=$(dirname "$curPath")
rootPath=$(dirname "$rootPath")
serverPath=$(dirname "$rootPath")
6 years ago
install_tmp=${rootPath}/tmp/mw_install.pl
6 years ago
3 years ago
sysName=`uname`
echo "use system: ${sysName}"
if [ ${sysName} == "Darwin" ]; then
OSNAME='macos'
elif grep -Eqi "CentOS" /etc/issue || grep -Eq "CentOS" /etc/*-release; then
OSNAME='centos'
elif grep -Eqi "Fedora" /etc/issue || grep -Eq "Fedora" /etc/*-release; then
OSNAME='fedora'
elif grep -Eqi "Debian" /etc/issue || grep -Eq "Debian" /etc/*-release; then
OSNAME='debian'
elif grep -Eqi "Ubuntu" /etc/issue || grep -Eq "Ubuntu" /etc/*-release; then
OSNAME='ubuntu'
elif grep -Eqi "Raspbian" /etc/issue || grep -Eq "Raspbian" /etc/*-release; then
OSNAME='raspbian'
else
OSNAME='unknow'
fi
6 years ago
Install_phpmyadmin()
{
mkdir -p ${serverPath}/phpmyadmin
mkdir -p ${serverPath}/source/phpmyadmin
VER=$1
FILE=phpMyAdmin-${VER}-all-languages.tar.gz
FDIR=phpMyAdmin-${VER}-all-languages
DOWNLOAD=https://files.phpmyadmin.net/phpMyAdmin/${VER}/$FILE
if [ ! -f $serverPath/source/phpmyadmin/$FILE ];then
wget -O $serverPath/source/phpmyadmin/$FILE $DOWNLOAD
fi
if [ ! -d $serverPath/source/phpmyadmin/$FDIR ];then
cd $serverPath/source/phpmyadmin && tar zxvf $FILE
fi
cp -r $serverPath/source/phpmyadmin/$FDIR $serverPath/phpmyadmin/
cd $serverPath/phpmyadmin/ && mv $FDIR phpmyadmin
mkdir -p $serverPath/phpmyadmin/tmp
chown -R www:www $serverPath/phpmyadmin/tmp
3 years ago
if [ "$OSNAME" != 'macosx' ];then
3 years ago
chown -R www:www $serverPath/phpmyadmin/tmp
fi
6 years ago
echo "${1}" > ${serverPath}/phpmyadmin/version.pl
echo '安装完成' > $install_tmp
3 years ago
cd ${rootPath} && python3 ${rootPath}/plugins/phpmyadmin/index.py start
6 years ago
}
Uninstall_phpmyadmin()
{
3 years ago
cd ${rootPath} && python3 ${rootPath}/plugins/phpmyadmin/index.py stop
6 years ago
rm -rf ${serverPath}/phpmyadmin
echo '卸载完成' > $install_tmp
}
action=$1
if [ "${1}" == 'install' ];then
Install_phpmyadmin $2
else
Uninstall_phpmyadmin $2
fi