很青的青蛙 2017-01-31
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配置调优
1.配置主配置文件
nginx的主配置文件路径是/usr/local/nginx/conf/nginx.conf 自带的配置文件太过繁琐,我们做一个更改:将配置文件清空,写入: user nobody nobody; worker_processes 2; error_log /usr/local/nginx/logs/nginx_error.log crit; pid /usr/local/nginx/logs/nginx.pid; worker_rlimit_nofile 51200; events { use epoll; worker_connections 6000; } http { include mime.types; default_type application/octet-stream; server_names_hash_bucket_size 3526; server_names_hash_max_size 4096; log_format combined_realip '$remote_addr $http_x_forwarded_for [$time_local]' '$host "$request_uri" $status' '"$http_referer" "$http_user_agent"'; sendfile on; tcp_nopush on; keepalive_timeout 30; client_header_timeout 3m; client_body_timeout 3m; send_timeout 3m; connection_pool_size 256; client_header_buffer_size 1k; large_client_header_buffers 8 4k; request_pool_size 4k; output_buffers 4 32k; postpone_output 1460; client_max_body_size 10m; client_body_buffer_size 256k; client_body_temp_path /usr/local/nginx/client_body_temp; proxy_temp_path /usr/local/nginx/proxy_temp; fastcgi_temp_path /usr/local/nginx/fastcgi_temp; fastcgi_intercept_errors on; tcp_nodelay on; gzip on; gzip_min_length 1k; gzip_buffers 4 8k; gzip_comp_level 5; gzip_http_version 1.1; gzip_types text/plain application/x-javascript text/css text/htm application/xml; }
红色部分是将vhosts下的配置文件都包括进去,和apache类似,主配置文件和虚拟主机文件不写在一个文档里面。所以我们还要再去配置一下虚拟主机。
2.配置虚拟主机
根据主配置文件
cd /usr/local/nginx/conf
mkdir vhosts
cd vhosts
vim default.conf
default.conf文件是默认虚拟主机的配置文件,为了安全性的考虑,我们应该将默认的虚拟主机配置成为访问403.
写入:
server
{
listen 80 default_server;
server_name localhost;
index index.html index.htm index.php;
root /tmp/123 #这个路径可以下可以不写入任何内容,所以默认的虚拟主机 解析均是403,保证安全性
deny all;
}
mkdir /tmp/1233
此时输入自己的网站域名,返回403.
下面要为自己的网站进行配置,首先新建一个配置文件vim /usr/local/nginx/conf/111.conf #111是自定义的
写入:
server
{
listen 80;
server_name 111.com; #网站的域名
index index.html index.htm index.php;
root /data/www; #网站的根目录
location ~ \.php$ {
include fastcgi_params;
#fastcgi_pass unix:/tmp/php-fcgi.sock; #不适用socket的形式
#fastcgi_pass 127.0.0.1:9000; #使用ip加端口的形式
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /data/www$fastcgi_script_name; #改成网站的根目录
}
}
这里用socket还是ip加端口的方式,应该和php-fpm里配置文件相一致。重新加载nginx配置,此时在浏览器里输入网站域名,成功显示界面。
四、php-fpm配置调优
我们要注意一下两个配置文件的不同
/usr/local/php-fpm/etc/php-fpm.conf #php服务所使用的的配置文件
/usr/local/php-fpm/etc/php.ini #php的全局配置文件
将 /usr/local/php-fpm/etc/php-fpm.conf文件清空,复制进去如下内容:
[global]
pid = /usr/local/php-fpm/var/run/php-fpm.pid
error_log = /usr/local/php-fpm/var/log/php-fpm.log
[www]
listen = /tmp/www.sock 可以自定义
user = php-fpm
group = php-fpm
pm = dynamic
pm.max_children = 50
pm.start_servers = 20
pm.min_spare_servers = 5
pm.max_spare_servers = 35
pm.max_requests = 500
rlimit_files = 1024
slowlog=/tmp/www_slow.log
request_slowlog_timeout=1 #将脚本执行超过1秒的记录在路径下,以备调优
php_admin_value[open_basedir]=/data/www/:/tmp/ #针对php的解析,和apache一样设置openbasedir
此处定义的listen = /tmp/www.sock 要和nginx里的虚拟主机配置文件相一致。
#fastcgi_pass unix:/tmp/www.sock;
此外还可以再加入一个pool的模块
[www1]
listen = /tmp/www1.sock
user = php-fpm
group = php-fpm
pm = dynamic
pm.max_children = 50
pm.start_servers = 20
pm.min_spare_servers = 5
pm.max_spare_servers = 35
pm.max_requests = 500
rlimit_files = 1024
listen段的sock要有区别,这样的话不同的网站可以使用不同的sock。
<?php. if (!empty($_POST)) {. $data1 = $_POST["data1"];$data2 = $_POST["data2"];$fuhao = $_POST["fuh