12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- #!/bin/bash
- # Author: yeho <lj2007331 AT gmail.com>
- # BLOG: https://blog.linuxeye.com
- #
- # Notes: OneinStack for CentOS/RadHat 5+ Debian 6+ and Ubuntu 12+
- #
- # Project home page:
- # https://oneinstack.com
- # https://github.com/lj2007331/oneinstack
- Install_APCU() {
- pushd ${oneinstack_dir}/src
- phpExtensionDir=`$php_install_dir/bin/php-config --extension-dir`
- if [ "`$php_install_dir/bin/php -r 'echo PHP_VERSION;' | awk -F. '{print $1}'`" == '7' ];then
- tar xzf apcu-${apcu_for_php7_version}.tgz
- pushd apcu-${apcu_for_php7_version}
- else
- tar xzf apcu-${apcu_version}.tgz
- pushd apcu-${apcu_version}
- fi
-
- ${php_install_dir}/bin/phpize
- ./configure --with-php-config=${php_install_dir}/bin/php-config
- make -j ${THREAD} && make install
- if [ -f "${phpExtensionDir}/apcu.so" ];then
- cat > ${php_install_dir}/etc/php.d/ext-apcu.ini << EOF
- [apcu]
- extension=apcu.so
- apc.enabled=1
- apc.shm_size=32M
- apc.ttl=7200
- apc.enable_cli=1
- EOF
- [ "${Apache_version}" != '1' -a "${Apache_version}" != '2' ] && service php-fpm restart || service httpd restart
- /bin/cp apc.php ${wwwroot_dir}/default
- echo "${CSUCCESS}APCU module installed successfully! ${CEND}"
- else
- echo "${CFAILURE}APCU module install failed, Please contact the author! ${CEND}"
- fi
- popd
- rm -rf apcu-${apcu_version}
- popd
- }
|