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.
131 lines
3.5 KiB
131 lines
3.5 KiB
#!/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")
|
|
sourcePath=${serverPath}/source
|
|
sysName=`uname`
|
|
install_tmp=${rootPath}/tmp/mw_install.pl
|
|
|
|
function version_gt() { test "$(echo "$@" | tr " " "\n" | sort -V | head -n 1)" != "$1"; }
|
|
function version_le() { test "$(echo "$@" | tr " " "\n" | sort -V | head -n 1)" == "$1"; }
|
|
function version_lt() { test "$(echo "$@" | tr " " "\n" | sort -rV | head -n 1)" != "$1"; }
|
|
function version_ge() { test "$(echo "$@" | tr " " "\n" | sort -rV | head -n 1)" == "$1"; }
|
|
|
|
|
|
version=8.1.11
|
|
PHP_VER=81
|
|
Install_php()
|
|
{
|
|
#------------------------ install start ------------------------------------#
|
|
echo "安装php-${version} ..." > $install_tmp
|
|
mkdir -p $sourcePath/php
|
|
mkdir -p $serverPath/php
|
|
|
|
cd ${rootPath}/plugins/php/lib && /bin/bash freetype_new.sh
|
|
cd ${rootPath}/plugins/php/lib && /bin/bash zlib.sh
|
|
|
|
|
|
if [ ! -d $sourcePath/php/php${PHP_VER} ];then
|
|
|
|
if [ ! -f $sourcePath/php/php-${version}.tar.xz ];then
|
|
wget --no-check-certificate -O $sourcePath/php/php-${version}.tar.xz https://www.php.net/distributions/php-${version}.tar.xz
|
|
fi
|
|
|
|
cd $sourcePath/php && tar -Jxf $sourcePath/php/php-${version}.tar.xz
|
|
mv $sourcePath/php/php-${version} $sourcePath/php/php${PHP_VER}
|
|
fi
|
|
|
|
cd $sourcePath/php/php${PHP_VER}
|
|
|
|
OPTIONS=''
|
|
if [ $sysName == 'Darwin' ]; then
|
|
OPTIONS='--without-iconv'
|
|
OPTIONS="${OPTIONS} --with-curl=${serverPath}/lib/curl"
|
|
export PATH="/usr/local/opt/bison/bin:$PATH"
|
|
export LDFLAGS="-L/usr/local/opt/bison/lib"
|
|
export PKG_CONFIG_PATH="/usr/local/opt/libxml2/lib/pkgconfig"
|
|
export LDFLAGS="-L/usr/local/opt/libxml2/lib"
|
|
else
|
|
OPTIONS='--without-iconv'
|
|
OPTIONS="${OPTIONS} --with-curl"
|
|
fi
|
|
|
|
ZIP_OPTION='--with-zip'
|
|
libzip_version=`pkg-config libzip --modversion`
|
|
if version_lt "$libzip_version" "0.11.0" ;then
|
|
export PKG_CONFIG_PATH=$serverPath/lib/libzip/lib/pkgconfig
|
|
ZIP_OPTION="--with-zip=$serverPath/lib/libzip"
|
|
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 "1" ];then
|
|
cpuCore=`echo "$cpuCore" | awk '{printf("%.f",($1)*0.8)}'`
|
|
fi
|
|
# ----- cpu end ------
|
|
|
|
echo "$sourcePath/php/php${PHP_VER}"
|
|
|
|
if [ ! -d $serverPath/php/${PHP_VER} ];then
|
|
cd $sourcePath/php/php${PHP_VER}
|
|
./buildconf --force
|
|
./configure \
|
|
--prefix=$serverPath/php/${PHP_VER} \
|
|
--exec-prefix=$serverPath/php/${PHP_VER} \
|
|
--with-config-file-path=$serverPath/php/${PHP_VER}/etc \
|
|
--enable-mysqlnd \
|
|
--with-mysqli=mysqlnd \
|
|
--with-pdo-mysql=mysqlnd \
|
|
--with-zlib-dir=$serverPath/lib/zlib \
|
|
$ZIP_OPTION \
|
|
--enable-ftp \
|
|
--enable-mbstring \
|
|
--enable-sockets \
|
|
--enable-simplexml \
|
|
--enable-soap \
|
|
--enable-posix \
|
|
--enable-sysvmsg \
|
|
--enable-sysvsem \
|
|
--enable-sysvshm \
|
|
--disable-intl \
|
|
--disable-fileinfo \
|
|
$OPTIONS \
|
|
--enable-fpm
|
|
make clean && make -j${cpuCore} && make install && make clean
|
|
fi
|
|
#------------------------ install end ------------------------------------#
|
|
}
|
|
|
|
Uninstall_php()
|
|
{
|
|
$serverPath/php/init.d/php${PHP_VER} stop
|
|
rm -rf $serverPath/php/${PHP_VER}
|
|
echo "卸载php-${version}..." > $install_tmp
|
|
}
|
|
|
|
action=${1}
|
|
if [ "${1}" == 'install' ];then
|
|
Install_php
|
|
else
|
|
Uninstall_php
|
|
fi
|
|
|