123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- #!/bin/bash
- # Author: yeho <lj2007331 AT gmail.com>
- # BLOG: https://blog.linuxeye.cn
- #
- # Notes: OneinStack for CentOS/RadHat 6+ Debian 6+ and Ubuntu 12+
- #
- # Project home page:
- # https://oneinstack.com
- # https://github.com/lj2007331/oneinstack
- Install_ZendOPcache() {
- pushd ${oneinstack_dir}/src > /dev/null
- phpExtensionDir=$(${php_install_dir}/bin/php-config --extension-dir)
- PHP_detail_ver=$(${php_install_dir}/bin/php -r 'echo PHP_VERSION;')
- PHP_main_ver=${PHP_detail_ver%.*}
- if [[ "${PHP_main_ver}" =~ ^5.[3-4]$ ]]; then
- tar xzf zendopcache-${zendopcache_ver}.tgz
- pushd zendopcache-${zendopcache_ver}
- else
- tar xzf php-${PHP_detail_ver}.tar.gz
- pushd php-${PHP_detail_ver}/ext/opcache
- fi
- ${php_install_dir}/bin/phpize
- ./configure --with-php-config=${php_install_dir}/bin/php-config
- make -j ${THREAD} && make install
- popd
- if [ -f "${phpExtensionDir}/opcache.so" ]; then
- # write opcache configs
- if [[ "${PHP_main_ver}" =~ ^5.[3-4]$ ]]; then
- # For php 5.3 5.4
- cat > ${php_install_dir}/etc/php.d/02-opcache.ini << EOF
- [opcache]
- zend_extension=${phpExtensionDir}/opcache.so
- opcache.enable=1
- opcache.memory_consumption=${Memory_limit}
- opcache.interned_strings_buffer=8
- opcache.max_accelerated_files=4000
- opcache.revalidate_freq=60
- opcache.save_comments=0
- opcache.fast_shutdown=1
- opcache.enable_cli=1
- ;opcache.optimization_level=0
- EOF
- else
- # For php 5.5+
- cat > ${php_install_dir}/etc/php.d/02-opcache.ini << EOF
- [opcache]
- zend_extension=opcache.so
- opcache.enable=1
- opcache.enable_cli=1
- opcache.memory_consumption=${Memory_limit}
- opcache.interned_strings_buffer=8
- opcache.max_accelerated_files=100000
- opcache.max_wasted_percentage=5
- opcache.use_cwd=1
- opcache.validate_timestamps=1
- opcache.revalidate_freq=60
- opcache.save_comments=0
- opcache.fast_shutdown=1
- opcache.consistency_checks=0
- ;opcache.optimization_level=0
- EOF
- fi
- echo "${CSUCCESS}PHP OPcache module installed successfully! ${CEND}"
- rm -rf zendopcache-${zendopcache_ver} php-${PHP_detail_ver}
- else
- echo "${CFAILURE}PHP OPcache module install failed, Please contact the author! ${CEND}"
- fi
- popd
- }
|