LNMP環境搭建

安裝MySQL

 

咱們平時安裝MySQL都是源碼包安裝的,可是因爲它的編譯須要很長的時間,因此,阿銘建議你安裝二進制免編譯包。你能夠到MySQL官方網站去下載 http://dev.mysql.com/downloads/ 具體版本根據你的平臺和需求而定,目前比較經常使用的爲mysql-5.0/mysql-5.1, 5.5版本雖然已經發布有段日子了,可是貌似用在線上跑服務的仍是少數。因此,阿銘建議你下載一個5.1的版本。可使用阿銘提供的地址下載。下面是安裝步驟:javascript

  1. 下載mysql到/usr/local/src/
cd /usr/local/src/
wget http://mirrors.sohu.com/mysql/MySQL-5.1/mysql-5.1.72-linux-x86_64-glibc23.tar.gz
  1. 解壓
[root@localhost src]# tar zxvf /usr/local/src/mysql-5.1.72-linux-x86_64-glibc23.tar.gz
 
  
  1. 把解壓完的數據移動到/usr/local/mysql
[root@localhost src]# mv mysql-5.1.72-linux-x86_64-glibc23 /usr/local/mysql 
  1. 創建mysql用戶
[root@localhost src]# useradd -s /sbin/nologin mysql
  1. 初始化數據庫
[root@localhost src]# cd /usr/local/mysql
[root@localhost mysql]# mkdir -p /data/mysql ; chown -R mysql:mysql /data/mysql
[root@localhost mysql]# ./scripts/mysql_install_db --user=mysql --datadir=/data/mysql

