本文档介绍如何使用一台普通配置的云服务器ECS实例搭建LNMP平台的web环境。
适用对象
适用于熟悉Linux操作系统,刚开始使用阿里云进行建站的个人用户。
基本流程
使用云服务器 ECS 搭建LNMP平台的操作步骤如下:
步骤一:准备编译环境
本文主要说明手动安装LNMP平台的操作步骤,您也可以在云市场购买LNMP镜像直接启动ECS,以便快速建站。
1、系统版本说明
# cat /etc/redhat-release CentOS release 6.5 (Final)
注:这是本文档实施时参考的系统版本。您的实际使用版本可能与此不同,下文中的Nginx,MysqL,及PHP版本,您也可以根据实际情况选择相应版本。
2、关闭SELINUX
# sed -i 's/SELINUX=.*/SELINUX=disabled/g' /etc/selinux/config
命令行设置立即生效。
# setenforce 0
3、安全组设置
在ECS安全组放行需访问的端口和访问白名单,下面的示例表示允许所有IP访问服务器的80端口。您可以根据实际情况放行允许访问的客户端IP。
步骤二:安装Nginx
Nginx是一个小巧而高效的Linux下的Web服务器软件,是由 Igor Sysoev 为俄罗斯访问量第二的 Rambler.ru 站点开发的,已经在一些俄罗斯的大型网站上运行多年,目前很多国内外的门户网站、行业网站也都在是使用Nginx,相当稳定。
# groupadd -r Nginx # useradd -r -g Nginx Nginx
2、下载源码包解压编译。
# wget http://Nginx.org/download/Nginx-1.10.2.tar.gz# tar xvf Nginx-1.10.2.tar.gz -C /usr/local/src# yum groupinstall "Development tools"# yum -y install gcc wget gcc-c++ automake autoconf libtool libxml2-devel libxslt-devel perl-devel perl-ExtUtils-Embed pcre-devel openssl-devel# cd /usr/local/src/Nginx-1.10.2# ./configure \--prefix=/usr/local/Nginx \sbin-pathconfetcNginx.conf \errorlogvarlog \httpaccesspidrunpid \locklock \clientbodytemptmpclient \proxyproxy \fastcgifcgi \uwsgiuwsgi \scgiscgi \user=groupwithpcre \http_v2_module \http_ssl_module \http_realip_module \http_addition_module \http_sub_module \http_dav_module \http_flv_module \http_mp4_module \http_gunzip_module \http_gzip_static_module \http_random_index_module \http_secure_link_module \http_stub_status_module \http_auth_request_module \mail \mail_ssl_module \fileaio \ipv6 \threads \stream \stream_ssl_module# make && make install# mkdir -pv /var/tmp/Nginx/client
3、添加SysV启动脚本。
# vim /etc/init.d/Nginx#!/bin/sh # # Nginx - this script starts and stops the Nginx daemon # chkconfig: - 85 15 # description: Nginx is an HTTP(S) server,HTTP(S) reverse \ # proxy and IMAP/POP3 proxy server # processname: Nginx # config: /etc/Nginx/Nginx.conf # config: /etc/sysconfig/Nginx # pidfile: /var/run/Nginx.pid # Source function library. rcdinitfunctions# Source networking configuration. sysconfignetwork# Check that networking is up. [ "$NETWORKING""no"]&& exit 0="/usr/sbin/Nginx"prog$(basename $Nginx)Nginx_CONF_FILE"/etc/Nginx/Nginx.conf"f Nginx Nginxlockfilesubsysstart(){x $Nginx ||5f $Nginx_CONF_FILE 6 echo n $"Starting $prog: " daemon $Nginx c $Nginx_CONF_FILE retval? echo $retval eq touch $lockfile return $retval}stop"Stopping $prog: " killproc $prog QUIT rm f $lockfile $retvalkillall -9 Nginxrestart configtest $ stop sleep 1 startreload"Reloading $prog: " killproc $Nginx HUPRETVALforce_reload restartconfigtest$Nginx t c $Nginx_CONF_FILErh_status status $progrh_status_q rh_status >/devnull 2>&1}case"$1"in rh_status_q $1;; stop| reload7 force force_reload status rh_status condrestarttry*) echo $"Usage: $0 {start|stop|status|restart|condrestart|try-restart|reload|force-reload|configtest}"2esac
4、赋予脚本执行权限。
# chmod +x /etc/init.d/Nginx
5、添加至服务管理列表,设置开机自启。
# chkconfig --add Nginx# chkconfig Nginx on
6、启动服务。
# service Nginx start
7、浏览器访问可看到默认欢迎页面。
步骤三:安装MysqL
1、准备编译环境。
# yum groupinstall "Server Platform Development" "Development tools" -y# yum install cmake -y
2、准备MysqL数据存放目录。
# mkdir /mnt/data# groupadd -r MysqL# useradd -r -g MysqL -s /sbin/nologin MysqL# id MysqLuid=497MysqL gid498 groups)
3、更改数据目录属主属组。
# chown -R MysqL:MysqL /mnt/data
4、解压编译在MySQL官网下载的稳定版源码包,这里使用的是5.6.24版本
# tar xvf MysqL-5.6.24.tar.gz -C /usr/local/src# cd /usr/local/src/MysqL-5.6.24# cmake . -DCMAKE_INSTALL_PREFIX=/usr/local/MysqL \DMysqL_DATADIRmntdata \DSYSCONFDIRetc \DWITH_INNOBASE_STORAGE_ENGINE \DWITH_ARCHIVE_STORAGE_ENGINEDWITH_BLACKHOLE_STORAGE_ENGINEDWITH_READLINEDWITH_SSLsystem \DWITH_ZLIBDWITH_LIBWRAPDMysqL_TCP_PORT3306DMysqL_UNIX_ADDRsock \DDEFAULT_CHARSETutf8 \DDEFAULT_COLLATIONutf8_general_ci# make && make install
# chown -R MysqL:MysqL /usr/local/MysqL/
6、初始化数据库。
# /usr/local/MysqL/scripts/MysqL_install_db --user=MysqL --datadir=/mnt/data/
注:在CentOS 6.5版操作系统的最小安装完成后,在/etc目录下会存在一个my.cnf,需要将此文件更名为其他的名字,如:/etc/my.cnf.bak,否则,该文件会干扰源码安装的MysqL的正确配置,造成无法启动。
7、拷贝配置文件和启动脚本。
# cp /usr/local/MysqL/support-files/MysqL.server /etc/init.d/MysqLd# chmod +x /etc/init.d/MysqLd# cp support-files/my-default.cnf /etc/my.cnf
8、设置开机自动启动。
# chkconfig MysqLd on # chkconfig --add MysqLd
# echo -e "basedir = /usr/local/MysqL\ndatadir = /mnt/data\n" >> /etc/my.cnf
10、设置PATH环境变量。
# echo "export PATH=$PATH:/usr/local/MysqL/bin" > /etc/profile.d/MysqL.sh # source /etc/profile.d/MysqL.sh
11、启动服务。
# service MysqLd start # MysqL -h 127.0.0.1
步骤四:安装PHP-fpm
Nginx本身不能处理PHP,作为web服务器,当它接收到请求后,不支持对外部程序的直接调用或者解析,必须通过FastCGI进行调用。如果是PHP请求,则交给PHP解释器处理,并把结果返回给客户端。PHP-FPM是支持解析PHP的一个FastCGI进程管理器。提供了更好管理PHP进程的方式,可以有效控制内存和进程、可以平滑重载PHP配置。
1、安装依赖包。
# yum install libmcrypt libmcrypt-devel mhash mhash-devel libxml2 libxml2-devel bzip2 bzip2-devel
2、解压官网下载的源码包,编译安装。
# tar xvf PHP-5.6.23.tar.bz2 -C /usr/local/src# cd /usr/local/src/PHP-5.6.23# ./configure --prefix=/usr/local/PHP \configscandirPHPd \MysqL \MysqLibinMysqL_config \enablembstring \freetypedir \jpegpngzlib \libxmlusr \openssl \xml \sockets \fpm \mcrypt \bz2 3、添加PHP和PHP-fpm配置文件。# cp /usr/local/src/PHP-5.6.23/PHP.ini-production /etc/PHP.ini# cd /usr/local/PHP/etc/# cp PHP-fpm.conf.default PHP-fpm.conf# sed -i 's@;pid = run/PHP-fpm.pid@pid = /usr/local/PHP/var/run/PHP-fpm.pid@' PHP-fpm.conf
# cp /usr/local/src/PHP-5.6.23/sapi/fpm/init.d.PHP-fpm /etc/init.d/PHP-fpm# chmod +x /etc/init.d/PHP-fpm
# chkconfig --add PHP-fpm # chkconfig --list PHP-fpm # chkconfig PHP-fpm on
# service PHP-fpm start
7、添加Nginx对fastcgi的支持,首先备份默认的配置文件。
# cp /etc/Nginx/Nginx.conf /etc/Nginx/Nginx.confbak# cp /etc/Nginx/Nginx.conf.default /etc/Nginx/Nginx.conf
编辑/etc/Nginx/Nginx.conf,在所支持的主页面格式中添加PHP格式的主页,类似如下:
location root html; index indexPHP indexhtml indexhtm}
取消以下内容前面的注释:
~ \.PHP$ fastcgi_pass 127.0.0.1:9000 fastcgi_index index fastcgi_param SCRIPT_FILENAME $fastcgi_script_name include fastcgi_params 重新载入Nginx的配置文件。
# service Nginx reload
在/usr/local/Nginx/html/新建index.PHP的测试页面,内容如下。
# cat index.PHP<?PHP$connMysqL_connect('127.0.0.1','root''');if){ echo "LNMP platform connect to MysqL is successful!";else"LNMP platform connect to MysqL is Failed!" PHPinfo();?>
浏览器访问测试,如看到以下内容则表示LNMP平台构建完成。
原文链接:https://www.f2er.com/centos/376135.html