仓酷云

 找回密码
 立即注册
搜索
热搜: 活动 交友 discuz
查看: 438|回复: 7
打印 上一主题 下一主题

[CentOS(社区)] 给大家带来CentOS下编译装置LAMP并分别为多台办事器

[复制链接]
再见西城 该用户已被删除
跳转到指定楼层
楼主
发表于 2015-1-14 20:37:12 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有帐号?立即注册

x
欢迎大家来到仓酷云论坛!
申明:[Linux86]:Apache主机[Linux87]:PHP主机[Linux88]:MySQL主机

外部测试;需在windows下必要变动hosts文件剖析到httpd的主机

例子中的hosts文件增加:172.16.251.86www.soul.org

172.16.251.86www.pipi.com

LAMP是指一组一般一同利用来运转静态网站大概办事器的自在软件称号首字母缩写:
1、Linux;操纵体系;
2、Apache;网页办事器;
3、MariaDB或MySQL,数据库办理体系(大概数据库办事器);
4、PHP、Perl或Python,剧本言语;
在编译装置之前我们必要先懂得下它们之间分隔的事情形式:



上图大抵的标出Apache、php和mysql分别各自为独自办事器时的事情形式;上面就间接举行编译装置;起首筹办好三个假造机。测试机版本:
[Linux86]#lsb_release-a
LSBVersion::base-4.0-amd64:base-4.0-noarch:core-4.0-amd64:core-4.0-noarch:graphics-4.0-amd64:graphics-4.0-noarch:printing-4.0-amd64:printing-4.0-noarch
DistributorID:CentOS
Description:CentOSrelease6.5(Final)
Release:6.5
Codename:Final




因为个中操纵都是拔出代码的;以是下令实行历程并没有把代码都贴出来,只贴出最初几行;

1、编译装置Apache2.4.9
1、办理依附干系:
[Linux86]#yumgrouplist
#
InstalledGroups:
AdditionalDevelopment
Base
Consoleinternettools
Desktop
DesktopPlatform
Developmenttools#检察包组是不是装置
ServerPlatformDevelopment#检察包组是不是装置
如未装置;请先装置这两个包组
#
[Linux86]#rpm-qapcre-devel
pcre-devel-7.8-6.el6.x86_64
#
检察是不是装置;未装置需事前装置
[Linux86]#ls
apr-1.5.0.tar.bz2apr-util-1.5.3.tar.bz2httpd-2.4.9.tar.bz2
[Linux86]#
#先装置apr包;解压落后进该目次
[Linux86]#pwd
/root/program/apr-1.5.0
[Linux86]#./configure--prefix=/usr/local/apr
config.status:executingdefaultcommands
config.status:include/apr.hisunchanged
config.status:include/arch/unix/apr_private.hisunchanged#没有报错就持续
[Linux86]#make&&makeinstall
/usr/bin/install-c-m644build/apr_rules.out/usr/local/apr/build-1/apr_rules.mk
/usr/bin/install-c-m755apr-config.out/usr/local/apr/bin/apr-1-config#没有报错就持续装置apr-util包
[Linux86]#
#解压进进目次
[Linux86]#./configure--prefix=/usr/local/apr-util--with-apr=/usr/local/apr/
config.status:creatingtest/Makefile
config.status:creatinginclude/private/apu_config.h
config.status:executingdefaultcommands
[Linux86]#make&&makeinstall
/usr/bin/install-c-m644aprutil.exp/usr/local/apr-util/lib
/usr/bin/install-c-m755apu-config.out/usr/local/apr-util/bin/apu-1-config
[Linux86]#都以装置乐成



