共计 7083 个字符,预计需要花费 18 分钟才能阅读完成。
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。
LNMP 环境搭建(Discuz 论坛) http://www.linuxidc.com/Linux/2016-03/129334.htm
Ubuntu 14.04 下 apt-get 方法安装 LNMP 环境 http://www.linuxidc.com/Linux/2016-07/133683.htm
CentOS 7 源码编译安装 PHP5.6 和 Nginx1.7.9 及 MySQL(搭建 LNMP 环境) http://www.linuxidc.com/Linux/2015-12/126200.htm
Ubuntu 14.04 LTS 安装 LNMP Nginx\PHP5 (PHP-FPM)\MySQL http://www.linuxidc.com/Linux/2014-05/102351.htm
CentOS 7 源码安装最新版 LNMP 环境 http://www.linuxidc.com/Linux/2015-04/116058.htm
Ubuntu 16.04 下源码配置 LNMP 开发环境 http://www.linuxidc.com/Linux/2016-09/135381.htm
本文永久更新链接地址:http://www.linuxidc.com/Linux/2017-01/140072.htm