Nginx1.x编译安装 + Php5.5.x编译安装 + Mysql5.32RPM安装备忘录

5651 次阅读 by 九九 2014-11-02 | 标签:生活元素 Linux PHP

0. 准备工作:

   yum -y install gcc pcre pcre-devel gcc-c++ autoconf libxml2 libxml2-devel zlib zlib-devel glibc libjepg libjepg-devel libpng libpng-devel glibc-devel glib2 glib2-devel ncurses ncurses-devel curl curl-devel e2fsprogs e2fsprogs-devel openssl openssl-devel openldap openldap-devel nss_ldap openldap-clients openldap-servers make gd-devel bzip2 bzip2-devel  libxslt-devel

        fix ldap error:  

cp -frp /usr/lib64/libldap* /usr/lib/

  1. Nginx 编译:./configure --prefix=/usr/local/nginx  --error-log-path=/var/log/nginx/error.log --pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx.lock --with-http_stub_status_module --with-http_gzip_static_module --with-http_sub_module --with-http_flv_module --with-http_mp4_module --with-http_random_index_module --with-http_ssl_module --with-http_dav_module make make install

  2. rpm 安装Mysql5.32 yum -y remove mysql-libs-5.1.69* //干掉原来的低版本

    rpm -ivh MySQL-server-5.6.13-1.linux_glibc2.5.x86_64.rpm rpm -ivh MySQL-devel-5.6.13-1.linux_glibc2.5.x86_64.rpm rpm -ivh MySQL-client-5.6.13-1.linux_glibc2.5.x86_64.rpm

  3. 编译Php5.6.x./configure --prefix=/usr/local/php --with-config-file-path=/usr/local/php/etc --with-config-file-scan-dir=/usr/local/php/etc/conf.d --enable-fpm --with-fpm-user=www --with-fpm-group=www --with-curl --with-pear --with-gd --with-jpeg-dir --with-png-dir --with-zlib --with-xpm-dir --with-freetype-dir --with-mcrypt --with-mhash --with-mysql=mysqlnd --with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd --with-openssl --with-xmlrpc --with-xsl --with-bz2 --with-gettext --disable-debug --enable-pdo --enable-fpm --enable-exif --enable-wddx --enable-zip --enable-bcmath --enable-calendar --enable-ftp --enable-mbstring --enable-soap --enable-sockets --enable-shmop --enable-dba --enable-sysvsem --enable-sysvshm --enable-sysvmsg -enable-inline-optimization   --enable-pcntl --with-ldap --with-ldap-sasl --enable-opcache

  4. 参考网站:

    [1] http://shitouququ.blog.51cto.com/24569/857622  

    [2] http://www.cnblogs.com/xred/archive/2012/10/25/2739989.html


评论(6)

暂无评论!


PS:多打字可以减肥哦~234字以内。支持表情:


Top