mirror of
https://github.com/acepanel/panel.git
synced 2026-02-04 06:40:59 +08:00
155 lines
5.4 KiB
Bash
155 lines
5.4 KiB
Bash
#!/bin/bash
|
||
export PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:$PATH
|
||
|
||
: '
|
||
Copyright (C) 2022 - now HaoZi Technology Co., Ltd.
|
||
|
||
This program is free software: you can redistribute it and/or modify
|
||
it under the terms of the GNU Affero General Public License as published
|
||
by the Free Software Foundation, either version 3 of the License, or
|
||
(at your option) any later version.
|
||
|
||
This program is distributed in the hope that it will be useful,
|
||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
GNU Affero General Public License for more details.
|
||
|
||
You should have received a copy of the GNU Affero General Public License
|
||
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||
'
|
||
|
||
HR="+----------------------------------------------------"
|
||
ARCH=$(uname -m)
|
||
memTotal=$(LC_ALL=C free -m | grep Mem | awk '{print $2}')
|
||
OS=$(source /etc/os-release && { [[ "$ID" == "debian" ]] && echo "debian"; } || { [[ "$ID" == "centos" ]] || [[ "$ID" == "rhel" ]] || [[ "$ID" == "rocky" ]] || [[ "$ID" == "almalinux" ]] && echo "centos"; } || echo "unknown")
|
||
downloadUrl="https://jihulab.com/haozi-team/download/-/raw/main/panel/mysql"
|
||
setupPath="/www"
|
||
mysqlPath="${setupPath}/server/mysql"
|
||
mysqlVersion=""
|
||
mysqlPassword=$(cat /dev/urandom | head -n 16 | md5sum | head -c 16)
|
||
cpuCore=$(cat /proc/cpuinfo | grep "processor" | wc -l)
|
||
|
||
if [[ "${1}" == "80" ]]; then
|
||
mysqlVersion="8.0.34"
|
||
elif [[ "${1}" == "57" ]]; then
|
||
mysqlVersion="5.7.43"
|
||
else
|
||
echo -e $HR
|
||
echo "错误:不支持的 MySQL 版本!"
|
||
exit 1
|
||
fi
|
||
|
||
if [[ "${memTotal}" -lt "4096" ]] && [[ "${1}" == "80" ]]; then
|
||
echo -e $HR
|
||
echo "错误:这点内存(${memTotal}M)还想装 MySQL 8.0?洗洗睡吧!"
|
||
exit 1
|
||
fi
|
||
|
||
# 安装依赖
|
||
if [ "${OS}" == "centos" ]; then
|
||
dnf makecache -y
|
||
dnf groupinstall "Development Tools" -y
|
||
dnf install cmake bison ncurses-devel libtirpc-devel openssl-devel pkg-config openldap-devel libudev-devel cyrus-sasl-devel patchelf rpcgen rpcsvc-proto-devel -y
|
||
dnf install gcc-toolset-12-gcc gcc-toolset-12-gcc-c++ gcc-toolset-12-binutils gcc-toolset-12-annobin-annocheck gcc-toolset-12-annobin-plugin-gcc -y
|
||
elif [ "${OS}" == "debian" ]; then
|
||
apt-get update
|
||
apt-get install build-essential cmake bison libncurses5-dev libtirpc-dev libssl-dev pkg-config libldap2-dev libudev-dev libsasl2-dev patchelf -y
|
||
else
|
||
echo -e $HR
|
||
echo "错误:耗子Linux面板不支持该系统"
|
||
exit 1
|
||
fi
|
||
|
||
mysqlUserCheck=$(cat /etc/passwd | grep mysql)
|
||
if [ "${mysqlUserCheck}" == "" ]; then
|
||
groupadd mysql
|
||
useradd -s /sbin/nologin -g mysql mysql
|
||
fi
|
||
|
||
# 准备目录
|
||
cd ${mysqlPath}
|
||
|
||
# 下载源码
|
||
wget -T 120 -t 3 -O ${mysqlPath}/mysql-${mysqlVersion}.tar.gz ${downloadUrl}/mysql-boost-${mysqlVersion}.tar.gz
|
||
wget -T 20 -t 3 -O ${mysqlPath}/mysql-${mysqlVersion}.tar.gz.checksum.txt ${downloadUrl}/mysql-boost-${mysqlVersion}.tar.gz.checksum.txt
|
||
|
||
if ! sha256sum --status -c mysql-${mysqlVersion}.tar.gz.checksum.txt; then
|
||
echo -e $HR
|
||
echo "错误:MySQL 源码 checksum 校验失败,文件可能被篡改或不完整,已终止操作"
|
||
exit 1
|
||
fi
|
||
|
||
tar -zxvf mysql-${mysqlVersion}.tar.gz
|
||
rm -f mysql-${mysqlVersion}.tar.gz
|
||
rm -f mysql-${mysqlVersion}.tar.gz.checksum.txt
|
||
mv mysql-${mysqlVersion} src
|
||
|
||
# openssl
|
||
wget -T 120 -t 3 -O ${mysqlPath}/openssl-1.1.1u.tar.gz ${downloadUrl}/openssl/openssl-1.1.1u.tar.gz
|
||
wget -T 20 -t 3 -O ${mysqlPath}/openssl-1.1.1u.tar.gz..checksum.txt ${downloadUrl}/openssl/openssl-1.1.1u.tar.gz..checksum.txt
|
||
|
||
if ! sha256sum --status -c openssl-1.1.1u.tar.gz..checksum.txt; then
|
||
echo -e $HR
|
||
echo "错误:OpenSSL 源码 checksum 校验失败,文件可能被篡改或不完整,已终止操作"
|
||
exit 1
|
||
fi
|
||
|
||
tar -zxvf openssl-1.1.1u.tar.gz
|
||
rm -f openssl-1.1.1u.tar.gz
|
||
rm -f openssl-1.1.1u.tar.gz..checksum.txt
|
||
mv openssl-1.1.1u openssl
|
||
cd openssl
|
||
./config --prefix=/usr/local/openssl-1.1 --openssldir=/usr/local/openssl-1.1
|
||
make -j$(nproc)
|
||
make install
|
||
echo "/usr/local/openssl-1.1/lib" > /etc/ld.so.conf.d/openssl-1.1.conf
|
||
ldconfig
|
||
cd ..
|
||
rm -rf openssl
|
||
|
||
# 编译
|
||
cd src
|
||
mkdir build
|
||
cd build
|
||
cmake .. -DCMAKE_INSTALL_PREFIX=${mysqlPath} -DMYSQL_DATADIR=${mysqlPath}/data -DSYSCONFDIR=${mysqlPath}/conf -DWITH_MYISAM_STORAGE_ENGINE=1 -DWITH_INNOBASE_STORAGE_ENGINE=1 -DWITH_PARTITION_STORAGE_ENGINE=1 -DWITH_ARCHIVE_STORAGE_ENGINE=1 -DWITH_FEDERATED_STORAGE_ENGINE=1 -DWITH_BLACKHOLE_STORAGE_ENGINE=1 -DWITH_EXTRA_CHARSETS=all -DEXTRA_CHARSETS=all -DDEFAULT_CHARSET=utf8mb4 -DDEFAULT_COLLATION=utf8mb4_general_ci -DENABLED_LOCAL_INFILE=1 -DWITH_SYSTEMD=1 -DSYSTEMD_PID_DIR=${mysqlPath} -DWITH_SSL=/usr/local/openssl-1.1 -DWITH_BOOST=../boost
|
||
if [ "$?" != "0" ]; then
|
||
echo -e $HR
|
||
echo "错误:MySQL 编译初始化失败,请截图错误信息寻求帮助。"
|
||
exit 1
|
||
fi
|
||
|
||
if [[ "${cpuCore}" -gt "1" ]]; then
|
||
make -j2
|
||
else
|
||
make
|
||
fi
|
||
if [ "$?" != "0" ]; then
|
||
echo -e $HR
|
||
echo "错误:MySQL 编译失败,请截图错误信息寻求帮助。"
|
||
exit 1
|
||
fi
|
||
|
||
# 停止已有服务
|
||
systemctl stop mysqld
|
||
|
||
# 安装
|
||
make install
|
||
if [ "$?" != "0" ]; then
|
||
echo -e $HR
|
||
echo "错误:MySQL 安装失败,请截图错误信息寻求帮助。"
|
||
exit 1
|
||
fi
|
||
|
||
# 设置权限
|
||
chown -R mysql:mysql ${mysqlPath}
|
||
chmod -R 755 ${mysqlPath}
|
||
chmod 644 ${mysqlPath}/conf/my.cnf
|
||
|
||
# 启动服务
|
||
systemctl daemon-reload
|
||
systemctl enable mysqld
|
||
|
||
panel writePlugin mysql${1} ${mysqlVersion}
|
||
|
||
echo -e "${HR}\nMySQL-${1} 升级完成\n${HR}"
|