美文网首页
centos6 下编译安装 LNMP 环境

centos6 下编译安装 LNMP 环境

作者: Mr_dreamer | 来源:发表于2017-12-28 16:58 被阅读3次

以下内容均在虚拟机centOS 64位下操作,不保证32位有效

首先确保自己的系统安装过了 wget和vim;

yum -y install wget
yum -y install vim

安装nginx

下载nginx

cd /usr/local/src/
wget http://nginx.org/download/nginx-1.12.0.tar.gz
tar zxvf nginx-1.12.0.tar.gz

编译准备

安装Nginx前也有一些库需要下载,分别是pcre,zlib以及openssl 。这里要说明的是下载这3个库的压缩包后,对其进行解压缩即可,无需安装。openssl要下载是因为Nginx在安装时需要的是openssl的源码(与PHP的安装不同)。

wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.38.tar.gz
tar zxvf pcre-8.38.tar.gz
wget http://www.openssl.org/source/openssl-1.0.1g.tar.gz
tar zxvf openssl-1.0.1g.tar.gz
wget http://zlib.net/zlib-1.2.8.tar.gz
tar zxvf zlib-1.2.8.tar.gz

配置编译选项

cd nginx-1.12.0
./configure --prefix=/usr/local/nginx \ --with-http_realip_module \
--with-http_sub_module \
--with-http_gzip_static_module \ --with-http_stub_status_module \
--with-pcre \
--with-http_ssl_module \
--with-zlib=../zib-1.2.8/ \
--with-openssl=../openssl-1.0.1g/

编译安装nginx

make
make install

启动nginx

/usr/local/nginx/sbin/nginx

查看是否启动

ps aux |grep nginx

看是否有进程

安装mysql

下载 64位 mysql

cd /usr/local/src/
wget h++ttp://mirrors.sohu.com/mysql/MySQL-5.1/mysql-5.1.73-linux-x86_64-glibc23.tar.gz

初始化

tar zxvf mysql-5.1.73-linux-x86_64-glibc23.tar.gz
mv /usr/local/src/mysql-5.1.73-linux-x86_64-glibc23.tar.gz //挪动位置
useradd -s /sbin/nologin mysql //建立mysql用户
cd /usr/local/mysql # mkdir -p /data/mysql //创建datadir,数据库文件会放到这里面
chown -R mysql:mysql /data/mysql //更改权限
./scripts/mysql_install_db --user=mysql --datadir=/data/mysql

遇到错误:

./bin/mysqld: error while loading shared libraries: libstdc++.so.5: cannot open shared object file:

解决办法:

# yum install -y compat-libstdc++-33

配置mysql

拷贝配置文件
cp support-files/my-large.cnf /etc/my.cnf
拷贝启动脚本文件并修改其属性
cp support-files/mysql.server /etc/init.d/mysqld
chmod 755 /etc/init.d/mysqld

修改启动脚本

vim /etc/init.d/mysqld

需要修改的地方有 “datadir=/data/mysql” (前面初始化数据库时定义的目录)。
把启动脚本加入系统服务项,设定开机启动并启动mysql

chkconfig --add mysqld # chkconfig mysqld on # service mysqld start

如果启动不了,请到 /data/mysql/ 下查看错误日志,这个日志通常是主机名.err。检查mysql是否启动的命令为:

ps aux |grep mysqld

接下来给root用户创建密码;

cd /usr/local/mysql/bin/
./mysqladmin -u root password 'adsf'

adsf是你想要输入的密码;
如果需要,也可以直接创建其他用户,并设置权限,这里不过多说明了;

安装PHP

下载源码并创建账号

cd /usr/local/src
wget http://au1.php.net/distributions/php-5.4.44.tar.bz2
tar jxf php-5.4.44.tar.bz2
useradd -s /sbin/nologin php-fpm

配置编译选项

cd php-5.4.44 # ./configure
--prefix=/usr/local/php \
--with-config-file-path=/usr/local/php/etc \
--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
--with-mysqli=/usr/local/mysql/bin/mysql_config

此过程可能会出现大量的问题,主要是缺少各种库。

如:
错误信息:

configure: error: Please reinstall the libcurl distribution - easy.h should be in /include/curl/

解决办法:

yum install -y libcurl-devel

常见的错误这个老铁总结了:
http://lyp.cn/350_how-to-fix-php-compile-errors
还有些错误里面没有叙述,网上稍加搜索便能找到原因;

编译

make
make install

修改配置文件

cp php.ini-production /usr/local/php/etc/php.ini # vim /usr/local/php/etc/php-fpm.conf

把如下内容写入该文件:

[global]
pid = /usr/local/php/var/run/php-fpm.pid
error_log = /usr/local/php/var/log/php-fpm.log
[www]
listen = 127.0.0.1:9000
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

保存配置文件后,检验配置是否正确的方法为:

/usr/local/php/sbin/php-fpm -t

如果出现诸如 “test is successful” 字样,说明配置没有问题,否则就要根据提示检查配置文件是否有问题。

启动php-fpm

首先要拷贝一个启动脚本到/etc/init.d/下

cp /usr/local/src/php-5.3.27/sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm

给它更改权限为755

chmod 755 /etc/init.d/php-fpm # service php-fpm start

如果想让它开机启动,执行:

chkconfig php-fpm on

检测是否启动:

ps aux |grep php-fpm

测试PHP解析

首先配置nginx配置文件,使其能够支持php。

# vim /usr/local/nginx/conf/nginx.conf

找到

location = /50x.html { root html; }

在其后面新增如下配置(或删除#注释):

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/sbin/nginx -s reload

创建测试文件;

vim /usr/local/nginx/html/test.php

在文件内键入:

<?php

echo "hello world";

?>

保存退出;
测试:

crul localhost/test.php

hello world 才是 正确的解析;

当然你也可以在浏览器中测试,虚拟机下先暂时关闭防火墙规则,或者更新规则

service iptables stop

查看本地虚拟机IP:

ifconfig

获得虚拟机IP;
桥接模式下直接访问IP就可以见到

Welcome to nginx!
写的不少了,PHP扩展等问题过几天再说吧

相关文章

网友评论

      本文标题:centos6 下编译安装 LNMP 环境

      本文链接:https://www.haomeiwen.com/subject/uyyvgxtx.html