CentOS 6.5 源码编译搭建LNMP(三台独立主机实现)

88344556 2016-12-23

CentOS 6.5 源码编译搭建LNMP(三台独立主机实现)

搭建前准备:

1.三台独立主机

nginx:192.168.1.102

php-fpm:192.168.1.105

mysql:192.168.1.103

2.相关软件的源码包

nginx:nginx-1.10.2

php:php-5.6.28

mysql:mariadb-5.5.53

3.开发环境及依赖包组

包:openssl-devel;pcre-devel;zlib-devel

包组:Development Tools;Server Platform Development

开始搭建:


 

第一台主机的操作:nginx服务器主机

1.解压展开源码包nginx-1.10.2.tar.gz

tar -xf nginx-1.10.2.tar.gz

2.创建相应路径以便编译时使用

mkdir -pv /var/cache/nginx

3.cd至nginx-1.10.2目录,运行以下命令

./configure  --prefix=/usr/local/nginx --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx.lock --http-client-body-temp-path=/var/cache/nginx/client_temp --http-proxy-temp-path=/var/cache/nginx/proxy_temp --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp --http-scgi-temp-path=/var/cache/nginx/scgi_temp --user=nginx --group=nginx --with-http_ssl_module --with-http_realip_module --with-http_addition_module --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_random_index_module --with-http_secure_link_module --with-http_stub_status_module --with-http_auth_request_module --with-threads --with-stream --with-stream_ssl_module --with-http_slice_module --with-file-aio --with-http_v2_module
 

    4.make && make install 即可
    5.开启nginx,在浏览器测试,出现即没有问题
 
    6.配置nginx支持php-fpm
     #vim /etc/nginx/nginx.conf 写入

 
    server {
        listen 80;
        server_name www.a.com;
        location / {
                root /test/html;
                index index.html index.htm index.php;
        }
        location ~ \.php$ {
            root           /test/html;
            fastcgi_pass   192.168.1.105:9000;
            fastcgi_index  index.php;
            fastcgi_param  SCRIPT_FILENAME  /www/test1/$fastcgi_script_name;
            include        fastcgi_params;
        }
    }

第二台主机的操作:php的主机

1.解压展开源码包php-5.6.28.tar.bz2

2.cd至php-5.6.28目录,执行

./configure --prefix=/usr/local/php56 --with-mysql --with-openssl --with-mysqli --enable-mbstring --with-png-dir --with-jpeg-dir --with-freetype-dir --with-zlib --with-libxml-dir=/usr  --enable-xml --enable-sockets --with-mcrypt --with-config-file-path=/etc/php56 --with-config-file-scan-dir=/etc/php56.d --with-bz2 --enable-fpm

其中,--enable-fpm是关键选项

3.make && make install

4.配置文件的操作

①#cp php.ini-development /etc/php.ini 

②#cp sapi/fpm/init.d.php-fpm /etc/rc.d/init.d/php-fpm (将php-fpm加入到系统服务中)

③#chkconfig --add php-fpm

  查看添加结果:#chkconfig --list php-fpm

CentOS 6.5 源码编译搭建LNMP(三台独立主机实现)

  则完成添加;

 注意:此处复制php-fpm到/etc/rc.d/init.d/目录下时,有可能php-fpm自身没有任何执行权限,会导致添加系统服务时失败,自行添加执行权限即可解决这个问题

5.修改php-fpm配置文件

 ①修改php-fpm的pid设置

CentOS 6.5 源码编译搭建LNMP(三台独立主机实现)

②修改php-fpm的进程属主

CentOS 6.5 源码编译搭建LNMP(三台独立主机实现)

③修改php-fpm的监听地址

CentOS 6.5 源码编译搭建LNMP(三台独立主机实现)

这几项是服务正常开启运行的比较关键的几项,其余配置在此不再赘述

 6.开启php-fpm服务

service php-fpm start

CentOS 6.5 源码编译搭建LNMP(三台独立主机实现)

确保PHP主机的IP:9000处于监听状态即可

 7.创建动态资源目录,做测试用,此处是/www/test1目录,创建一个index.php文件

 8.开始测试,效果如下

CentOS 6.5 源码编译搭建LNMP(三台独立主机实现) 此为请求静态资源

CentOS 6.5 源码编译搭建LNMP(三台独立主机实现)此为请求动态资源

 

 

 

LNMP安装参考如下文章

 

 

 

 

 

 

 

 

 

相关推荐

TiDBPingCAP / 0评论 2020-07-29