php-7.2.sh 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270
  1. #!/bin/bash
  2. # Author: yeho <lj2007331 AT gmail.com>
  3. # BLOG: https://linuxeye.com
  4. #
  5. # Notes: OneinStack for CentOS/RedHat 7+ Debian 9+ and Ubuntu 16+
  6. #
  7. # Project home page:
  8. # https://oneinstack.com
  9. # https://github.com/oneinstack/oneinstack
  10. Install_PHP72() {
  11. pushd ${oneinstack_dir}/src > /dev/null
  12. if [ ! -e "/usr/local/lib/libiconv.la" ]; then
  13. tar xzf libiconv-${libiconv_ver}.tar.gz
  14. pushd libiconv-${libiconv_ver} > /dev/null
  15. ./configure
  16. make -j ${THREAD} && make install
  17. popd > /dev/null
  18. rm -rf libiconv-${libiconv_ver}
  19. fi
  20. if [ ! -e "${curl_install_dir}/lib/libcurl.la" ]; then
  21. tar xzf curl-${curl_ver}.tar.gz
  22. pushd curl-${curl_ver} > /dev/null
  23. [ -e "/usr/local/lib/libnghttp2.so" ] && with_nghttp2='--with-nghttp2=/usr/local'
  24. ./configure --prefix=${curl_install_dir} ${php72_with_ssl} ${with_nghttp2}
  25. make -j ${THREAD} && make install
  26. popd > /dev/null
  27. rm -rf curl-${curl_ver}
  28. fi
  29. if [ ! -e "${freetype_install_dir}/lib/libfreetype.la" ]; then
  30. tar xzf freetype-${freetype_ver}.tar.gz
  31. pushd freetype-${freetype_ver} > /dev/null
  32. ./configure --prefix=${freetype_install_dir} --enable-freetype-config
  33. make -j ${THREAD} && make install
  34. ln -sf ${freetype_install_dir}/include/freetype2/* /usr/include/
  35. [ -d /usr/lib/pkgconfig ] && /bin/cp ${freetype_install_dir}/lib/pkgconfig/freetype2.pc /usr/lib/pkgconfig/
  36. popd > /dev/null
  37. rm -rf freetype-${freetype_ver}
  38. fi
  39. if [ ! -e "/usr/local/lib/pkgconfig/libargon2.pc" ]; then
  40. tar xzf argon2-${argon2_ver}.tar.gz
  41. pushd argon2-${argon2_ver} > /dev/null
  42. make -j ${THREAD} && make install
  43. [ ! -d /usr/local/lib/pkgconfig ] && mkdir -p /usr/local/lib/pkgconfig
  44. /bin/cp libargon2.pc /usr/local/lib/pkgconfig/
  45. popd > /dev/null
  46. rm -rf argon2-${argon2_ver}
  47. fi
  48. if [ ! -e "/usr/local/lib/libsodium.la" ]; then
  49. tar xzf libsodium-${libsodium_ver}.tar.gz
  50. pushd libsodium-${libsodium_ver} > /dev/null
  51. ./configure --disable-dependency-tracking --enable-minimal
  52. make -j ${THREAD} && make install
  53. popd > /dev/null
  54. rm -rf libsodium-${libsodium_ver}
  55. fi
  56. if [ ! -e "/usr/local/include/mhash.h" -a ! -e "/usr/include/mhash.h" ]; then
  57. tar xzf mhash-${mhash_ver}.tar.gz
  58. pushd mhash-${mhash_ver} > /dev/null
  59. ./configure
  60. make -j ${THREAD} && make install
  61. popd > /dev/null
  62. rm -rf mhash-${mhash_ver}
  63. fi
  64. [ -z "`grep /usr/local/lib /etc/ld.so.conf.d/*.conf`" ] && echo '/usr/local/lib' > /etc/ld.so.conf.d/local.conf
  65. ldconfig
  66. if [ "${PM}" == 'yum' ]; then
  67. [ ! -e "/lib64/libpcre.so.1" ] && ln -s /lib64/libpcre.so.0.0.1 /lib64/libpcre.so.1
  68. [ ! -e "/usr/lib/libc-client.so" ] && ln -s /usr/lib64/libc-client.so /usr/lib/libc-client.so
  69. fi
  70. id -g ${run_group} >/dev/null 2>&1
  71. [ $? -ne 0 ] && groupadd ${run_group}
  72. id -u ${run_user} >/dev/null 2>&1
  73. [ $? -ne 0 ] && useradd -g ${run_group} -M -s /sbin/nologin ${run_user}
  74. tar xzf php-${php72_ver}.tar.gz
  75. pushd php-${php72_ver} > /dev/null
  76. if [ -e ext/openssl/openssl.c ] && ! grep -Eqi '^#ifdef RSA_SSLV23_PADDING' ext/openssl/openssl.c; then
  77. sed -i '/OPENSSL_SSLV23_PADDING/i#ifdef RSA_SSLV23_PADDING' ext/openssl/openssl.c
  78. sed -i '/OPENSSL_SSLV23_PADDING/a#endif' ext/openssl/openssl.c
  79. fi
  80. make clean
  81. [ ! -d "${php_install_dir}" ] && mkdir -p ${php_install_dir}
  82. [ "${phpcache_option}" == '1' ] && phpcache_arg='--enable-opcache' || phpcache_arg='--disable-opcache'
  83. if [ "${apache_mode_option}" == '2' ]; then
  84. ./configure --prefix=${php_install_dir} --with-config-file-path=${php_install_dir}/etc \
  85. --with-config-file-scan-dir=${php_install_dir}/etc/php.d \
  86. --with-apxs2=${apache_install_dir}/bin/apxs ${phpcache_arg} --disable-fileinfo \
  87. --enable-mysqlnd --with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd \
  88. --with-iconv-dir=/usr/local --with-freetype-dir=${freetype_install_dir} --with-jpeg-dir --with-png-dir --with-zlib \
  89. --with-libxml-dir=/usr --enable-xml --disable-rpath --enable-bcmath --enable-shmop --enable-exif \
  90. --enable-sysvsem --enable-inline-optimization ${php72_with_curl} --enable-mbregex \
  91. --enable-mbstring --with-password-argon2 --with-sodium=/usr/local --with-gd ${php72_with_openssl} \
  92. --with-mhash --enable-pcntl --enable-sockets --with-xmlrpc --enable-ftp --enable-intl --with-xsl \
  93. --with-gettext --enable-zip --enable-soap --disable-debug ${php_modules_options}
  94. else
  95. ./configure --prefix=${php_install_dir} --with-config-file-path=${php_install_dir}/etc \
  96. --with-config-file-scan-dir=${php_install_dir}/etc/php.d \
  97. --with-fpm-user=${run_user} --with-fpm-group=${run_group} --enable-fpm ${phpcache_arg} --disable-fileinfo \
  98. --enable-mysqlnd --with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd \
  99. --with-iconv-dir=/usr/local --with-freetype-dir=${freetype_install_dir} --with-jpeg-dir --with-png-dir --with-zlib \
  100. --with-libxml-dir=/usr --enable-xml --disable-rpath --enable-bcmath --enable-shmop --enable-exif \
  101. --enable-sysvsem --enable-inline-optimization ${php72_with_curl} --enable-mbregex \
  102. --enable-mbstring --with-password-argon2 --with-sodium=/usr/local --with-gd ${php72_with_openssl} \
  103. --with-mhash --enable-pcntl --enable-sockets --with-xmlrpc --enable-ftp --enable-intl --with-xsl \
  104. --with-gettext --enable-zip --enable-soap --disable-debug ${php_modules_options}
  105. fi
  106. make ZEND_EXTRA_LIBS='-liconv' -j ${THREAD}
  107. make install
  108. if [ -e "${php_install_dir}/bin/phpize" ]; then
  109. [ ! -e "${php_install_dir}/etc/php.d" ] && mkdir -p ${php_install_dir}/etc/php.d
  110. echo "${CSUCCESS}PHP installed successfully! ${CEND}"
  111. else
  112. rm -rf ${php_install_dir}
  113. echo "${CFAILURE}PHP install failed, Please Contact the author! ${CEND}"
  114. kill -9 $$; exit 1;
  115. fi
  116. [ -z "`grep ^'export PATH=' /etc/profile`" ] && echo "export PATH=${php_install_dir}/bin:\$PATH" >> /etc/profile
  117. [ -n "`grep ^'export PATH=' /etc/profile`" -a -z "`grep ${php_install_dir} /etc/profile`" ] && sed -i "s@^export PATH=\(.*\)@export PATH=${php_install_dir}/bin:\1@" /etc/profile
  118. . /etc/profile
  119. # wget -c http://pear.php.net/go-pear.phar
  120. # ${php_install_dir}/bin/php go-pear.phar
  121. /bin/cp php.ini-production ${php_install_dir}/etc/php.ini
  122. sed -i "s@^memory_limit.*@memory_limit = ${Memory_limit}M@" ${php_install_dir}/etc/php.ini
  123. sed -i 's@^output_buffering =@output_buffering = On\noutput_buffering =@' ${php_install_dir}/etc/php.ini
  124. #sed -i 's@^;cgi.fix_pathinfo.*@cgi.fix_pathinfo=0@' ${php_install_dir}/etc/php.ini
  125. sed -i 's@^short_open_tag = Off@short_open_tag = On@' ${php_install_dir}/etc/php.ini
  126. sed -i 's@^expose_php = On@expose_php = Off@' ${php_install_dir}/etc/php.ini
  127. sed -i 's@^request_order.*@request_order = "CGP"@' ${php_install_dir}/etc/php.ini
  128. sed -i "s@^;date.timezone.*@date.timezone = ${timezone}@" ${php_install_dir}/etc/php.ini
  129. sed -i 's@^post_max_size.*@post_max_size = 100M@' ${php_install_dir}/etc/php.ini
  130. sed -i 's@^upload_max_filesize.*@upload_max_filesize = 50M@' ${php_install_dir}/etc/php.ini
  131. sed -i 's@^max_execution_time.*@max_execution_time = 600@' ${php_install_dir}/etc/php.ini
  132. sed -i 's@^;realpath_cache_size.*@realpath_cache_size = 2M@' ${php_install_dir}/etc/php.ini
  133. sed -i 's@^disable_functions.*@disable_functions = passthru,exec,system,chroot,chgrp,chown,shell_exec,proc_open,proc_get_status,ini_alter,ini_restore,dl,readlink,symlink,popepassthru,stream_socket_server,fsocket,popen@' ${php_install_dir}/etc/php.ini
  134. [ -e /usr/sbin/sendmail ] && sed -i 's@^;sendmail_path.*@sendmail_path = /usr/sbin/sendmail -t -i@' ${php_install_dir}/etc/php.ini
  135. if [ "${with_old_openssl_flag}" = 'y' ]; then
  136. sed -i "s@^;curl.cainfo.*@curl.cainfo = \"${openssl_install_dir}/cert.pem\"@" ${php_install_dir}/etc/php.ini
  137. sed -i "s@^;openssl.cafile.*@openssl.cafile = \"${openssl_install_dir}/cert.pem\"@" ${php_install_dir}/etc/php.ini
  138. sed -i "s@^;openssl.capath.*@openssl.capath = \"${openssl_install_dir}/cert.pem\"@" ${php_install_dir}/etc/php.ini
  139. fi
  140. [ "${phpcache_option}" == '1' ] && cat > ${php_install_dir}/etc/php.d/02-opcache.ini << EOF
  141. [opcache]
  142. zend_extension=opcache.so
  143. opcache.enable=1
  144. opcache.enable_cli=1
  145. opcache.memory_consumption=${Memory_limit}
  146. opcache.interned_strings_buffer=8
  147. opcache.max_accelerated_files=100000
  148. opcache.max_wasted_percentage=5
  149. opcache.use_cwd=1
  150. opcache.validate_timestamps=1
  151. opcache.revalidate_freq=60
  152. ;opcache.save_comments=0
  153. opcache.consistency_checks=0
  154. ;opcache.optimization_level=0
  155. EOF
  156. if [ "${apache_mode_option}" != '2' ]; then
  157. # php-fpm Init Script
  158. /bin/cp ${oneinstack_dir}/init.d/php-fpm.service /lib/systemd/system/
  159. sed -i "s@/usr/local/php@${php_install_dir}@g" /lib/systemd/system/php-fpm.service
  160. systemctl enable php-fpm
  161. cat > ${php_install_dir}/etc/php-fpm.conf <<EOF
  162. ;;;;;;;;;;;;;;;;;;;;;
  163. ; FPM Configuration ;
  164. ;;;;;;;;;;;;;;;;;;;;;
  165. ;;;;;;;;;;;;;;;;;;
  166. ; Global Options ;
  167. ;;;;;;;;;;;;;;;;;;
  168. [global]
  169. pid = run/php-fpm.pid
  170. error_log = log/php-fpm.log
  171. log_level = warning
  172. emergency_restart_threshold = 30
  173. emergency_restart_interval = 60s
  174. process_control_timeout = 5s
  175. daemonize = yes
  176. ;;;;;;;;;;;;;;;;;;;;
  177. ; Pool Definitions ;
  178. ;;;;;;;;;;;;;;;;;;;;
  179. [${run_user}]
  180. listen = /dev/shm/php-cgi.sock
  181. listen.backlog = -1
  182. listen.allowed_clients = 127.0.0.1
  183. listen.owner = ${run_user}
  184. listen.group = ${run_group}
  185. listen.mode = 0666
  186. user = ${run_user}
  187. group = ${run_group}
  188. pm = dynamic
  189. pm.max_children = 12
  190. pm.start_servers = 8
  191. pm.min_spare_servers = 6
  192. pm.max_spare_servers = 12
  193. pm.max_requests = 2048
  194. pm.process_idle_timeout = 10s
  195. request_terminate_timeout = 120
  196. request_slowlog_timeout = 0
  197. pm.status_path = /php-fpm_status
  198. slowlog = var/log/slow.log
  199. rlimit_files = 51200
  200. rlimit_core = 0
  201. catch_workers_output = yes
  202. ;env[HOSTNAME] = $HOSTNAME
  203. env[PATH] = /usr/local/bin:/usr/bin:/bin
  204. env[TMP] = /tmp
  205. env[TMPDIR] = /tmp
  206. env[TEMP] = /tmp
  207. EOF
  208. if [ $Mem -le 3000 ]; then
  209. sed -i "s@^pm.max_children.*@pm.max_children = $(($Mem/3/20))@" ${php_install_dir}/etc/php-fpm.conf
  210. sed -i "s@^pm.start_servers.*@pm.start_servers = $(($Mem/3/30))@" ${php_install_dir}/etc/php-fpm.conf
  211. sed -i "s@^pm.min_spare_servers.*@pm.min_spare_servers = $(($Mem/3/40))@" ${php_install_dir}/etc/php-fpm.conf
  212. sed -i "s@^pm.max_spare_servers.*@pm.max_spare_servers = $(($Mem/3/20))@" ${php_install_dir}/etc/php-fpm.conf
  213. elif [ $Mem -gt 3000 -a $Mem -le 4500 ]; then
  214. sed -i "s@^pm.max_children.*@pm.max_children = 50@" ${php_install_dir}/etc/php-fpm.conf
  215. sed -i "s@^pm.start_servers.*@pm.start_servers = 30@" ${php_install_dir}/etc/php-fpm.conf
  216. sed -i "s@^pm.min_spare_servers.*@pm.min_spare_servers = 20@" ${php_install_dir}/etc/php-fpm.conf
  217. sed -i "s@^pm.max_spare_servers.*@pm.max_spare_servers = 50@" ${php_install_dir}/etc/php-fpm.conf
  218. elif [ $Mem -gt 4500 -a $Mem -le 6500 ]; then
  219. sed -i "s@^pm.max_children.*@pm.max_children = 60@" ${php_install_dir}/etc/php-fpm.conf
  220. sed -i "s@^pm.start_servers.*@pm.start_servers = 40@" ${php_install_dir}/etc/php-fpm.conf
  221. sed -i "s@^pm.min_spare_servers.*@pm.min_spare_servers = 30@" ${php_install_dir}/etc/php-fpm.conf
  222. sed -i "s@^pm.max_spare_servers.*@pm.max_spare_servers = 60@" ${php_install_dir}/etc/php-fpm.conf
  223. elif [ $Mem -gt 6500 -a $Mem -le 8500 ]; then
  224. sed -i "s@^pm.max_children.*@pm.max_children = 70@" ${php_install_dir}/etc/php-fpm.conf
  225. sed -i "s@^pm.start_servers.*@pm.start_servers = 50@" ${php_install_dir}/etc/php-fpm.conf
  226. sed -i "s@^pm.min_spare_servers.*@pm.min_spare_servers = 40@" ${php_install_dir}/etc/php-fpm.conf
  227. sed -i "s@^pm.max_spare_servers.*@pm.max_spare_servers = 70@" ${php_install_dir}/etc/php-fpm.conf
  228. elif [ $Mem -gt 8500 ]; then
  229. sed -i "s@^pm.max_children.*@pm.max_children = 80@" ${php_install_dir}/etc/php-fpm.conf
  230. sed -i "s@^pm.start_servers.*@pm.start_servers = 60@" ${php_install_dir}/etc/php-fpm.conf
  231. sed -i "s@^pm.min_spare_servers.*@pm.min_spare_servers = 50@" ${php_install_dir}/etc/php-fpm.conf
  232. sed -i "s@^pm.max_spare_servers.*@pm.max_spare_servers = 80@" ${php_install_dir}/etc/php-fpm.conf
  233. fi
  234. systemctl start php-fpm
  235. elif [ "${apache_mode_option}" == '2' ]; then
  236. systemctl restart httpd
  237. fi
  238. popd > /dev/null
  239. [ -e "${php_install_dir}/bin/phpize" ] && rm -rf php-${php72_ver}
  240. popd > /dev/null
  241. }