#!/bin/bash PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin:/opt/homebrew/bin export PATH #https://dev.mysql.com/downloads/mysql/5.5.html#downloads #https://dev.mysql.com/downloads/file/?id=480541 curPath=`pwd` rootPath=$(dirname "$curPath") rootPath=$(dirname "$rootPath") serverPath=$(dirname "$rootPath") sysName=`uname` install_tmp=${rootPath}/tmp/mw_install.pl mysqlDir=${serverPath}/source/mysql VERSION=5.5.62 Install_mysql() { mkdir -p ${mysqlDir} echo '正在安装脚本文件...' > $install_tmp if id mysql &> /dev/null ;then echo "mysql UID is `id -u www`" echo "mysql Shell is `grep "^www:" /etc/passwd |cut -d':' -f7 `" else groupadd mysql useradd -g mysql mysql fi if [ "$sysName" != "Darwin" ];then mkdir -p /var/log/mariadb touch /var/log/mariadb/mariadb.log fi # ----- cpu start ------ if [ -z "${cpuCore}" ]; then cpuCore="1" fi if [ -f /proc/cpuinfo ];then cpuCore=`cat /proc/cpuinfo | grep "processor" | wc -l` fi MEM_INFO=$(free -m|grep Mem|awk '{printf("%.f",($2)/1024)}') if [ "${cpuCore}" != "1" ] && [ "${MEM_INFO}" != "0" ];then if [ "${cpuCore}" -gt "${MEM_INFO}" ];then cpuCore="${MEM_INFO}" fi else cpuCore="1" fi if [ "$cpuCore" -gt "2" ];then cpuCore=`echo "$cpuCore" | awk '{printf("%.f",($1)*0.8)}'` else cpuCore="1" fi # ----- cpu end ------ if [ ! -f ${mysqlDir}/mysql-${VERSION}.tar.gz ];then wget --no-check-certificate -O ${mysqlDir}/mysql-${VERSION}.tar.gz --tries=3 https://dev.mysql.com/get/Downloads/MySQL-5.5/mysql-${VERSION}.tar.gz fi if [ ! -d ${mysqlDir}/mysql-${VERSION} ];then cd ${mysqlDir} && tar -zxvf ${mysqlDir}/mysql-${VERSION}.tar.gz fi WHERE_DIR_GCC=/usr/bin/gcc WHERE_DIR_GPP=/usr/bin/g++ if [ ! -f $WHERE_DIR_GCC ];then WHERE_DIR_GCC=`which gcc` fi if [ ! -f $WHERE_DIR_GPP ];then WHERE_DIR_GPP=`which g++` fi if [ ! -d $serverPath/mysql ];then cd ${mysqlDir}/mysql-5.5.62 && cmake \ -DCMAKE_INSTALL_PREFIX=$serverPath/mysql \ -DMYSQL_USER=mysql \ -DMYSQL_TCP_PORT=3306 \ -DMYSQL_UNIX_ADDR=/var/tmp/mysql.sock \ -DWITH_MYISAM_STORAGE_ENGINE=1 \ -DWITH_INNOBASE_STORAGE_ENGINE=1 \ -DWITH_MEMORY_STORAGE_ENGINE=1 \ -DENABLED_LOCAL_INFILE=1 \ -DWITH_PARTITION_STORAGE_ENGINE=1 \ -DEXTRA_CHARSETS=all \ -DDEFAULT_CHARSET=utf8mb4 \ -DDEFAULT_COLLATION=utf8mb4_general_ci \ -DCMAKE_C_COMPILER=$WHERE_DIR_GCC \ -DCMAKE_CXX_COMPILER=$WHERE_DIR_GPP make -j${cpuCore} && make install && make clean if [ -d $serverPath/mysql ];then rm -rf ${mysqlDir}/mysql-${VERSION} echo '5.5' > $serverPath/mysql/version.pl echo "${VERSION}安装完成" else # rm -rf ${mysqlDir}/mysql-5.5.62 echo "${VERSION}安装失败" echo 'install fail'>&2 exit 1 fi fi } Uninstall_mysql() { rm -rf $serverPath/mysql echo '卸载完成' > $install_tmp } action=$1 if [ "${1}" == "install" ];then Install_mysql else Uninstall_mysql fi