2、编译Apache:
[Linux86]#rpm-qahttpd
httpd-2.2.15-29.el6.centos.x86_64
#
#体系本人自己已装置了httpd2.2版本的;这里编译2.4的;可是老版本不必要卸载;
#由于卸载后会形成依附干系不不乱;且后续装置模块时仍是会主动装置上的;
#编译是只需不指定到默许路径便可;确保装置前本来的是中断的;且封闭开启主动启动
#
#
[Linux86]#./configure--prefix=/usr/local/apache--sysconfdir=/etc/httpd24--enable-so--enable-ssl--enable-cgi--enable-rewrite--with-zlib--with-pcre--with-apr=/usr/local/apr--with-apr-util=/usr/local/apr-util--enable-modules=most--enable-mpms-shared=all--with-mpm=event--enable-proxy--enable-proxy-fcgi
参数能够经由过程./configure--help检察;开启本人必要的便可
#如没有报错间接下一步装置
[Linux86]#make&&makeinstall
mkdir/usr/local/apache/build
Installingmanpagesandonlinemanual
mkdir/usr/local/apache/man
mkdir/usr/local/apache/man/man1
mkdir/usr/local/apache/man/man8
mkdir/usr/local/apache/manual
make[1]:Leavingdirectory`/root/program/httpd-2.4.9#装置完成
[Linux86]#



3、设置Apache:
#因为之前的httpd没有卸载;那末能够cp一个启动剧本当今朝的httpd剧本;变动下内里的参数
#
[Linux86]#cp/etc/rc.d/init.d/httpd/etc/rc.d/init.d/httpd24
[Linux86]#vi/etc/rc.d/init.d/httpd24
#Pathtotheapachectlscript,serverbinary,andshort-formformessages.
#以下几个变量界说为今朝的路径;并在主设置文件中变动对应的值
achectl=/usr/local/apache/bin/apachectl
httpd=${HTTPD-/usr/local/apache/bin/httpd}
prog=httpd
pidfile=${PIDFILE-/var/run/httpd/httpd.pid}
lockfile=${LOCKFILE-/var/lock/subsys/httpd24}
RETVAL=0
STOP_TIMEOUT=${STOP_TIMEOUT-10}
#修正主设置文件
[Linux86]#vi/etc/httpd24/httpd.conf
#sameServerRootformultiplehttpddaemons,youwillneedtochangeat
#leastPidFile.
#
ServerRoot"/usr/local/apache"
pifile"/var/run/httpd/httpd.pid"#加一行pid文件路径;与剧本文件对应
#保留加入
[Linux86]#servicehttpd24start
Startinghttpd:[OK]
[Linux86]#ss-tnl
StateRecv-QSend-QLocalAddress:PortPeerAddress:Port
LISTEN0128:::111:::*
LISTEN0128*:111*:*
LISTEN0128:::80:::*
#80端口已监听



到这里Apache已编译装置完成了;也能够在扫瞄器输出IP地点测试下。

2、编译装置PHP
编译之前都是必要反省开辟情况;必要装置的包是不是都已装置
[Linux87]#rpm-qabzip2-devellibmcrypt-devellibxml2-devel
libxml2-devel-2.7.6-14.el6.x86_64
bzip2-devel-1.0.5-7.el6_0.x86_64
libmcrypt-devel-2.5.8-9.el6.x86_64
[Linux87]#
#如未装置;必要先用yum装置上




1、这边是每一个办事独自作为一个办事器;以是编译时与放在一台呆板上是有分离的;并且也不必要先装置mysql;上面来间接编译PHP
[Linux87]#ls
php-5.4.26.tar.bz2xcache-3.1.0.tar.bz2
[Linux87]#tarxfphp-5.4.26.tar.bz2
[Linux87]#./configure--prefix=/usr/local/php--enable-fpm--with-config-file-path=/etc--with-config-file-scan-dir=/etc/php.d--with-libxml-dir=/usr--with-openssl--with-zlib--with-bz2--with-jpeg-dir--with-png-dir--with-freetype-dir--enable-mbstring--with-mcrypt--enable-sockets--with-mysql=mysqlnd--with-mysqli=mysqlnd--with-pdo-mysql=mysqlnd
#注重:--with-mysql几个选项都要为mysqlnd;由于mysql办事器独自为另外一台呆板
+--------------------------------------------------------------------+
|License:|
|ThissoftwareissubjecttothePHPLicense,availableinthis|
|distributioninthefileLICENSE.Bycontinuingthisinstallation|
|process,youareboundbythetermsofthislicenseagreement.|
|Ifyoudonotagreewiththetermsofthislicense,youmustabort|
|theinstallationprocessatthispoint.|
+--------------------------------------------------------------------+
ThankyouforusingPHP.
呈现上述字符就申明能够持续装置了;
[Linux87]#make&&makeinstall
InstallingPEARenvironment:/usr/local/php/lib/php/
[PEAR]Archive_Tar-installed:1.3.11
[PEAR]Console_Getopt-installed:1.3.1
warning:pear/PEARrequirespackage"pear/Structures_Graph"(recommendedversion1.0.4)
warning:pear/PEARrequirespackage"pear/XML_Util"(recommendedversion1.2.1)
[PEAR]PEAR-installed:1.9.4
WrotePEARsystemconfigfileat:/usr/local/php/etc/pear.conf
Youmaywanttoadd:/usr/local/php/lib/phptoyourphp.iniinclude_path
[PEAR]Structures_Graph-installed:1.0.4
[PEAR]XML_Util-installed:1.2.1
/root/program/php-5.4.26/build/shtoolinstall-cext/phar/phar.phar/usr/local/php/bin
ln-s-f/usr/local/php/bin/phar.phar/usr/local/php/bin/phar
InstallingPDOheaders:/usr/local/php/include/php/ext/pdo/
[Linux87]#
#到这里申明装置乐成了;大概会有些报错说某些软件版本太低




2、上面设置PHP
设置php的设置文件
[Linux87]#cpphp.ini-production/etc/php.ini
设置一个启动剧本
[Linux87]#cpsapi/fpm/init.d.php-fpm/etc/rc.d/init.d/php-fpm
给实行权限
[Linux87]#chmod+x/etc/rc.d/init.d/php-fpm
到场chkconfig
[Linux87]#chkconfig--addphp-fpm
[Linux87]#chkconfigphp-fpmon
[Linux87]#chkconfig--listphp-fpm
php-fpm0:off1:off2:on3:on4:on5:on6:off
[Linux87]#cd/usr/local/php/etc/
设置php-fpm设置文件
[Linux87]#cpphp-fpm.conf.defaultphp-fpm.conf
变动设置文件
[Linux87]#viphp-fpm.conf
[global]
;Pidfile
;Note:thedefaultprefixis/usr/local/php/var
;DefaultValue:none
pid=run/php-fpm.pid#这项启用;上面几项对应的改成响应的值便可
;
pm.max_children=50
;Thenumberofchildprocessescreatedonstartup.
;Note:Usedonlywhenpmissettodynamic
;DefaultValue:min_spare_servers+(max_spare_servers-min_spare_servers)/2
pm.start_servers=5
;Thedesiredminimumnumberofidleserverprocesses.
;Note:Usedonlywhenpmissettodynamic
;Note:Mandatorywhenpmissettodynamic
pm.min_spare_servers=3
;Thedesiredmaximumnumberofidleserverprocesses.
;Note:Usedonlywhenpmissettodynamic
;Note:Mandatorywhenpmissettodynamic
pm.max_spare_servers=8
#变动完成后启动:
[Linux87]#servicephp-fpmstart
Startingphp-fpmdone
[Linux87]#ss-tunl|grep9000
tcpLISTEN0128127.0.0.1:9000*:*
#因为php-rpm是监听在9000端口,检察启动一般




3、与Apache整合到一同
[Linux87]#vi/usr/local/php/etc/php-fpm.conf
定位到listen;IP地点变动为他人可用会见出去的IP地点
;/path/to/unix/socket-tolistenonaunixsocket.
;Note:Thisvalueismandatory.
listen=172.16.251.87:9000
[Linux87]#servicephp-fpmrestart
[Linux87]#ss-tnul|grep9000
tcpLISTEN0128172.16.251.87:9000*:*
[Linux87]#
[Linux87]#cd/var/www/
[Linux87]#mkdirpipisouldarkmydamin
#创建几个目次作为假造主机目次




4、设置Apache假造主机来利用PHP
<divclass="syntaxhighlighterpythonie"id="highlighter_969928"><divclass="container">到Apache主机上;找一个目次上面创建几个分歧的目次作为假造主机目次;
[Linux86]#cd/usr/local/apache/
[Linux86]#mkdir-pvwww/{pipi,soul,dark,myadmin}
编纂主设置文件;开启假造主机;封闭中央主机
[Linux86]#vi/etc/httpd24/httpd.conf
#DocumentRoot:Thedirectoryoutofwhichyouwillserveyour
#documents.Bydefault,allrequestsaretakenfromthisdirectory,but
#symboliclinksandaliasesmaybeusedtopointtootherlocations.
#
#DocumentRoot"/usr/local/apache/htdocs"正文失落
#Virtualhosts
Include/etc/httpd24/extra/httpd-vhosts.conf#开启这项
#定位AddType;增加上面两行
AddTypeapplication/x-httpd-php.php
AddTypeapplication/x-httpd-php-source.phps
<divclass="linenumber16index15alt1">如果您觉得本篇CentOSLinux教程讲得好,请记得点击右边漂浮的分享程序,把好文章分享给你的小伙伴们!
第二个灵魂 该用户已被删除
沙发
发表于 2015-1-16 21:03:30 | 只看该作者

给大家带来CentOS下编译装置LAMP并分别为多台办事器

和私有操作系统不同,各个Linux的发行版本的技术支持时间都较短,这对于Linux初学者是往往不够的。
柔情似水 该用户已被删除
板凳
发表于 2015-1-25 12:00:49 | 只看该作者
清楚了解网络的基础知识,特别是在Linux下应用知识,如接入internet等等。
蒙在股里 该用户已被删除
地板
发表于 2015-2-8 15:15:31 | 只看该作者
学习Linux系统在服务中的配置方法及使用方法。Linux在服务器中应用相当广,应对常用的apache,samba,ftp等服务器基本配置清楚了解。[重点,应巩固学习]
金色的骷髅 该用户已被删除
5#
发表于 2015-2-25 20:28:14 | 只看该作者
我学习Linux的心得体会 ,希望对大家的学习有所帮助,由于水平有限,本文难免有所欠缺,望请指正。
再现理想 该用户已被删除
6#
发表于 2015-3-8 07:23:49 | 只看该作者
其中不乏很多IT精英的心血。我们学透以后更可以做成自己的OS!?
变相怪杰 该用户已被删除
7#
发表于 2015-3-16 03:42:41 | 只看该作者
Linux?最大的优点在于其作为服务器的强大功能,同时支持多种应用程序及开发工具,所以Linux操作系统有着广泛的应用空间。
小女巫 该用户已被删除
8#
发表于 2015-3-22 20:12:37 | 只看该作者
一定要养成在命令行下工作的习惯,要知道X-window只是运行在命令行模式下的一个应用程序。在命令行下学习虽然一开始进度较慢。
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

QQ|Archiver|手机版|仓酷云 鄂ICP备14007578号-2

GMT+8, 2024-12-23 22:19

Powered by Discuz! X3.2

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表