52AV手機A片王|52AV.ONE

標題: CentOS原始碼安裝搭建LNMP(包括nginx,mysql,php,svn) [打印本頁]

作者: IT_man    時間: 2015-10-31 15:13
標題: CentOS原始碼安裝搭建LNMP(包括nginx,mysql,php,svn)
參考自 : http://blog.csdn.net/yanzi1225627/article/details/49123659; m7 T7 R) \' j1 I& M

8 l9 P  z2 e0 O+ S9 ^

目标:搭建LNMP(Linux + Nginx + MySQL + PHP +SVN),其中svn是用来代替ftp,方便开发中调试同步代码

相关目录:所有软件都安装到/www/目录下,在www目录下新建web文件夹作为网站的根路径,www目录下新建wwwsvn作为svn的仓库地址。/www/software用来放nginx,mysql,php的安装包和源码。nginx运行分组和账户www:www

一,安装前的准备

yum -y install ntp make openssl openssl-devel pcre pcre-devel libpng libpng-devel libjpeg-6b libjpeg-devel-6b freetype freetype-devel gd gd-devel zlib zlib-devel gcc gcc-c++ libXpm libXpm-devel ncurses ncurses-devel libmcrypt libmcrypt-devel libxml2 libxml2-devel imake autoconf automake screen sysstat compat-libstdc++-33 curl curl-devel cmake
/ `% r0 {6 a% Q" p! H: C6 u

直接将所有待安装的依赖安装完。

然后下载nginx ,mysql, php的源代码:

可用 google search engine 搜尋最新版本

将这三份tar.gz文件通过scp命令弄到服务器上/www/software目录下。

二,安装nginx

解压缩文件,然后进到nginx-1.8.0里,输入命令:

./configure --user=www --group=www --prefix=/www/nginx
/ S& G" h0 g, Q# U% Y+ L/ v2 }

然后make,make install就安装完毕了。

安装完后第一件事,创建www的用户和分组,否则会遇到http://blog.itblood.com/nginx-emerg-getpwnam-www-failed.html 的错误。

执行:

/usr/sbin/groupadd -f www
; p* Z% j3 Y- U8 G5 h* F/ a/usr/sbin/useradd M
-s /sbin/nologin -g www www   //-M 不建立使用者目錄

nginx命令在/www/nginx/sbin/下,拷贝到/etc/init.d/一份,接下来设置开机启动。

chmod 755 /etc/init.d/nginx+ @8 f; F- f6 r( a0 Y: g' B
  C5 Y0 L; p. w2 {# q! F6 x% H7 P3 c
chkconfig --add nginx  Y# b7 x( a/ y5 V% |( _: ^( V8 a& g
# I- h% d9 X! T/ n* E; O$ P5 n  R
chkconfig nginx on# \% l7 {* O/ ^) y/ L

然后

cd /etc/rc.d/init.d/ 目录下新建nginx,内容如下:

#!/bin/bash
8 m6 B0 B9 m+ a# nginx Startup script for the Nginx HTTP Server/ K: k) F' A- ?
# it is v.0.0.2 version.5 P: @: I( c) p! n5 c4 L
# chkconfig: - 85 15& X( y# ]" x  x' F! }5 Q
# description: Nginx is a high-performance web and proxy server.' M1 N' f, ]( _
# It has a lot of features, but it's not for everyone.
# W! N; H1 _' S2 J6 J# processname: nginx$ _5 k1 F, q9 h
# pidfile: /var/run/nginx.pid
1 s+ T3 Q' T1 `' q  P; Y6 u# config: /usr/local/nginx/conf/nginx.conf
1 Q! g; m  A8 Q* }+ p% [1 n7 h6 ]nginxd=/www/nginx/sbin/nginx3 Q# T) T7 {/ ^# Q
nginx_config=/www/nginx/conf/nginx.conf2 x( j3 x) D7 ~: }: P6 T$ z$ u
nginx_pid=/www/nginx/logs/nginx.pid
5 A, X. I* h2 M1 HRETVAL=03 H, [$ e9 C9 j2 h
prog="nginx"' o" b+ o: Z7 P# a# N4 n
# Source function library.8 @# g2 \  E0 F
. /etc/rc.d/init.d/functions/ [1 _: H6 \" p
# Source networking configuration.
. S2 u+ @( @4 l1 ~* ^. /etc/sysconfig/network
9 M+ k8 A3 l3 y, I7 ~# Check that networking is up.' k# y. K% m. U1 y/ e# Q( l
[ ${NETWORKING} = "no" ] && exit 0
. N! }5 E" H4 a$ i/ C, o[ -x $nginxd ] || exit 0
5 e  P/ j$ I9 ~3 c2 l; H2 ~8 m# Start nginx daemons functions.
5 T7 a& z; F& N( c) m( {  c/ Xstart() {
! D- t, g/ T' j: `2 {if [ -e $nginx_pid ];then) d0 H6 {/ D: J1 _. ~
echo "nginx already running...."
3 E' v6 t9 w2 J2 _& Z1 i  X1 Aexit 1# `3 y3 g4 H7 y* b1 ^, d
fi( ^; _8 j" P2 X/ y
echo -n $"Starting $prog: ", Q% w! S. T& B0 U/ N5 |/ D8 z
daemon $nginxd -c ${nginx_config}
; L2 k$ }% c  V: B7 s' `3 IRETVAL=$?
; p7 x. p. S, V7 X/ Pecho
' X  B3 k4 M0 r( K4 ]" m[ $RETVAL = 0 ] && touch /var/lock/subsys/nginx
. P5 L4 K+ K5 R3 ?7 ?2 r7 ureturn $RETVAL
% k/ y9 N* C" J& K5 N! d}( ~( u! z- x- F7 i8 D# }
# Stop nginx daemons functions." \  C6 S- q& A# ^% E9 o
stop() {
0 H, m% O8 {7 y4 {3 Mecho -n $"Stopping $prog: "* e) G2 O6 j: m* ]( t  D. P
killproc $nginxd
& q# s; i) o2 Y9 `9 ?$ DRETVAL=$?
& T2 T+ b0 ]4 T" T; R3 r) Fecho: \8 n9 [+ m9 h% Y" ]: V" o
[ $RETVAL = 0 ] && rm -f /var/lock/subsys/nginx /www/nginx/logs/nginx.pid
/ F; T, ?3 S0 j# o( }}
5 j1 X# _, Q/ k( A  E. Greload() {1 @% O% s- e: F4 `
echo -n $"Reloading $prog: "
: o. ?8 a  z! h* ]#kill -HUP `cat ${nginx_pid}`
& N$ ?' W8 H' Q0 Bkillproc $nginxd -HUP
/ ^6 S9 ?1 e- \: |/ f; ^* S1 ORETVAL=$?  l7 ~- l1 W' w  H, [7 v  {
echo
4 m* i% `+ H6 L( p5 b0 {}" f* X) R: i* r0 K) C2 h+ T9 T
# See how we were called.( T2 G$ p1 t  d
case "$1" in
+ B( R2 l; i1 `: Bstart)
" u  J5 A. ^) _/ Xstart
$ N& q. S% @. Q$ Y4 b- e6 _;;
( F' c7 M) m7 S: H. Q5 ?2 istop)
8 g& |- ?/ j3 `1 W  d5 y7 ^* bstop
# u" t9 K4 q2 r! {;;
7 j) _: ~# X6 F& G6 E" k! |! X6 Sreload); K- m" L! }2 S* c* c, z" I
reload" T" y1 ?! Q9 [
;;
) b/ d2 f: `9 d$ k; }8 ~restart)
0 m% {7 T6 j8 g( W4 W/ i) |stop8 H& L. F0 I/ N/ I' A: l
start" D* ]  M, l: _8 t4 e* Z3 e7 }
;;( U7 j+ Z. D9 f  ^9 O2 }
status)
# @" q3 V0 Z! ~2 ustatus $prog# U; A1 u. k0 [! z
RETVAL=$?
- l, D: D: X9 O5 s2 k* f( o;;+ F, x4 `0 [- n% U5 h
*)9 g9 Q+ U: d: @4 o# I0 A' b! f' X
echo $"Usage: $prog {start|stop|restart|reload|status|help}"$ N7 f# z, j; d8 Q: D5 e5 t8 U
exit 1
- ]( U. K! B( M6 `esac
. C# X1 p# z5 j2 b9 F$ Y$ j9 Y) oexit $RETVAL- o% i! `3 B4 m9 [! ^

9 E* k7 d6 g5 W- B# m6 m) D: h

注意:如果nginx的安装路径不是在/www/nginx下,则适当修改就好。

' i9 V' j, w! H% @' _3 p
chmod 775 /etc/rc.d/init.d/nginx #赋予执行权限chkconfig nginx on #设置开机启动/etc/rc.d/init.d/nginx restart 或 service nginx restart至此nginx安装就ok了,但遗留两个问题:3 P% Y. M. `. {3 W

1,是更改默认web根目录在/www/web的问题

2,是与php的整合,默认nginx是不认php得

对于1,nginx默认web根目录在 nginx安装路径下的html文件夹,我们把他改到/www/web目录下。

进到/www/nginx/conf目录下,vim nginx.conf,将

1 I* v+ l  H+ A$ Y6 A
       location / {
6 @' {: D, i3 }6 n            root   html;9 B- m0 V7 @6 _+ T; D: o7 s
            index  index.php index.html index.htm;
0 ]8 P% `: s0 M3 Q        }
/ H: j  g& X: i" g* |' ~6 |+ ]修改为:3 U& c2 J2 w# ?8 D( X& |1 ]  _
  n7 j5 u; l0 b0 I: d' _0 @# P4 o0 k

        location / {

            root   /www/web;

            index  index.html index.php;

        }

注意,增加了对index.php的识别。

- Q" k8 z/ D, b) p8 w
location ~ \.php$ {+ ~. ^  G/ q6 w; P
            root           html;
( ?* @8 Z, |# x: E            fastcgi_pass   127.0.0.1:9000;) ^% E' p% F" N) m- |. ?; C" N
            fastcgi_index  index.php;& W% D& i2 k: y
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;$ V) ]# y: i& `
            include        fastcgi_params;
; y/ U6 \; P, W3 c9 O2 Z        }2 H0 I" G8 O1 D6 Q
修改为:
) {9 f9 ?/ \4 b! q  K! u# L; q* [; O4 u7 T7 D% e# T

        location ~ \.php$ {

            root           /www/web;

            fastcgi_pass   127.0.0.1:9000;

            fastcgi_index  index.php;

            fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;

            #include        fastcgi_params;

            include fastcgi.conf;

       }

然后就ok了。

第二个问题跟php的整合,待安装完毕php后再整。

三,安装MySQL

解压缩并进到源码目录,执行:


/ I  q$ ?- b( t9 j: {: a3 W- R

#cmake -DCMAKE_INSTALL_PREFIX=/www/mysql

之后make make install安装。安装完毕后需要做以下几个事:

1,检查/etc/下是否存在my.conf, 如果有的话通过mv命令改名为

my.cnf.backup

ps:此步骤非常重要!!!

2,创建mysql用户和分组

#/usr/sbin/groupadd mysql: ~5 g, T7 @& M" d: s& v, v* _
; l* e+ k: e8 |
#/usr/sbin/useradd -g mysql mysql 增加mysql用户和分组。: u2 J9 B0 s# t  F+ ~) x' }

执行

cat /etc/passwd 查看用户列表
4 `1 i2 J  b4 S6 ycat /etc/group  查看用户组列表

chown -R mysql:mysql /www/mysql修改mysql安装目录的权限。
: Y& E7 a  d. P: Y$ w  b

3,进到/www/mysql,创建系统自带的数据库。

scripts/mysql_install_db --basedir=/www/mysql --datadir=/www/mysql/data --user=mysql
" U: N; N. L5 \2 \+ h/ {; E

4,添加服务,启动MySQL

cp support-files/mysql.server /etc/init.d/mysql
# a% r; q. u* o  ~6 `6 F+ N% {, u9 Xchkconfig mysql on
0 p2 J4 X( ~6 d  g& {service mysql start  --启动MySQL% p# s# K7 z, n9 f) o" e2 e/ i

5,设置root密码

为了让任何地方都能用mysql/bin下的命令,vim /etc/prifile

添加:

PATH=/www/mysql/bin: $PATH. z& N2 }5 b* l( c
export PATH( n; @4 x7 @/ j* `2 Q9 j

保存后source /etc/profile

执行:


& }6 _+ h8 Q, Dmysql -uroot  mysql> SET PASSWORD = PASSWORD('root');$ u' ?: R6 B3 q- c

* ^, y6 g4 k( b

设置root用户的密码为root。

6,为了支持远程访问数据库,执行;


+ S% M" k- K+ o* C

mysql> grant all on *.* to xroot@"%" identified by "xroot”;

mysql> flush privileges; //更新权限

这样就创建了一个用户名为xroot,密码为xroot的用户,可以远程访问数据库。

四,安装php(php-fpm)

解压并进入源码:


) B6 H  X& r& K& \: Q4 ]' m6 o

#./configure --prefix=/www/php --enable-fpm --with-fpm-user=www --with-fpm-group=www --with-openssl --with-libxml-dir --with-zlib --enable-mbstring --with-mysql=/www/mysql --with-mysqli=/www/mysql/bin/mysql_config --enable-mysqlnd --with-pdo-mysql=/www/mysql --with-gd --with-jpeg-dir --with-png-dir --with-zlib-dir --with-freetype-dir --with-curl

然后make make install。接着需要做以下事:

1,整合nginx,启动php

进到cd /www/php/etc/ 目录下,拷贝php-fpm.conf.default 为php-fpm.conf。执行/www/php/sbin/php-fpm start 启动php-fpm。

2,配置php.ini

将安装源码里的/www/software/php-5.6.14/php.ini-production 拷贝到php的安装目录的lib文件夹下。

3,如果需要安装curl扩展的话(上面的configure已经带了),进到源码ext/curl目录下,保证电脑上已经安装了curl和curl-devel,然后:

a,/www/php/bin/phpize 以下,为了方便可以把这个目录加到/etc/profile里:


5 X9 g) Z5 P' P- b- M! Y

PATH=/www/php/bin:/www/mysql/bin: $PATH

export PATH

b,./configure --with-curl --with-php-config=/www/php/bin/php-config

之后make make install,curl.so会生成在

/www/php/lib/php/extensions/no-debug-non-zts-20131226目录下,然后编辑php.ini找到extension_dir和extension修改即可。

使用 yum 比較方便:

以下是針對 centOS 6.x/x86_64:

yum install php php-mysql php-fpm php-gd php-ldap php-odbc php-pear php-xml php-xmlrpc php-mbstring php-snmp php-soap curl curl-devel

以下是針對 centOS 5.x/i386:

rpm -ivh http://mirror.yandex.ru/epel/5/i386/epel-release-5-4.noarch.rpm# R6 [0 s1 f* _( x# M

7 c3 S4 ]4 m+ C! xrpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-5.rpm
( t7 q" @1 P& T0 r4 VCreate /etc/yum.repos.d/php-fpm.repo file and add:$ R2 n, t( k, O1 a) o# t
  1. [nginx]
    4 N3 p4 H  w0 e6 f9 n
  2. name=nginx repo
    " ~6 x2 b( w! \
  3. baseurl=http://nginx.org/packages/centos/$releasever/$basearch// U( ]/ T! |5 ~' C: j9 u  s1 Q
  4. gpgcheck=0" [9 {0 Q* H1 b( y9 S! ~3 i
  5. enabled=1
複製代碼

; D9 d6 u  {6 c9 l$ ryum --enablerepo=remi,remi-test install php-fpm
6 [) V- d" k( ?$ B8 q  A4 u1 {. `& J$ a

# P5 R' A" j3 H' L( m9 j+ j2 I) _4 K. B五,安装svn配置post-commit

此步作用是代替ftp,方便开发人员开发并同步代码。可以直接通过yum安装即可。

# rpm -qa subversion  //检查是否自带了低版本的svn; t# G+ I1 o0 @  h, K7 g& R

#yum remove subversion //卸载低版本的svn
0 Z$ X; F; _0 ], [

# yum install httpd httpd-devel subversion mod_dav_svn mod_auth_mysql   //安装svn
; Q% t( z- |7 a( S; c$ W- s' M. \! x

通过# svnserve --version验证是否安装成功。接下来就是创建仓库并与web目录同步。

1,mkdir -p /www/wwwsvn  此文件夹就是svn仓库. svnadmin create /www/wwwsvn 创建仓库,执行上述命令后,可以发现里面有conf, db,format,hooks, locks, README.txt等文件,说明一个SVN库已经建立。(ps:此处可以先通过svnserve -d -r /www/svndata 建立svn版本库目录,然后svnadmin在svndata目录下新建仓库)

2,配置用户和密码

在wwwsvn下进到conf文件夹,里面有三个文件:authz  passwd  svnserve.conf均要编辑。

#vim passwd //设置用户和密码

[users]
$ O* k1 t& Q( w# harry = harryssecret/ S2 q5 j: |$ b9 B
# sally = sallyssecret# V0 T% h% v. i+ b: d4 u6 K5 ?
wangning=wangning
" C# R$ l( A1 v9 S  @yanzi=yanzi) `% ~3 V/ d: _

#vim authz  //设置权限

/ a; S# s8 K8 l

[/]

wangning = rw

yanzi = rw

# &joe = r

# * =

#vim svnserve.conf

anon-access = none7 N/ ^/ \3 H  X/ P# m
auth-access = write& _. T+ i8 r: T& m% a( u& _
### The password-db option controls the location of the password9 @: q$ \: ^; X6 a& Q0 D. h, T( F
### database file.  Unless you specify a path starting with a /,) l6 m* h; }, j3 \
### the file's location is relative to the directory containing
6 N6 D  ?: m3 {6 C% R/ O) S8 e### this configuration file.; v3 h5 U; a; W7 p; ?( a) T; o
### If SASL is enabled (see below), this file will NOT be used.+ h# n  }2 X8 b4 o9 ~
### Uncomment the line below to use the default password file.( n: _" s4 Q3 f
password-db = passwd
+ D/ N0 R. M, x8 i### The authz-db option controls the location of the authorization) p" i& R- S; ~% ]" G$ u: l
### rules for path-based access control.  Unless you specify a path; ]" a8 [  Q# P' v* P) b: v
### starting with a /, the file's location is relative to the the
1 R# w  o, N' d### directory containing this file.  If you don't specify an
3 E' _5 x' V8 u: [### authz-db, no path-based access control is done.
' p  D  Y5 z+ y& X: A### Uncomment the line below to use the default authorization file.
6 `. H* I9 Y- r* o% `& L, I/ o  Xauthz-db = authz
4 w1 w) ?' t; S8 |$ U2 d### This option specifies the authentication realm of the repository.8 k9 n- a" r/ I* y& G
### If two repositories have the same authentication realm, they should
- D3 ]. l1 x& _5 m0 J9 }  @### have the same password database, and vice versa.  The default realm5 i% L7 g0 z1 W( y: h% I
### is repository's uuid.3 F% V) `% e4 G% M" O
realm = My First Repository' x9 g7 N: B; X2 T. k7 P6 f

注意:上面这些有效行前面不能有空格。

3,启动及停止svn

#svnserve -d -r /www/wwwwvn   //启动svn
2 y) e3 n* Y% ?2 S& M' @) q# L

#killall svnserve    //停止. t) \; l. x" N

待启动svn后,可以在外面测试了。

svn checkout svn://192.1.15.222 --username xxx
2 Y. o" T5 m3 D

4,配置post-commit

经过上述配置后,svn的仓库地址是/www/wwwsvn, 但是web的根目录是/www/web,两者不是一个目录,无法svn push上来就看到作用。

a,首先在server的终端里,#svn co svn://192.1.15.222 /www/web

记得将/www/web目录权限修改为www:www。

chown -R www:www /www/web# l/ m8 J3 Y, L4 ^- |. \0 H

b, # cd /www/wwwsvn/hooks/,然后cp post-commit.tmpl post-commit  

vim post-commit,在里面输入:

5 q% ]" k: p" V5 e/ G

export LANG=zh_CN.UTF-8

svn up --username yanzi --password yanzi /www/web/

chown -R www:www /www/web/

然后就一切ok了,在外面svn commit看看web目录里有么有对应文件吧!

ps:

1,svn up后面的名字和密码是之前设的svn用户。

2,上面up就是update的意思,按git的意思来理解,就是有个仓库A,然后新建了个B去跟踪A,每次A有提交的时候,让B也pull一下过来。在svn里是update。

3 , 裝完nginx php-fpm 須將 SElinux 安全政策關閉,否則網頁會出現 "Access denied" :
# L& V4 S' W- c. `* q! V

#system-config-securitylevel

選擇DISABLE後按OK,必須重開機


" D4 P9 }+ ^+ c% {執行setenforce 0就可以暫時關閉功能,執行setenforce 1就可以暫時打開功能

vi /etc/sysconfig/selinux

SELINUX=enforcing 改成--> SELINUX=disabled

! K4 @' L3 v  r0 G
vi /var/log/audit/audit.log (或 tail -f /var/log/audit/audit.log) 查看 SElinux 有何問題& E( C& p5 O" R& b4 s





歡迎光臨 52AV手機A片王|52AV.ONE (https://www.itech.casa/) Powered by Discuz! X3.2