參考自 : http://blog.csdn.net/yanzi1225627/article/details/49123659
* O: x5 M: H/ N9 d' g$ ?$ G u* V C! [4 E( i: ~7 M* Y* Q$ K! U
目标:搭建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$ v1 ?- I1 Y4 L4 H& M& f% x
直接将所有待安装的依赖安装完。 然后下载nginx ,mysql, php的源代码: 可用 google search engine 搜尋最新版本 将这三份tar.gz文件通过scp命令弄到服务器上/www/software目录下。 二,安装nginx解压缩文件,然后进到nginx-1.8.0里,输入命令: ./configure --user=www --group=www --prefix=/www/nginx0 u H; ]0 |9 I. |9 ^+ ^. D
然后make,make install就安装完毕了。 安装完后第一件事,创建www的用户和分组,否则会遇到http://blog.itblood.com/nginx-emerg-getpwnam-www-failed.html 的错误。 执行: /usr/sbin/groupadd -f www* E9 ?4 _0 o: P5 I
/usr/sbin/useradd M -s /sbin/nologin -g www www //-M 不建立使用者目錄 nginx命令在/www/nginx/sbin/下,拷贝到/etc/init.d/一份,接下来设置开机启动。 chmod 755 /etc/init.d/nginx
6 |; S8 o' K M- M5 o4 ^( C- c' d. O4 Q* E- m" s5 F# g$ o4 Z
chkconfig --add nginx
' H+ U' G: G" H6 y1 W8 X3 `, c9 A* s E+ Z" K. |
chkconfig nginx on
; `# K* i& l+ F/ D8 b, x 然后 cd /etc/rc.d/init.d/ 目录下新建nginx,内容如下: #!/bin/bash1 o6 y) B) {3 y" ~. N9 ]* y
# nginx Startup script for the Nginx HTTP Server: k0 \! z- w/ h
# it is v.0.0.2 version.+ p" v$ B- @5 D! j* w% e$ ?
# chkconfig: - 85 15
* b3 m' M0 _' z+ w U h0 r# description: Nginx is a high-performance web and proxy server.& }+ O7 @: B5 L2 {, r x5 I
# It has a lot of features, but it's not for everyone.: h/ B. ^6 A% P0 e; i
# processname: nginx
- O) b- a+ V3 W" r7 m# pidfile: /var/run/nginx.pid# d( Z' n% A: ?4 ^2 b6 U' ^
# config: /usr/local/nginx/conf/nginx.conf3 K) J; L3 }: Y: |
nginxd=/www/nginx/sbin/nginx
0 |" o. P8 m% d1 F; Inginx_config=/www/nginx/conf/nginx.conf
0 X/ Z$ p ^2 V. [nginx_pid=/www/nginx/logs/nginx.pid6 P, ~; {' c0 R
RETVAL=0( `$ o9 v' K! O6 l5 p8 i# m
prog="nginx"
8 i6 c9 }! ~0 J7 ]( l7 M# Source function library.
4 I9 d( c: e5 j% m1 |. /etc/rc.d/init.d/functions
9 ^6 Y z) y. U0 I9 O# Source networking configuration.
9 u! b' F" \: B( b0 G. /etc/sysconfig/network
5 c& q# ^5 W& K/ V: v; ^# Check that networking is up.
; ]* j" ?* z0 E" d4 Y) G z+ F[ ${NETWORKING} = "no" ] && exit 0
6 J) o, h& i! F; z6 i[ -x $nginxd ] || exit 0
$ \, Y' I/ D7 l, _! G: E# Start nginx daemons functions.' W$ ~5 z6 e, M1 M* }* w- p: {
start() {7 `3 I9 h+ L4 X9 i
if [ -e $nginx_pid ];then. G) F7 q% Z: P# h& p
echo "nginx already running...."
' R# l4 V0 e0 K0 x. Zexit 1: M- u s$ _% J+ _3 R4 R
fi& Q! F) P S( @3 R8 O; k
echo -n $"Starting $prog: "
& V6 t6 v4 E9 Fdaemon $nginxd -c ${nginx_config}0 e3 f; D& T7 Z9 _& H& E
RETVAL=$?
* Y$ {5 C- ~7 {( d% `) b Jecho
' {( D+ R1 b; r[ $RETVAL = 0 ] && touch /var/lock/subsys/nginx7 u; B* o0 K$ z/ a: v, | V, O) F
return $RETVAL I: M ], v6 E
}
( u% p$ J# h0 T/ T! h: _4 j7 x# Stop nginx daemons functions.
) E6 ]& D- t4 @7 Sstop() {
* K0 U) i: e( T% A e9 S! _echo -n $"Stopping $prog: "7 t8 P* I( m- H6 O4 K/ O" V( \. ]
killproc $nginxd
9 H$ K) z/ N8 e: b" K# ^, G! t2 [RETVAL=$?
* }8 j1 A6 E% Y H/ @7 h" Yecho t! }9 ^+ F; f' O
[ $RETVAL = 0 ] && rm -f /var/lock/subsys/nginx /www/nginx/logs/nginx.pid
+ f! f/ R3 N& ^1 J}
, m2 j# Z5 s% h3 e2 ?reload() {% T+ p; o# L" g5 n! T I
echo -n $"Reloading $prog: "
$ s) J2 U z6 x/ {) K3 E#kill -HUP `cat ${nginx_pid}`
$ l8 ~, Y! |. d8 @9 h& d6 ]killproc $nginxd -HUP
( H# o) H) M8 M8 z* YRETVAL=$?
; d3 B0 \8 a5 [0 c" }, }: w+ m0 d/ wecho0 F: h+ T4 u% G3 Z: b; m6 D5 p9 N
}( r+ y! Y: i0 m, k/ r
# See how we were called.; I9 p- W. }3 `7 ^% _; n8 `9 c
case "$1" in9 L. C+ X1 P+ G @( t; u- {; o
start)7 a' c! g. m5 Z5 w$ r- R; Z
start, _5 Q3 B \! S- z/ g5 K) v
;;
8 [+ @5 O0 P* }: Qstop)) g0 N9 b8 p6 Y% G
stop
8 c$ U2 P2 U- ?; _% [& H;;6 ^5 L O8 V9 G: B1 o& y, i
reload)! g* a! J9 G K
reload
! R m+ } K8 n3 v: t+ A& E;;
! `: s; S5 j: T& erestart)5 n3 b6 u* P% Q: X$ I9 X6 @: i* E* T
stop1 V Y) i6 T; B8 O8 |$ f
start1 n# n) b% S! f
;;
# E& n) U3 J$ q4 Mstatus)
7 q d Q& \+ d5 _4 X8 Vstatus $prog. O3 I" `* W. V0 [8 r# ~2 a
RETVAL=$?
) T# D7 Z0 W8 ]$ w/ K;;( g. g9 W8 g5 `' V
*)
* U- U+ e/ D% j$ v. vecho $"Usage: $prog {start|stop|restart|reload|status|help}"# |: @! b3 p1 e* d' X |" s2 ]
exit 1
! `1 [( N- a8 L# b+ v- F* ^9 }esac" g2 ]1 }( |5 c) { k
exit $RETVAL. ?4 @/ o6 F. z* g, j
! S7 X V! l- U% w7 ^# ? 注意:如果nginx的安装路径不是在/www/nginx下,则适当修改就好。 & Q6 r- |' e/ x/ g& n6 G
chmod 775 /etc/rc.d/init.d/nginx #赋予执行权限chkconfig nginx on #设置开机启动/etc/rc.d/init.d/nginx restart 或 service nginx restart至此nginx安装就ok了,但遗留两个问题:; \5 c% F5 f' T5 s3 F% e0 |9 N
1,是更改默认web根目录在/www/web的问题 2,是与php的整合,默认nginx是不认php得 对于1,nginx默认web根目录在 nginx安装路径下的html文件夹,我们把他改到/www/web目录下。 进到/www/nginx/conf目录下,vim nginx.conf,将 3 `9 v8 c8 y5 \& p8 d9 e
location / {
8 J) l0 g) ^" y, r" w7 e root html;
+ x, g$ u. e/ a5 L index index.php index.html index.htm;6 R: }' @# C! O; T- T- p1 r
}' v5 i+ s2 l4 n1 j. T
修改为:
* I0 _3 L- v( w( Q; Y* p+ X
0 g2 y( [) P9 e0 @7 v5 O location / { root /www/web; index index.html index.php; } 注意,增加了对index.php的识别。将
9 h7 v# i! A; V& Alocation ~ \.php$ {
/ p& P! L$ _4 ?3 |# D: r9 Z$ l root html;0 u( `, C4 G( A. e( y
fastcgi_pass 127.0.0.1:9000;
0 B+ v/ z$ [6 R* d fastcgi_index index.php;
; r5 n2 i# ?3 Y( g. j fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
$ _. e/ O2 T5 N7 F1 L% { include fastcgi_params;
/ v1 e9 q% F; q& P }
% E9 T5 N, W; O修改为:0 Y% g' Z* X/ n: U- H
/ x) a4 [2 F S! ]' S5 n
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解压缩并进到源码目录,执行: 7 V4 V9 C& I% }- a. d% _1 n, w
#cmake -DCMAKE_INSTALL_PREFIX=/www/mysql 之后make make install安装。安装完毕后需要做以下几个事:1,检查/etc/下是否存在my.conf, 如果有的话通过mv命令改名为 my.cnf.backup ps:此步骤非常重要!!! 2,创建mysql用户和分组 #/usr/sbin/groupadd mysql4 J# @% g6 R) _
6 a5 H% B+ I$ d' T
#/usr/sbin/useradd -g mysql mysql 增加mysql用户和分组。
$ X% P1 B$ F* Q# ] 执行 cat /etc/passwd 查看用户列表) |( e5 I& n$ n. A0 z i" @
cat /etc/group 查看用户组列表 chown -R mysql:mysql /www/mysql修改mysql安装目录的权限。
8 @8 M0 `+ _0 \* y# m4 m, K B. j" ` 3,进到/www/mysql,创建系统自带的数据库。 scripts/mysql_install_db --basedir=/www/mysql --datadir=/www/mysql/data --user=mysql8 u1 h+ Q% Y9 M
4,添加服务,启动MySQL cp support-files/mysql.server /etc/init.d/mysql0 l1 m3 v7 j9 T; q" o+ ^5 J! ^
chkconfig mysql on3 n, v- Y6 {( w0 X; e& P- U3 i
service mysql start --启动MySQL
% d5 Q4 Z: @9 E/ `( M 5,设置root密码 为了让任何地方都能用mysql/bin下的命令,vim /etc/prifile 添加: PATH=/www/mysql/bin: $PATH6 @% O3 r4 k7 u* k v
export PATH
7 A9 R, D$ }. ]9 w 保存后source /etc/profile 执行: 5 c4 N ]! y& E c- l; n6 V
mysql -uroot mysql> SET PASSWORD = PASSWORD('root');
! O+ k3 S& o$ a/ r0 M$ l: |9 e6 D! r! t% t% L
设置root用户的密码为root。 6,为了支持远程访问数据库,执行;
! T) ]1 \/ j5 D- o5 Lmysql> grant all on *.* to xroot@"%" identified by "xroot”; mysql> flush privileges; //更新权限 这样就创建了一个用户名为xroot,密码为xroot的用户,可以远程访问数据库。 四,安装php(php-fpm)解压并进入源码:
8 F* u& w+ C" I( V7 t# u: |#./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里:
) m8 `" C5 v: DPATH=/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
1 ~) I( `+ j7 D" u! {
r3 }! I* w/ M% m( V& M$ grpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-5.rpm
/ |# i; {, g5 h l" M, Z7 J: NCreate /etc/yum.repos.d/php-fpm.repo file and add:
; h. @0 l, _ T# @ B t j. g- [nginx]/ E1 S @6 b7 |* K1 V( f
- name=nginx repo
# }$ i( D+ w0 j8 n1 h - baseurl=http://nginx.org/packages/centos/$releasever/$basearch/
2 {) ?0 V! P/ g, k5 J! i - gpgcheck=0
$ Z; S. b. ` W) H1 a& P4 J: i - enabled=1
複製代碼
; W, r/ }: u4 E; Z7 H& ?yum --enablerepo=remi,remi-test install php-fpm
0 |- Q, b3 B2 q9 I3 u3 c
6 o3 z1 w" Y8 L* E0 ]
: L& Y1 ?( ?& c) w. n6 A# t五,安装svn配置post-commit此步作用是代替ftp,方便开发人员开发并同步代码。可以直接通过yum安装即可。 # rpm -qa subversion //检查是否自带了低版本的svn
" A7 {' D5 O2 o% \0 v) v #yum remove subversion //卸载低版本的svn
2 B5 z- t9 Z6 k. z8 m1 \6 X2 F # yum install httpd httpd-devel subversion mod_dav_svn mod_auth_mysql //安装svn; q# _3 K/ I: l! `9 T* S
通过# 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]
+ x# l8 q" r& m% {# harry = harryssecret5 D# K8 T* e1 a, Y$ i
# sally = sallyssecret. U; ~+ s. }5 Q- G$ p( `1 Y
wangning=wangning" f5 ]' d: ]' v2 O- _3 d; C
yanzi=yanzi
' c& H& u, a+ u4 P1 G& h #vim authz //设置权限 : i2 b& Q8 y6 F7 u+ P b6 C3 T
[/] wangning = rw yanzi = rw # &joe = r # * = #vim svnserve.confanon-access = none) C5 x. d' n( S Z3 i
auth-access = write
% D+ `" @' T" B$ G: y### The password-db option controls the location of the password
3 j: |6 u* L$ B+ @" ^### database file. Unless you specify a path starting with a /,% O6 u$ y& J6 Z7 k6 W6 X
### the file's location is relative to the directory containing! \" s# e3 Y b: q; _& l
### this configuration file./ A& B' f( ~7 h' ?; l1 \8 U' W. Y% p
### If SASL is enabled (see below), this file will NOT be used./ c m# z. J- b% X
### Uncomment the line below to use the default password file.: s) a5 N3 \" X1 t6 \
password-db = passwd
0 Y0 ?6 ~7 B: k ^) U( t5 W### The authz-db option controls the location of the authorization
" E! Q$ N1 r `+ Z7 U/ y) G### rules for path-based access control. Unless you specify a path
3 Q& B! v- k3 ~( ]### starting with a /, the file's location is relative to the the/ ~8 z/ O. g. O8 b
### directory containing this file. If you don't specify an U3 @* w' o2 I8 y V! j7 k
### authz-db, no path-based access control is done.
1 z( B: z, t3 \, F. M& q" {: J0 i2 M### Uncomment the line below to use the default authorization file.4 j6 D. G- N8 X9 [2 j; v* a
authz-db = authz. ^. w/ k. w8 e9 c' j3 O
### This option specifies the authentication realm of the repository.
& c2 C4 q1 p h j7 c; W### If two repositories have the same authentication realm, they should. @1 |! y* @8 g q4 a# S
### have the same password database, and vice versa. The default realm
2 I' Q8 G. `( P7 }5 Y5 Z! {### is repository's uuid.
* E5 _2 S8 Z3 Y, krealm = My First Repository
+ R& Q; G3 R: b Z5 ] 注意:上面这些有效行前面不能有空格。 3,启动及停止svn #svnserve -d -r /www/wwwwvn //启动svn' q r9 d( h- S2 M0 c9 z+ r
#killall svnserve //停止
' R5 h, |/ E- n6 t9 j5 e) Y 待启动svn后,可以在外面测试了。 svn checkout svn://192.1.15.222 --username xxx
+ p! @2 y( g; A7 \ 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
+ V' G# d+ t0 f b, # cd /www/wwwsvn/hooks/,然后cp post-commit.tmpl post-commit vim post-commit,在里面输入:
: f V4 D" I! n) j( ?- [) Pexport 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" :
( D9 N7 W! V. }; O& Y/ m#system-config-securitylevel 選擇DISABLE後按OK,必須重開機 7 r3 ]4 E2 B% a, n) i% |$ c& g) ]
執行setenforce 0就可以暫時關閉功能,執行setenforce 1就可以暫時打開功能 vi /etc/sysconfig/selinux SELINUX=enforcing 改成--> SELINUX=disabled
+ x( B1 F7 j' @' g/ J8 _9 `, C1 Vvi /var/log/audit/audit.log (或 tail -f /var/log/audit/audit.log) 查看 SElinux 有何問題
7 R3 u, G1 r) ?9 E+ Y2 o% ` |