--user 定義數據庫的所屬主, --datadir 定義數據庫安裝到哪裏,建議放到大空間的分區上,這個目錄須要自行建立。這一步驟很關鍵,若是你看到兩個 「OK」 說明執行正確,不然請仔細查看錯誤信息,若是你實在解決不了,請把問題發到論壇 (http://www.aminglinux.com/bbs/forum-40-1.html)阿銘會來幫你解決問題。php

  1. 拷貝配置文件
[root@localhost mysql]# cp support-files/my-large.cnf /etc/my.cnf
  1. 拷貝啓動腳本文件並修改其屬性
[root@localhost mysql]# cp support-files/mysql.server  /etc/init.d/mysqld
[root@localhost mysql]# chmod 755 /etc/init.d/mysqld
  1. 修改啓動腳本
[root@localhost mysql]# vim /etc/init.d/mysqld

須要修改的地方有 「datadir=/data/mysql」 (前面初始化數據庫時定義的目錄)css

  1. 把啓動腳本加入系統服務項,並設定開機啓動,啓動mysql
[root@localhost mysql]# chkconfig --add mysqld
[root@localhost mysql]# chkconfig mysqld on
[root@localhost mysql]# service mysqld start

若是啓動不了,請到 /data/mysql/ 下查看錯誤日誌,這個日誌一般是主機名.err. 檢查mysql是否啓動的命令爲:html

[root@localhost mysql]# ps aux |grep mysqld

安裝php

這裏要先聲明一下,針對Nginx的php安裝和針對apache的php安裝是有區別的,由於Nginx中的php是以fastcgi的方式結合nginx的,能夠理解爲nginx代理了php的fastcgi,而apache是把php做爲本身的模塊來調用的。一樣的,阿銘建議你使用5.3版本。php官方下載地址: http://www.php.net/downloads.phpjava

  1. 下載php
[rot@localhost httpd-2.2.24]# cd /usr/local/src
[root@localhost src]# wget http://am1.php.net/distributions/php-5.3.27.tar.gz
  1. 解壓php
[root@localhost src]# tar zxf php-5.3.27.tar.gz
  1. 建立相關帳戶
[root@localhost src]# useradd -s /sbin/nologin php-fpm
  1. 配置編譯參數
[root@localhost src]# cd php-5.3.27
[root@localhost php-5.3.27]# ./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 \
--disable-ipv6 \
--with-pear \
--with-curl \
--with-openssl

該過程當中,若是出現以下錯誤,請按照阿銘給出的解決辦法解決,若是出現的錯誤阿銘並無寫出來,請參考上一章LAMP的php安裝步驟(http://study.lishiming.net/chapter17.html#php)node

錯誤信息:python

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

解決辦法:mysql

yum install -y libcurl-devel gcc libxml2 libxml2-devel openssl openssl-devel curl-devel libjpeg-devel libpng libpng-devel freetype-devel php-mcrypt  libmcrypt  libmcrypt-devel 
  1. 編譯php
[root@localhost  php-5.3.27]# make

在這一步,你一般會遇到一些錯誤,沒有關係,遇到錯誤是好事,這樣能夠增長你處理問題的經驗。阿銘一樣也遇到了錯誤:linux

/usr/bin/ld: cannot find -lltdl
collect2: ld returned 1 exit status
make: *** [sapi/fpm/php-fpm] 錯誤 1

阿銘是這樣解決的:nginx

yum install -y libtool-ltdl-devel
  1. 安裝php
[root@localhost  php-5.3.27]# make install

以上每個步驟,若是沒有徹底執行正確,那麼下一步是沒法進行的,是否還記得判斷執行是否正確的方法? 使用 echo $? 看結果是否爲 「0」 , 若是不是,就是沒有執行正確。

  1. 修改配置文件
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 = /tmp/php-fcgi.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

保存配置文件後,檢驗配置是否正確的方法爲:

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

若是出現諸如 「test is successful」 字樣,說明配置沒有問題。

  1. 啓動php-fpm
cp /usr/local/src/php-5.3.27/sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm
chmod 755 /etc/init.d/php-fpm
service php-fpm start

若是想讓它開機啓動,執行:

chkconfig php-fpm on

檢測是否啓動:

ps aux |grep php-fpm

看看是否是有不少個進程(大概20多個)。

安裝nginx

Nginx官方網站(http://nginx.org), 從官方網站能夠看到nginx更新速度很快,這也反映了一個事實,目前使用nginx跑網站的公司或者我的愈來愈多。當前最新版本爲1.5, 可是阿銘不建議你安裝這麼新的,由於它還太新,不免會有一些bug或者漏洞,因此阿銘建議你安裝1.4版本的nginx.

(近期nginx報出一個安全漏洞,影響版本很廣 CVE-2013-4547,因此以前的老版本都須要升級一下, 1.4.4, 1.5.7以及日後版本沒有問題)

  1. 下載nginx
cd /usr/local/src/
wget http://nginx.org/download/nginx-1.4.4.tar.gz
  1. 解壓nginx
tar zxvf nginx-1.4.4.tar.gz
  1. 配置編譯參數
yum -y install zlib zlib-devel openssl openssl--devel pcre pcre-devel 
cd nginx-1.4.4 ./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
  1. 編譯nginx
make
  1. 安裝nginx
make install

由於nginx比較小,因此很快就會安裝完,並且也不會出什麼錯誤,若是出錯了,到阿銘論壇(http://www.aminglinux.com/bbs/forum-40-1.html)發帖求助阿銘吧。

  1. 編寫nginx啓動腳本,並加入系統服務
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
  1. 更改nginx配置

首先把原來的配置文件清空:

> /usr/local/nginx/conf/nginx.conf

「>」 這個符號以前阿銘介紹過,爲重定向的意思,單獨用它,能夠把一個文本文檔快速清空。

vim /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;

server
{
    listen 80;
    server_name localhost;
    index index.html index.htm index.php;
    root /usr/local/nginx/html;

    location ~ \.php$ {
        include fastcgi_params;
        fastcgi_pass unix:/tmp/php-fcgi.sock;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME /usr/local/nginx/html$fastcgi_script_name;
    }

}

}

保存配置後,先檢驗一下配置文件是否有錯誤存在:

/usr/local/nginx/sbin/nginx  -t

若是顯示內容以下,則配置正確,不然須要根據錯誤提示修改配置文件:

nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is ok
nginx: configuration file /usr/local/nginx/conf/nginx.conf test is successful

啓動nginx:

service nginx start

若是不能啓動,請查看 「/usr/local/nginx/logs/error.log」 文件,檢查nginx是否啓動:

ps aux |grep nginx

看是否有進程。

測試是否解析php文件

建立測試文件:

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

內容以下:

<?php
    echo "測試php是否解析";
?>

測試:

[root@localhost nginx]# curl localhost/2.php
測試php是否解析[root@localhost nginx]#

顯示成這樣,才說明php解析正確。

參考:http://www.apelearn.com/study_v2/chapter18.html

相關文章
相關標籤/搜索