标签:name apach pre pac url gzip httpd服务 ice 正则表达
1 tar -zxvf httpd-2.4.27.tar.gz 2 cd httpd-2.4.18 3 ./configure --prefix=/usr/local/apache24 --enable-so --enable-ssl --enable-cgi --enable-rewrite --enable-modules=most --enable-mpms-shared=all --with-mpm=prefork --with-zlib --with-pcre --with-apr=/usr --with-apr-util=/usr 4 make && make install
1 #cd /usr/local/apache24/bin/ 2 #./apachectl start
yum install gcc bison bison-devel zlib-devel libmcrypt-devel mcrypt mhash-devel openssl-devel libxml2-devel libcurl-devel bzip2-devel readline-devel libedit-devel sqlite-devel jemalloc jemalloc-devel
tar zvxf php-5.6.30.tar.gz cd php-5.6.30 groupadd www useradd -g www -s /sbin/nologin www #编译相关参数 ./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache24/bin/apxs \
--with-config-file-path=/usr/local/php/etc \
--enable-inline-optimization --disable-debug \
--disable-rpath --enable-shared --enable-opcache \
--enable-fpm --with-fpm-user=www \
--with-fpm-group=www \
--with-mysql=mysqlnd \
--with-mysqli=mysqlnd \
--with-pdo-mysql=mysqlnd \
--with-gettext \
--enable-mbstring \
--with-iconv \
--with-mcrypt \
--with-mhash \
--with-openssl \
--enable-bcmath \
--enable-soap \
--with-libxml-dir \
--enable-pcntl \
--enable-shmop \
--enable-sysvmsg \
--enable-sysvsem \
--enable-sysvshm \
--enable-sockets \
--with-curl --with-zlib \
--enable-zip \
--with-bz2 \
--with-readline
make && make install
##参数解释 """ 安装路径 """ --prefix=/usr/local/php """ php.ini 配置文件路径 """ --with-apxs2=/usr/local/apache24/bin/apxs """ 促使生成libphp5.so """ --with-config-file-path=/usr/local/php56/etc """ 优化选项 """ --enable-inline-optimization --disable-debug --disable-rpath --enable-shared """ 启用 opcache,默认为 ZendOptimizer+(ZendOpcache) """ --enable-opcache """ FPM """ --enable-fpm --with-fpm-user=www --with-fpm-group=www """ MySQL """ --with-mysql=mysqlnd --with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd """ 国际化与字符编码支持 """ --with-gettext --enable-mbstring --with-iconv """ 加密扩展 """ --with-mcrypt --with-mhash --with-openssl """ 数学扩展 """ --enable-bcmath """ Web 服务,soap 依赖 libxml """ --enable-soap --with-libxml-dir """ 进程,信号及内存 """ --enable-pcntl --enable-shmop --enable-sysvmsg --enable-sysvsem --enable-sysvshm """ socket & curl """ --enable-sockets --with-curl """ 压缩与归档 """ --with-zlib --enable-zip --with-bz2 """ GNU Readline 命令行快捷键绑定 """ --with-readline
#配置文件 cp php.ini-development /usr/local/php/etc/php.ini #php-fpm 服务 cp /usr/local/php/etc/php-fpm.conf.default /usr/local/php/etc/php-fpm.conf cp sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm chmod +x /etc/init.d/php-fpm chkconfig --add php-fpm chkconfig on php-fpm service php-fpm start
#vim /etc/profile PATH=$PATH:/usr/local/php/bin export PATH #source /etc/profile
(以上是自己的一些见解,若有不足或者错误的地方请各位指出)
作者:那一叶随风 http://www.cnblogs.com/phpstudy2015-6/
原文地址:http://www.cnblogs.com/phpstudy2015-6/p/7536872.html
声明:本博客文章为原创,只代表本人在工作学习中某一时间内总结的观点或结论。转载时请在文章页面明显位置给出原文链接
标签:name apach pre pac url gzip httpd服务 ice 正则表达
原文地址:http://www.cnblogs.com/phpstudy2015-6/p/7536872.html