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/55/install.sh

141 lines
3.7 KiB

7 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")
sourcePath=${serverPath}/source
6 years ago
sysName=`uname`
6 years ago
install_tmp=${rootPath}/tmp/mw_install.pl
2 years ago
SYS_ARCH=`arch`
6 years ago
version=5.5.38
PHP_VER=55
7 years ago
Install_php()
{
#------------------------ install start ------------------------------------#
6 years ago
echo "安装php-5.5.38 ..." > $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
if [ ! -z "$cn" ];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
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
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 ------
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
cat ${curPath}/versions/${PHP_VER}/src/zend_multiply.h > $sourcePath/php/php${PHP_VER}/Zend/zend_multiply.h
fi
6 years ago
if [ ! -d $serverPath/php/55 ];then
6 years ago
cd $sourcePath/php/php${PHP_VER} && ./configure \
6 years ago
--prefix=$serverPath/php/55 \
--exec-prefix=$serverPath/php/55 \
--with-config-file-path=$serverPath/php/55/etc \
--with-zlib-dir=$serverPath/lib/zlib \
--enable-mysqlnd \
5 years ago
--with-mysql=mysqlnd \
--with-pdo-mysql=mysqlnd \
--with-mysqli=mysqlnd \
6 years ago
--enable-zip \
--enable-simplexml \
--enable-mbstring \
--enable-sockets \
--enable-ftp \
--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
6 years ago
fi
7 years ago
#------------------------ install end ------------------------------------#
}
Uninstall_php()
{
6 years ago
$serverPath/php/init.d/php55 stop
6 years ago
rm -rf $serverPath/php/55
echo "卸载php-5.5.38 ..." > $install_tmp
7 years ago
}
action=${1}
if [ "${1}" == 'install' ];then
Install_php
else
Uninstall_php
fi