參考自 : http://blog.csdn.net/yanzi1225627/article/details/49123659
8 t7 Z* j/ Z- a- h, l
, K1 L/ y. u R& |, a. M' z目标:搭建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
~2 s8 E) ~3 X* c4 M 直接将所有待安装的依赖安装完。 然后下载nginx ,mysql, php的源代码: 可用 google search engine 搜尋最新版本 将这三份tar.gz文件通过scp命令弄到服务器上/www/software目录下。 二,安装nginx解压缩文件,然后进到nginx-1.8.0里,输入命令: ./configure --user=www --group=www --prefix=/www/nginx
/ @( J& B$ w8 @6 B# C- Q+ x8 D+ q 然后make,make install就安装完毕了。 安装完后第一件事,创建www的用户和分组,否则会遇到http://blog.itblood.com/nginx-emerg-getpwnam-www-failed.html 的错误。 执行: /usr/sbin/groupadd -f www- u7 h3 Y2 V% Q( w+ [ u0 d7 u
/usr/sbin/useradd M -s /sbin/nologin -g www www //-M 不建立使用者目錄 nginx命令在/www/nginx/sbin/下,拷贝到/etc/init.d/一份,接下来设置开机启动。 chmod 755 /etc/init.d/nginx
* I( u: m7 V% A0 s L- \+ j
: L' V( f7 M; Zchkconfig --add nginx
5 w% {- I) ?4 Y I/ V6 c2 j7 v& o5 L8 b x
chkconfig nginx on
o+ z' r3 }+ T 然后 cd /etc/rc.d/init.d/ 目录下新建nginx,内容如下: #!/bin/bash
8 c+ m( m" R# R2 Z. P# nginx Startup script for the Nginx HTTP Server
; H. p3 I$ f+ M8 ]$ g6 a3 W- y, ~* \0 [# it is v.0.0.2 version.! P5 N0 ?4 H% D8 d
# chkconfig: - 85 150 o6 w0 ^& O$ }; R
# description: Nginx is a high-performance web and proxy server.7 S# B* F1 L- Z+ i* q! c. s) K
# It has a lot of features, but it's not for everyone.
$ b/ `, H& Y7 u, |' V( V# processname: nginx2 s/ J" O, I/ L3 K9 ?3 j
# pidfile: /var/run/nginx.pid
4 C3 f1 g' t6 v# config: /usr/local/nginx/conf/nginx.conf
$ D x: x) Y* Nnginxd=/www/nginx/sbin/nginx
7 v. k9 k$ M7 _2 J) H' Q" \, Bnginx_config=/www/nginx/conf/nginx.conf/ d4 p5 n& v: |' P l/ s
nginx_pid=/www/nginx/logs/nginx.pid$ i# t. O. f( R" W1 V+ b, }: }+ V
RETVAL=0' w5 m+ z! e: Y* U5 Z0 j# ?# `
prog="nginx"5 P4 }! v- ~1 z% [% j
# Source function library.
9 x/ c, w, i- C$ @. /etc/rc.d/init.d/functions
" D+ {. U7 E$ ~' Y# Source networking configuration.
/ q: z1 `0 W9 {. a+ Q9 C8 U. /etc/sysconfig/network
v' e H h/ W6 C& i; K# Check that networking is up.
, Y$ O/ F U, c6 M* w$ ?- T[ ${NETWORKING} = "no" ] && exit 0% {/ ?+ J& g$ d, c
[ -x $nginxd ] || exit 0
( k6 F* v6 X) R# Start nginx daemons functions.6 ]/ L% L1 U5 u, E, L J8 O
start() {! _# ~ z" F# h+ S9 D8 B1 b* @
if [ -e $nginx_pid ];then
* w# F2 b/ Q) E+ ~8 Lecho "nginx already running...."" x6 y$ a/ R6 d2 h0 o: o
exit 18 A1 q5 k* E! T: A/ y; w3 u" i
fi' a% k! k; J/ [0 I1 g
echo -n $"Starting $prog: "
2 A$ t3 v* @! I5 \0 L& g7 Xdaemon $nginxd -c ${nginx_config}
* b' n* s. a$ KRETVAL=$?
( U3 u& q0 H+ H2 U) Vecho3 V# Y; W& Y- X: C2 i- S
[ $RETVAL = 0 ] && touch /var/lock/subsys/nginx
; \' w* y$ [# \6 Z) |return $RETVAL
" J# Z# K9 m. D6 z7 w2 I, }( Q} Y- }; K% A! P6 a
# Stop nginx daemons functions.
$ D& Z1 c7 ]+ f+ e& g8 astop() {+ C3 c3 r1 t# o
echo -n $"Stopping $prog: "0 Z9 Q1 ~: E" V! G( _$ R/ A/ {
killproc $nginxd7 z6 I2 j, e% w( G3 m6 }
RETVAL=$?3 C, T9 B0 Q6 X! p5 b7 }# q. p
echo
% g+ e2 C7 y5 n ?9 `[ $RETVAL = 0 ] && rm -f /var/lock/subsys/nginx /www/nginx/logs/nginx.pid' A% a9 V: e/ n6 x& t& w9 B1 Y
}- u5 d. `0 O3 v6 H9 N) h
reload() {
7 ?! h: l% _; Z8 kecho -n $"Reloading $prog: "& R3 A) a: H* b8 u* E) v' L
#kill -HUP `cat ${nginx_pid}`& m, X- T) E$ `% ?# y5 Z" Q# ?
killproc $nginxd -HUP& o) f' T& d1 `
RETVAL=$?
) y5 y/ f+ z7 x' f& z8 uecho
/ ?+ F$ o' c ~9 b}
& v% K8 i3 Z' c8 T" T1 ^# See how we were called.: r7 D% j$ h" o4 o% o6 Q
case "$1" in
4 j8 k& b# `# F' |. U3 M" jstart)( }) }3 k N( A; g# ?
start
: C$ j# }+ o! R% d8 R3 K0 };;, P* f. s/ y6 C0 S9 @) p
stop). ^5 y' m! I" A5 C8 I, r* \$ e8 k4 a
stop
# b& [7 `, [ b1 s% r. z;;9 i0 I, Z" v* [! b2 _* ?
reload). ] j) S+ {3 S' n, K
reload
1 ?3 y6 f" `, H* g' |: B* u;;
8 Z2 k5 V: K9 K( g- w0 Hrestart)0 E8 f+ n; ~, l
stop! A( p( @! J. I* ]9 M, N" c
start( f% s6 b- n( r. s P
;;% B' l$ N4 Y9 |. l7 U
status)
4 W, E" ^0 x# G+ wstatus $prog
7 A; ~% l* g# C$ m0 e8 ?RETVAL=$?
$ }5 {# Q6 e# |! E2 |;;) G2 D, m! j" z4 Q
*)" U6 |* f4 _1 K8 F0 u1 [. o
echo $"Usage: $prog {start|stop|restart|reload|status|help}"
9 c$ n8 J( q. r1 k1 L4 @exit 1
" Q$ s# E& u3 c4 eesac! J1 m1 D8 n. x) G3 H, S
exit $RETVAL
) x+ t M `$ n J+ y
+ Z- `" H! t @! Y* G' z5 u 注意:如果nginx的安装路径不是在/www/nginx下,则适当修改就好。 ! K- T. h) ^: ~* i! g* o9 E5 c
chmod 775 /etc/rc.d/init.d/nginx #赋予执行权限chkconfig nginx on #设置开机启动/etc/rc.d/init.d/nginx restart 或 service nginx restart至此nginx安装就ok了,但遗留两个问题:1 R- N7 n! F- O& P$ J
1,是更改默认web根目录在/www/web的问题 2,是与php的整合,默认nginx是不认php得 对于1,nginx默认web根目录在 nginx安装路径下的html文件夹,我们把他改到/www/web目录下。 进到/www/nginx/conf目录下,vim nginx.conf,将
: z4 \. g5 d: \5 r7 N location / {
, i& j7 C. |# v2 Q$ S root html;
3 p: [# R. \1 O$ n3 D" X( @! }0 N index index.php index.html index.htm;! e( ?8 |4 c- I. D
}; l; q! j2 k0 t% _
修改为:
1 M) [8 D2 m& F. e
. o1 A2 X0 X7 }2 E location / { root /www/web; index index.html index.php; } 注意,增加了对index.php的识别。将 4 G& ?7 r' m$ {; V9 ]% C
location ~ \.php$ {
. }1 E3 c7 g, o root html;/ n* z; N# g# K# d. V' L
fastcgi_pass 127.0.0.1:9000;4 k1 e( I: [' G. G/ X/ V N: c
fastcgi_index index.php;
7 X. F* p1 a7 i% K9 b( L8 m fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
1 v. q! J: @8 J I& O include fastcgi_params;
# u/ {0 u4 v5 q2 W7 _9 e) p' P }$ m3 @, O3 }5 G" ^
修改为:
/ J* \& w8 T2 V
" m r+ h( b1 X% A7 o 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解压缩并进到源码目录,执行: , E& U# I: x# r5 t5 ~
#cmake -DCMAKE_INSTALL_PREFIX=/www/mysql 之后make make install安装。安装完毕后需要做以下几个事:1,检查/etc/下是否存在my.conf, 如果有的话通过mv命令改名为 my.cnf.backup ps:此步骤非常重要!!! 2,创建mysql用户和分组 #/usr/sbin/groupadd mysql
4 h, P; ?" j- ?& ]* O% L: ~' Y% F8 E" X0 G
#/usr/sbin/useradd -g mysql mysql 增加mysql用户和分组。$ C( l& `6 W0 G$ c* q
执行 cat /etc/passwd 查看用户列表
$ d4 y/ g8 t! p: C' T8 wcat /etc/group 查看用户组列表 chown -R mysql:mysql /www/mysql修改mysql安装目录的权限。
* |& L" Z4 r- S# c) ]! z) p- v 3,进到/www/mysql,创建系统自带的数据库。 scripts/mysql_install_db --basedir=/www/mysql --datadir=/www/mysql/data --user=mysql
3 X3 X7 }# ? F5 k' e 4,添加服务,启动MySQL cp support-files/mysql.server /etc/init.d/mysql
, u$ t0 e3 I/ B1 Y6 M9 S% ]chkconfig mysql on
: u. U# e$ c7 l# e5 c. Qservice mysql start --启动MySQL# K/ @. ]% `0 E! F. a0 N- B. m- p
5,设置root密码 为了让任何地方都能用mysql/bin下的命令,vim /etc/prifile 添加: PATH=/www/mysql/bin: $PATH
6 L$ s* f. k( Cexport PATH8 d0 c! k; _$ @! J
保存后source /etc/profile 执行: 1 I. O' J2 }! t3 k
mysql -uroot mysql> SET PASSWORD = PASSWORD('root');1 J+ l, @- `- U7 I6 @3 `* M
7 W+ R+ H4 E' x. ~% t
设置root用户的密码为root。 6,为了支持远程访问数据库,执行; 6 Y+ t, Q0 P6 z% ~7 q1 L
mysql> grant all on *.* to xroot@"%" identified by "xroot”; mysql> flush privileges; //更新权限 这样就创建了一个用户名为xroot,密码为xroot的用户,可以远程访问数据库。 四,安装php(php-fpm)解压并进入源码: . { m5 N5 j/ q4 v' r
#./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 r6 Q+ z+ m! y- q4 R. y: N
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
7 d% i, _+ x! g! }" x) c1 e: f! A
2 p$ o3 _+ u8 f7 A5 t1 irpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-5.rpm
" ]+ @- A K; V, ?6 U0 mCreate /etc/yum.repos.d/php-fpm.repo file and add:
2 A& u) p- W% y: E% p- [nginx]
6 W, k0 F/ b4 v9 E/ T) Y4 | - name=nginx repo
; Z$ C% m0 ]# ?* ?. [5 S0 ~. d" m1 | - baseurl=http://nginx.org/packages/centos/$releasever/$basearch/
7 O2 s1 o& C1 |: d - gpgcheck=0$ T% y5 u V4 g; C
- enabled=1
複製代碼
* Q! ?& ~/ Y5 p ?yum --enablerepo=remi,remi-test install php-fpm; L/ l$ t1 u( ^8 Y; `. h1 `
/ j" o5 O8 y' B6 o- Q) g" J, c4 I4 K$ F; \5 _- u
五,安装svn配置post-commit此步作用是代替ftp,方便开发人员开发并同步代码。可以直接通过yum安装即可。 # rpm -qa subversion //检查是否自带了低版本的svn
& @0 S: ?1 o* N$ b6 } #yum remove subversion //卸载低版本的svn
5 y( U. s$ O9 m4 ~ # yum install httpd httpd-devel subversion mod_dav_svn mod_auth_mysql //安装svn
+ b1 B% x P! `' I6 H 通过# 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] g @! S: @; T
# harry = harryssecret
2 p% e) Q8 ?2 K9 Y8 m" ~7 Q# sally = sallyssecret
& I- W* t: ?/ O2 cwangning=wangning
4 s+ \2 ?0 k5 Q4 |8 ]yanzi=yanzi: R/ M L& F$ m7 C
#vim authz //设置权限
$ O( C9 Z6 I0 r) y. E- K[/] wangning = rw yanzi = rw # &joe = r # * = #vim svnserve.confanon-access = none
! J1 y5 T! ^- G* H- V7 P: C9 Uauth-access = write
6 r( U- y$ D9 w9 Y% W, N### The password-db option controls the location of the password
6 C8 t. }/ d8 |% n# i: ~### database file. Unless you specify a path starting with a /,
# k K$ P( O) Y+ e& M### the file's location is relative to the directory containing- t1 Q9 g0 b: L( i
### this configuration file./ s5 y: s5 ?- B8 \+ E
### If SASL is enabled (see below), this file will NOT be used.9 j+ o) G$ o+ f2 W+ f
### Uncomment the line below to use the default password file.7 A% p) K% j. N8 c
password-db = passwd
6 M, M% i! \+ X6 I$ ]+ N### The authz-db option controls the location of the authorization$ o. \) [4 Z' V& J7 t" [
### rules for path-based access control. Unless you specify a path
/ m- S8 _( C4 X- U; d. Z### starting with a /, the file's location is relative to the the! k9 q. X! {+ @% U% n% G
### directory containing this file. If you don't specify an
: Y1 s7 ]0 {, G4 {6 p6 x### authz-db, no path-based access control is done.) T y8 \9 @1 X: a4 Q1 x+ l9 H
### Uncomment the line below to use the default authorization file.; ?& @+ h, y+ L+ P. i
authz-db = authz" ? |. L+ W, t0 H0 X9 n) Z
### This option specifies the authentication realm of the repository.
& u# \0 T( P! f3 I5 n7 P### If two repositories have the same authentication realm, they should8 W! x4 P0 ~) V8 f9 |8 e
### have the same password database, and vice versa. The default realm' f! v6 \2 x, E v+ x' x+ q9 O5 d
### is repository's uuid.
, c9 ?+ Q+ n$ _ v& {' [& `: {; ~5 Grealm = My First Repository
0 @& J5 G2 i. i0 A% }; u, Z8 ] 注意:上面这些有效行前面不能有空格。 3,启动及停止svn #svnserve -d -r /www/wwwwvn //启动svn
0 C9 ^) K- f2 @9 \5 ?( f #killall svnserve //停止: o5 @' t! ^( b
待启动svn后,可以在外面测试了。 svn checkout svn://192.1.15.222 --username xxx
8 Y- b0 i7 `3 k- ^8 } 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
# v5 B. ?7 u) x3 ?8 `! { b, # cd /www/wwwsvn/hooks/,然后cp post-commit.tmpl post-commit vim post-commit,在里面输入: 4 I6 I9 s4 s! A, P8 O! u
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" :. }, ~3 Y w0 N
#system-config-securitylevel 選擇DISABLE後按OK,必須重開機
8 m& E {* x% J( d! r( C, h執行setenforce 0就可以暫時關閉功能,執行setenforce 1就可以暫時打開功能
vi /etc/sysconfig/selinux SELINUX=enforcing 改成--> SELINUX=disabled $ G( b6 Y6 R- n
vi /var/log/audit/audit.log (或 tail -f /var/log/audit/audit.log) 查看 SElinux 有何問題5 h; y- O* j5 x; D' _% G
|