LNMP是linux、nginx、MySQL、php组成的一个运行生产环境,现将自己在学习的过程中搭载lnmp环境的过程整理出来。
服务器版本是CentOS6.5.Mysql版本是5.1.73;nginx版本是nginx-1.6.3;php的版本是php-5.4.37。lnmp的搭建其实和lamp的搭建很类似,在mysql的安装上,二者几乎一致,所以这里不再赘述。
一、PHP的安装
这里要先声明一下,针对Nginx的php安装和针对apache的php安装是有区别的,因为Nginx中的php是以fastcgi的方式结合nginx的,可以理解为nginx代理了php的fastcgi,而apache是把php作为自己的模块来调用的。
在/usr/local/src下,解压进入源码包目录下,进行编译:
./configure \ --enable-fpm \ --with-fpm-user=php-fpm \ --with-fpm-group=php-fpm \ --with-mysql=/usr/local/mysql \ --with-mysql-sock=/tmp/mysql.sock \ --with-libxml-dir \ --with-gd \ --with-jpeg-dir \ --with-png-dir \ --with-freetype-dir \ --with-iconv-dir \ --with-zlib-dir \ --with-mcrypt \ --enable-soap \ --enable-gd-native-ttf \ --enable-ftp \ --enable-mbstring \ --enable-exif \ --enable-zend-multibyte \ --disable-ipv6 \ --with-pear \ --with-curl \ --with-openssl红色部分要注意,由于之前在服务器端搭建lamp时,php安装的目录是/usr/local/php/,这里再安装时需要和lamp的php路径有所区别,否则会覆盖掉lamp的php安装文件。
2.make&&make install
3.拷贝配置文件
cp /usr/local/src/php-5.4.37/php.ini-production /usr/local/php-fpm/etc/php.ini
4.拷贝启动脚本
cp /usr/local/src/php-5.4.37/sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm
chmod 755 /etc/init.d/php-fpm
chkconfig --add php-fpm
chkconfig php-fpm on
将php-fpm加入到开机启动项里,此时运行service php-fpm start会报错,所以我们还要进行如下配置.
5.添加php用户
cd /usr/local/php-fpm/etc/
mv php-fpm.conf.default php-fpm.conf
useradd -s /sbin/nologin php-fpm
运行service php-fpm start,显示如下:
Gracefully shutting down php-fpm . done
Starting php-fpm done
至此,php安装配置过程完成。
二、安装nginx
编译安装
在/usr/local/src下,解压,进入源码包目录。
编译之前,先安装一个pcre-devel的包:yum install -y pcre-devel
./configure --prefix=/usr/local/nginx --with-pcre 编译安装
make
make install
直接输入/usr/local/nginx/sbin/nginx,nginx启动。
测试php解析
此时的nginx还不解析php,所以我们要修改一下nginx的配置文件
vim /usr/local/nginx/conf/nginx.conf
删除下列的注释,并且更改红字部分
location ~ \.php$ {
root html;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /usr/local/nginx/html$fastcgi_script_name;
include fastcgi_params;
}
显示页面在/usr/local/nginx/html下
/usr/local/nginx/sbin/nginx -t #检查配置文件有无错误
/usr/local/nginx/sbin/nginx -s reload #重新装载配置文件
此时,在/usr/local/nginx/html下写一个php文件,在浏览器或是用curl可以看到nginx已经解析php
3.编写nginx启动文件
nginx和apache不太一样,需要自己去写启动脚本。
vim /etc/init.d/nginx
输入:
#!/bin/bash # chkconfig: - 30 21 # description: http service. # Source Function Library . /etc/init.d/functions # Nginx Settings NGINX_SBIN="/usr/local/nginx/sbin/nginx" NGINX_CONF="/usr/local/nginx/conf/nginx.conf" NGINX_PID="/usr/local/nginx/logs/nginx.pid" RETVAL=0 prog="Nginx" start() { echo -n $"Starting $prog: " mkdir -p /dev/shm/nginx_temp daemon $NGINX_SBIN -c $NGINX_CONF RETVAL=$? echo return $RETVAL } stop() { echo -n $"Stopping $prog: " killproc -p $NGINX_PID $NGINX_SBIN -TERM rm -rf /dev/shm/nginx_temp RETVAL=$? echo return $RETVAL } reload(){ echo -n $"Reloading $prog: " killproc -p $NGINX_PID $NGINX_SBIN -HUP RETVAL=$? echo return $RETVAL } restart(){ stop start } configtest(){ $NGINX_SBIN -c $NGINX_CONF -t return 0 } case "$1" in start) start ;; stop) stop ;; reload) reload ;; restart) restart ;; configtest) configtest ;; *) echo $"Usage: $0 {start|stop|reload|restart|configtest}" RETVAL=1 esac exit $RETVAL编辑完成后,保存退出
chmod 755 /etc/init.d/nginx
chkconfig --add nginx
chkconfig nginx on
将nginx加入到开机启动项里去,运行nginx方式可以采用service nginx start
service nginx restart 重启nginx
service nginx reload 重新加载nginx配置文件
service nginx stop 停止nginx
service nginx configtest 检查nginx配置文件有无错误
三、nginx配置调优