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/php/versions/56/install.sh

160 lines
4.2 KiB

7 years ago
#!/bin/bash
2 years ago
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin:/opt/homebrew/bin
7 years ago
export PATH
2 years ago
# cd /www/server/mdserver-web/plugins/php && /bin/bash install.sh install 56
7 years ago
curPath=`pwd`
rootPath=$(dirname "$curPath")
rootPath=$(dirname "$rootPath")
serverPath=$(dirname "$rootPath")
sourcePath=${serverPath}/source
6 years ago
sysName=`uname`
6 years ago
install_tmp=${rootPath}/tmp/mw_install.pl
2 years ago
SYS_ARCH=`arch`
4 years ago
version=5.6.40
6 years ago
PHP_VER=56
7 years ago
Install_php()
{
#------------------------ install start ------------------------------------#
3 years ago
echo "安装php-${version} ..." > $install_tmp
7 years ago
mkdir -p $sourcePath/php
mkdir -p $serverPath/php
3 years ago
cd ${rootPath}/plugins/php/lib && /bin/bash freetype_old.sh
cd ${rootPath}/plugins/php/lib && /bin/bash zlib.sh
6 years ago
if [ ! -d $sourcePath/php/php${PHP_VER} ];then
# ----------------------------------------------------------------------- #
# 中国优化安装
cn=$(curl -fsSL -m 10 -s http://ipinfo.io/json | grep "\"country\": \"CN\"")
LOCAL_ADDR=common
2 years ago
if [ ! -z "$cn" ] || [ "$?" == "0" ] ;then
LOCAL_ADDR=cn
fi
if [ "$LOCAL_ADDR" == "cn" ];then
if [ ! -f $sourcePath/php/php-${version}.tar.xz ];then
wget --no-check-certificate -O $sourcePath/php/php-${version}.tar.xz https://mirrors.sohu.com/php/php-${version}.tar.xz
fi
fi
# ----------------------------------------------------------------------- #
5 years ago
if [ ! -f $sourcePath/php/php-${version}.tar.xz ];then
4 years ago
wget --no-check-certificate -O $sourcePath/php/php-${version}.tar.xz https://museum.php.net/php5/php-${version}.tar.xz
5 years ago
fi
#检测文件是否损坏.
md5_file_ok=c7dde3afb16ce7b761abf2805125d372
if [ -f $sourcePath/php/php-${version}.tar.xz ];then
md5_file=`md5sum $sourcePath/php/php-${version}.tar.xz | awk '{print $1}'`
if [ "${md5_file}" != "${md5_file_ok}" ]; then
echo "PHP${version} 下载文件不完整,重新安装"
rm -rf $sourcePath/php/php-${version}.tar.xz
fi
fi
5 years ago
6 years ago
cd $sourcePath/php && tar -Jxf $sourcePath/php/php-${version}.tar.xz
mv $sourcePath/php/php-${version} $sourcePath/php/php${PHP_VER}
7 years ago
fi
6 years ago
OPTIONS=''
if [ $sysName == 'Darwin' ]; then
OPTIONS='--without-iconv'
6 years ago
OPTIONS="${OPTIONS} --with-freetype-dir=${serverPath}/lib/freetype"
6 years ago
OPTIONS="${OPTIONS} --with-curl=${serverPath}/lib/curl"
6 years ago
else
3 years ago
OPTIONS='--without-iconv'
# OPTIONS="--with-iconv=${serverPath}/lib/libiconv"
6 years ago
OPTIONS="${OPTIONS} --with-curl"
6 years ago
fi
7 years ago
3 years ago
IS_64BIT=`getconf LONG_BIT`
if [ "$IS_64BIT" == "64" ];then
OPTIONS="${OPTIONS} --with-libdir=lib64"
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
3 years ago
if [ "$cpuCore" -gt "2" ];then
cpuCore=`echo "$cpuCore" | awk '{printf("%.f",($1)*0.8)}'`
else
cpuCore="1"
3 years ago
fi
# ----- cpu end ------
3 years ago
2 years ago
if [ "${SYS_ARCH}" == "aarch64" ];then
# 修复aarch64架构下安装
# /www/server/mdserver-web/plugins/php/versions/56/src/zend_multiply.h > /www/server/source/php/php56/Zend/zend_multiply.h
2 years ago
cat ${curPath}/versions/${PHP_VER}/src/zend_multiply.h > $sourcePath/php/php${PHP_VER}/Zend/zend_multiply.h
2 years ago
fi
6 years ago
if [ ! -d $serverPath/php/56 ];then
6 years ago
cd $sourcePath/php/php${PHP_VER} && ./configure \
6 years ago
--prefix=$serverPath/php/56 \
--exec-prefix=$serverPath/php/56 \
--with-config-file-path=$serverPath/php/56/etc \
--with-zlib-dir=$serverPath/lib/zlib \
5 years ago
--enable-mysqlnd \
6 years ago
--with-mysql=mysqlnd \
--with-pdo-mysql=mysqlnd \
--with-mysqli=mysqlnd \
--enable-zip \
--enable-mbstring \
--enable-simplexml \
--enable-ftp \
--enable-sockets \
--enable-shmop \
--enable-soap \
--enable-posix \
--enable-sysvmsg \
--enable-sysvsem \
--enable-sysvshm \
--disable-intl \
6 years ago
--disable-fileinfo \
$OPTIONS \
--enable-fpm
make clean && make -j${cpuCore} && make install && make clean
2 years ago
2 years ago
# rm -rf $sourcePath/php/php${PHP_VER}
6 years ago
fi
7 years ago
#------------------------ install end ------------------------------------#
}
Uninstall_php()
{
6 years ago
$serverPath/php/init.d/php56 stop
rm -rf $serverPath/php/56
3 years ago
echo "卸载php-${version} ..." > $install_tmp
7 years ago
}
action=${1}
if [ "${1}" == 'install' ];then
Install_php
else
Uninstall_php
fi