Home > Article > Backend Development > Detailed introduction to the Centos6.4 compilation and installation nginx php code example method
This article mainly introduces the method of compiling and installing nginx php in Centos6.4. Friends who need it can refer to
1. Prepare dependent libraries
Install make :
yum -y install gcc automake autoconf libtool make
Install g++:
yum install gcc gcc-c++
2. Compile and install pcre
pcre is a regular expression library. Compiling nginx needs to rely on this library to implement url rewrite
Download source code
cd /usr/local/src wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.33.tar.bz2 tar jxvf pcre-8.33.tar.bz2
Compile and install
cd pcre-8.33 ./configure make make install
3. Compile and install zlib library
zlib is a gzip implementation
Download source code
cd /usr/local/src wget http://www.php.cn/ tar -zxvf zlib-1.2.8.tar.gz
Compile and install
cd zlib-1.2.8 ./configure make make install
IV. Install openssl
Check if ssl is installed
# rpm -qa|grep openssl openssl-devel-1.0.1e-16.el6_5.14.x86_64 openssl-1.0.1e-16.el6_5.14.x86_64
If not installed
Download source code
cd /usr/local/src wget http://www.php.cn/ tar -zxvf openssl-1.0.1c.tar.gz
Compile and install
./configure make make install
5. Compile and install nginx
cd /usr/local/src wget http://www.php.cn/ tar -zxvf nginx-1.2.8.tar.gz cd nginx-1.2.8 ./configure --sbin-path=/usr/local/nginx/nginx \ --conf-path=/usr/local/nginx/nginx.conf \ --pid-path=/usr/local/nginx/nginx.pid \ --with-http_ssl_module \ --with-pcre=/usr/local/src/pcre-8.33 \ --with-zlib=/usr/local/src/zlib-1.2.8 \ --with-openssl=/usr/local/src/openssl-1.0.1c make make install
After the installation is completed, verify whether the installation is successful
/usr/local/nginx/nginx netstat -alptn|grep 80
6. Compile and install php
The new version of php has been integrated with php-fpm
1. Preparation
yum -y install libmcrypt-devel mhash-devel libxslt-devel\ libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel libxml2 libxml2-devel\ zlib zlib-devel glibc glibc-devel glib2 glib2-devel bzip2 bzip2-devel\ ncurses ncurses-devel curl curl-devel e2fsprogs e2fsprogs-devel\ krb5 krb5-devel libidn libidn-devel openssl openssl-devel
2. Compile and install libmcrypt
wget ftp://mcrypt.hellug.gr/pub/crypto/mcrypt/attic/libmcrypt/libmcrypt-2.5.7.tar.gz tar -zxvf libmcrypt-2.5.7.tar.gz cd libmcrypt-2.5.7 ./configure make make install
3. Download the source code
wget http://www.php.cn/ tar zvxf php-5.4.7.tar.gz
4. Compile and install cd php-5.4.7
./configure --prefix=/usr/local/php \ --enable-fpm \ --enable-mbstring \ --enable-sockets \ --enable-sysvsem \ --enable-sysvshm \ --enable-pcntl \ --enable-mbregex \ --enable-zip \ --enable-inline-optimization \ --disable-pdo \ --disable-debug \ --disable-rpath \ --with-mcrypt \ --with-zlib \ --with-bz2 \ --with-mhash \ --with-curl \ --with-mysql \ --with-gd \ --with-pcre-regex \ --with-libdir=lib64
If the following error is reported
configure: error: Don't know how to define struct flock on this system, set --enable-opcache=no
Modify the /etc/ld.so.conf file
vi /etc/ld.so.conf.d/local.conf #添加2行 /usr/local/lib64 //64系统 /usr/local/src/libmcrypt-2.5.7/lib/.libs #执行以下命令 chmod gu+x /etc/ld.so.conf.d/local.conf #执行以下命令使生效 ldconfig -v
Execute the command again
Compile and install after success
7. Configuration startup
1. Configure php-fpm
cd /usr/local/php cp /etc/php-fpm.conf.default /etc/php-fpm.conf vi /etc/php-fpm.conf
Modify
user = llong
group = llong
2. Modify nginx to support php-fpm
Open nginx.conf
Add the following configuration to the server section, pay attention to the red content configuration, otherwise No input will appear file specified.Error
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000 # location ~ \.php$ { root html; fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; }
3. Test whether the configuration is successful
Create the index.php file under /usr/local/nginx/html , enter the following content
<? echo phpinfo(); ?>
Start php-fpm and nginx
/usr/local/php/sbin/php-fpm (手动打补丁的启动方式/usr/local/php/sbin/php-fpm start) /usr/local/nginx/nginx
The above is the details of the Centos6.4 compilation and installation nginx php code example method The content of the introduction, for more related content, please pay attention to the PHP Chinese website (www.php.cn)!