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
  i" d: @( Y1 m2 V- a
; c1 V: u; A2 j

目标:搭建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
7 M9 M# G. C0 j' g" ]+ Z% `( r

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

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

可用 google search engine 搜尋最新版本

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

二,安装nginx

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

./configure --user=www --group=www --prefix=/www/nginx$ h) @( i2 A  }7 M( {

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

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

执行:

/usr/sbin/groupadd -f www
% Z5 e! m0 ]; Y& Y* z, m0 X# 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* F6 J& _2 ~5 ?7 L* S3 i" e
) n! M; G; y' A# g
chkconfig --add nginx
* C; x9 p5 f) ]3 I. x' Y- l" N2 U0 Q7 Q2 Q* ^7 H* D( h8 F
chkconfig nginx on
' h; Y, Q+ ^1 x  ^0 L

然后

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

#!/bin/bash
! X& m% ^+ q6 p& Q( f# nginx Startup script for the Nginx HTTP Server
+ \8 B0 \6 ^' g, {: F, C# it is v.0.0.2 version.( Y& C' K/ _1 K( c; i9 L' U4 ^+ r
# chkconfig: - 85 15
9 u4 X; l" z! Z# description: Nginx is a high-performance web and proxy server.
  q* R, [+ @6 L& ~+ v# It has a lot of features, but it's not for everyone.; z  P+ A8 W# i; @( c+ T
# processname: nginx
) d/ ]2 X: d) e- z' L2 ^  l# pidfile: /var/run/nginx.pid+ o0 k3 r* `3 X6 r
# config: /usr/local/nginx/conf/nginx.conf
5 O! T% ]! e! Y( p. `- onginxd=/www/nginx/sbin/nginx
- N' K' `- _0 Z# m- @4 M6 ynginx_config=/www/nginx/conf/nginx.conf0 W3 v) x$ M+ F" i* n2 h
nginx_pid=/www/nginx/logs/nginx.pid
$ t4 [- ^" Q6 d7 QRETVAL=0
. U* A* G* i" @; E1 tprog="nginx"
1 h, J$ l* v/ ^# Source function library.  i- D* G2 y+ Q9 N4 |% q" t
. /etc/rc.d/init.d/functions* N/ Z9 e$ Y4 k
# Source networking configuration.# [3 U% S3 E. o$ V' A* M
. /etc/sysconfig/network" k. \$ w7 H' R5 N7 U5 N
# Check that networking is up.0 U5 \& o5 J, }5 p6 @
[ ${NETWORKING} = "no" ] && exit 0& e6 V" _7 K0 T3 `9 D" ~2 T
[ -x $nginxd ] || exit 05 X' y* E& U3 J. n6 g' n0 i: f
# Start nginx daemons functions.+ d% K3 `0 W# v& y6 W
start() {) n6 l& I' p- f, _3 _) l9 e/ g! Q
if [ -e $nginx_pid ];then
3 Q2 q3 s! ?% |* \3 K4 U3 Wecho "nginx already running...."8 N. d: r1 B* V3 B. D
exit 18 ^" z1 o7 c. X% S* H
fi
+ t; @, j7 ^! Z; W7 hecho -n $"Starting $prog: "
/ j' i1 r" B4 G9 Gdaemon $nginxd -c ${nginx_config}! k- q% ~/ S: c
RETVAL=$?
& K* i* n5 X( G2 r$ j5 Q9 techo) U+ z3 u+ m$ \( E0 f; P6 Y
[ $RETVAL = 0 ] && touch /var/lock/subsys/nginx
) L1 R% z# _! o5 dreturn $RETVAL
: D4 f7 L, L+ C+ m! |}
, T6 L0 a* v  ~% U# Stop nginx daemons functions.5 L6 {, J, F* m- C* ~
stop() {1 k3 e- r. j9 ^2 {( c+ g0 g
echo -n $"Stopping $prog: ": n" @; F1 n% ]6 g, ~# g: L7 T, p
killproc $nginxd
5 s0 ]' Z: I) {7 j' `) xRETVAL=$?
5 D6 p7 }) J" D! s, Techo
/ w7 _+ J. s6 ]' F9 d[ $RETVAL = 0 ] && rm -f /var/lock/subsys/nginx /www/nginx/logs/nginx.pid
- C6 a) ?/ J$ C3 \}
- ]% |9 f( X) H0 W; h8 preload() {4 M; h2 i9 r# S5 V' W  L5 V; W
echo -n $"Reloading $prog: "
7 |7 L/ @8 y5 J; t$ Z7 M6 n#kill -HUP `cat ${nginx_pid}`1 \" ^; J. E$ J: |+ D' c& s7 z
killproc $nginxd -HUP
8 C, \: O7 N) c. N; j) C6 [RETVAL=$?
6 V  L! `" i# M1 \$ k  u, ?echo
  i. V, r9 r( A$ N! C8 Q}( o8 p+ M) |- z0 |  u0 \( k
# See how we were called.: H8 U3 S2 V, `! @" [  h" _
case "$1" in
! x1 }* ]: |) bstart)
- Q" L) S$ K2 f$ O, T6 Vstart
+ }+ t+ D9 j- }; y2 r9 ^; e;;* X* t! V. `5 F1 P0 Q9 `
stop)4 |& _3 H# A) N7 J7 ?3 B/ O5 w
stop6 i" D: g* j2 o
;;
' o" k' s3 \; V" ]; W9 ~reload)
' n& G* X8 `  N7 t8 Creload( U6 n8 j3 I7 a2 W
;;
3 V+ Q2 Q% z5 A# l# q6 Grestart)+ a! x8 U8 d* L* Q" @
stop
5 f% L6 w" P; L% ~, astart
  x5 ~7 j$ v* I9 q' E;;
- i3 x9 p7 `. s9 Y# Y* Estatus): l3 v; S6 J* E, d( B" M
status $prog+ r( K/ `( ^6 b- q& Q
RETVAL=$?
0 J* s/ I& u; c;;
6 c) j: \6 c, i*)+ X; k1 q& S' V6 d) m
echo $"Usage: $prog {start|stop|restart|reload|status|help}"
( a! t1 ]0 W5 z4 h* w8 V/ zexit 1
; i9 W- D$ n. T' |# e% C; Sesac7 I* X. E% T1 L% N" M: ?" \$ h
exit $RETVAL& ?" ~/ v! J6 e) v$ a$ ^

* G' c; ^8 V4 G+ `

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

" U! j8 }$ K/ j" z1 {
chmod 775 /etc/rc.d/init.d/nginx #赋予执行权限chkconfig nginx on #设置开机启动/etc/rc.d/init.d/nginx restart 或 service nginx restart至此nginx安装就ok了,但遗留两个问题:
6 Z* D; l6 v: ^* L) ?; t

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

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

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

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

. S$ |$ B# d1 p' I8 i2 e
       location / {
2 {9 \9 \  l( v3 Y% X8 a6 f            root   html;
4 {" }' ^' w$ b, s2 v  X7 O            index  index.php index.html index.htm;
3 P4 B$ t4 J5 Q2 q# G+ V+ E' B        }
, P7 C- ^( X2 g修改为:0 B7 d0 Q! c# }" T0 c
8 u! y8 n' W! O2 }, l1 U; Y! c

        location / {

            root   /www/web;

            index  index.html index.php;

        }

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


( [& l# ^: \" L8 f8 Vlocation ~ \.php$ {/ y; l! {8 G# s0 k2 u) o+ t
            root           html;  ~# G  e) ?0 B% F) Q! J$ W
            fastcgi_pass   127.0.0.1:9000;
/ w0 c# H+ J0 b, `3 D$ m) [% }            fastcgi_index  index.php;1 q# A- }" m! W$ H# y
            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
5 d' p0 w3 H1 L8 E, [            include        fastcgi_params;
% V: u% I0 z( {  E7 X        }
9 U3 [# J; D$ h5 F2 S( S! S6 F3 d  G修改为:
, Z4 t+ N! k1 L% X1 |* d" C
/ b0 b2 X! B; E% y& _

        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

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

! U8 H- p! L/ u

#cmake -DCMAKE_INSTALL_PREFIX=/www/mysql

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

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

my.cnf.backup

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

2,创建mysql用户和分组

#/usr/sbin/groupadd mysql
% j7 V# g9 J* u# W# d7 o+ t' l* d1 B
#/usr/sbin/useradd -g mysql mysql 增加mysql用户和分组。( L- Q9 v. _8 o: O

执行

cat /etc/passwd 查看用户列表. j- w- }8 ], Q- C! K7 q; s7 F
cat /etc/group  查看用户组列表

chown -R mysql:mysql /www/mysql修改mysql安装目录的权限。. G  }$ |/ e) O; N

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

scripts/mysql_install_db --basedir=/www/mysql --datadir=/www/mysql/data --user=mysql* @% x( k1 u& J/ X$ b

4,添加服务,启动MySQL

cp support-files/mysql.server /etc/init.d/mysql
9 ~8 u8 l! E3 @- v4 E0 V# gchkconfig mysql on6 n' G) o. j& J( B1 V% _9 K) X
service mysql start  --启动MySQL
3 t+ y7 g1 n! R& s! Z1 ^9 [1 y

5,设置root密码

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

添加:

PATH=/www/mysql/bin: $PATH0 R* b# M% N( O
export PATH
3 n( f# E" p3 b7 k3 f7 z% G

保存后source /etc/profile

执行:

4 U- O  |4 }- }
mysql -uroot  mysql> SET PASSWORD = PASSWORD('root');
1 _- V5 \$ B4 S" ?- ^

& W# i  z7 p0 [1 G' c1 O5 U

设置root用户的密码为root。

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

) v( p6 `9 m" p; R( Q1 I

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

mysql> flush privileges; //更新权限

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

四,安装php(php-fpm)

解压并进入源码:

5 X( f) J; u- M0 c

#./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里:

$ W! J! Z0 r& `; A( A

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.rpm1 i; ~9 G. [4 f0 \2 a6 J

5 Q- n0 h- G% ~. \" Y! q5 E. y; srpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-5.rpm1 X1 q/ _. C& ]  j  X& S6 o  o
Create /etc/yum.repos.d/php-fpm.repo file and add:
; L# ]5 W' \  _6 N, g
  1. [nginx]
    0 j7 H' }$ H# O4 G5 i: W
  2. name=nginx repo
    + h* n1 y' [4 Z" t- `  L
  3. baseurl=http://nginx.org/packages/centos/$releasever/$basearch/% a1 u1 F  S5 g; q6 M
  4. gpgcheck=0
    + C: F6 S/ D+ C2 ~( F
  5. enabled=1
複製代碼

  `  u% R0 m3 wyum --enablerepo=remi,remi-test install php-fpm
) W9 u, P: ^  x. U" R+ P6 [1 U
* j9 E  S+ a* k/ J. x

" p7 o, w" i1 T5 p' j五,安装svn配置post-commit

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

# rpm -qa subversion  //检查是否自带了低版本的svn
* L2 N: D" t5 F$ P' u) _

#yum remove subversion //卸载低版本的svn! U: t1 _. r1 r7 x# Z( `7 z' Y

# yum install httpd httpd-devel subversion mod_dav_svn mod_auth_mysql   //安装svn& Y) [0 u6 S4 O6 C7 m: z4 w

通过# 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]
; @* q0 K3 R0 B& z' x! w# harry = harryssecret6 I  W( Z4 L. M% K
# sally = sallyssecret+ h. @# ?1 x! T( d
wangning=wangning
; ^, R7 A, z6 c2 q% j% {/ W* vyanzi=yanzi
% I" N+ K% Y- O3 k8 Y

#vim authz  //设置权限


! M. c: V; _3 S. J  l

[/]

wangning = rw

yanzi = rw

# &joe = r

# * =

#vim svnserve.conf

anon-access = none
$ [# I$ r  m9 ^! o% d1 H7 Zauth-access = write( {# @3 p5 |/ B0 I% k/ v- ]% I  c
### The password-db option controls the location of the password
/ M5 d0 A. o9 G- G### database file.  Unless you specify a path starting with a /,
! c" }* ^6 k" z### the file's location is relative to the directory containing8 }- k, g5 u. f* `) I- U& E
### this configuration file.
% m9 `' X. `8 Z, p% ~, m### If SASL is enabled (see below), this file will NOT be used.3 W% y2 N# T& a
### Uncomment the line below to use the default password file.
8 @$ }& h$ H6 I7 T1 _password-db = passwd
  |! n2 |0 ^7 m### The authz-db option controls the location of the authorization8 g* [( a/ Y( H4 u' H  R" q
### rules for path-based access control.  Unless you specify a path
% j9 I% Z5 ]7 D* A, |### starting with a /, the file's location is relative to the the
8 X2 [: L# T" j5 n% J( H  o### directory containing this file.  If you don't specify an  Y1 h0 X) q: b/ Q7 v: L
### authz-db, no path-based access control is done.' Q! S  o% {# f! H$ @8 ]' ~
### Uncomment the line below to use the default authorization file.. _6 k/ g- ?3 p
authz-db = authz
# _8 A& ~5 m. i' G### This option specifies the authentication realm of the repository.. m' h& L; p' f* [. `) Y9 c
### If two repositories have the same authentication realm, they should
, u2 N1 B, z( x; l0 r: W### have the same password database, and vice versa.  The default realm
1 ~9 U8 W# m% M9 J) }4 p/ _: R0 u### is repository's uuid.. Q3 U% w( p# J" X8 Y- o. d
realm = My First Repository' B* ^2 Q7 m- O, {; t

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

3,启动及停止svn

#svnserve -d -r /www/wwwwvn   //启动svn- k- c! y5 M+ h5 E/ G7 u

#killall svnserve    //停止! Q/ Q( j" f" e0 v2 [6 |7 Z9 R

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

svn checkout svn://192.1.15.222 --username xxx
5 K9 k) ~3 C% m2 S; h

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
8 c3 e$ H& g3 J* O# _2 V

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

vim post-commit,在里面输入:

) \  d# Z1 Y1 G. Q$ _6 A

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" :
7 U) ~4 I3 [4 a3 F

#system-config-securitylevel

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

8 ~- e3 {, B8 ]' K4 t7 i! Z. O
執行setenforce 0就可以暫時關閉功能,執行setenforce 1就可以暫時打開功能

vi /etc/sysconfig/selinux

SELINUX=enforcing 改成--> SELINUX=disabled


; U: a4 h0 O# M* p  @& |, hvi /var/log/audit/audit.log (或 tail -f /var/log/audit/audit.log) 查看 SElinux 有何問題% ?) e& X# H" u0 L3 i+ N" F





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