centos 6 编译安装LAMP

前端之家收集整理的这篇文章主要介绍了centos 6 编译安装LAMP前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

搭建环境:Centos 6.8,httpd2.4.18,MysqL 5.6.23,PHP 5.6.17

一、前期准备

请参考LNMP前期准备和MysqL安装请参考:http://www.jb51.cc/article/p-mdoljzgl-ou.html

二、httpd安装

安装apr

tarxfapr-1.5.2.tar.gz
cdapr-1.5.2
./configure--prefix=/usr/local/apr
make&&makeinstall

安装apr-util

tarxfapr-util-1.5.4.tar.gz
cdapr-util-1.5.4
./configure--prefix=/usr/local/apr-util--with-apr=/usr/local/apr
make&&makeinstall

安装httpd

cdhttpd-2.4.18
./configure--prefix=/usr/local/apache--sysconfdir=/etc/httpd--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
make&&makeinstall

编译安装部分参数说明

--enable-so#支持DSO动态装载模块
--enable-ssl#要编译启用ssl模块(前提是需要安装openssl-devel)
--enable-cgi#启用CGI模块(默认就启用)
--enable-rewrite#URL重写(支持URL重写)
--with-zlib#这是一个压缩库(专用于网络传输)
--with-pcre#使用增强的perl正则表达式分析工具(使用这项需要安装pcre-devel,pcre:正则表达式分析器)
--with-apr=/usr/local/apr#指明apr的目录(若apr在特殊路径下)
--with-apr-util=/usr/local/apr-util/#指明apr-util路径(若apr-util在特殊路径下
)
--enable-mpms-shared=all#把所有的mpm模块都编译进来而且是共享模块
--with-mpm=work#默认使用的mpm模块
--enable-modules=most(all)#还有很多其他模块,其他的动态可装载模块需要

测试httpd配置是否正常

/usr/local/apache/bin/apachectl-t

设置httpd服务和开机启动项

cp/usr/local/apache/bin/apachectl/etc/rc.d/init.d/httpd
vim/etc/rc.d/init.d/httpd
#chkconfig:356161
#description:Apache
chkconfig--addhttpd
chkconfighttpdon

三、PHP编译安装

前期准备(补充安装,--with-xsl使用)

yuminstalllibxslt-devel

安装PHP

tarxfPHP-5.6.17.tar.gz
cdPHP-5.6.17
./configure--prefix=/usr/local/PHP--with-MysqL=/usr/local/MysqL--with-apxs2=/usr/local/apache/bin/apxs--with-MysqLi=/usr/local/MysqL/bin/MysqL_config--with-iconv-dir=/usr/local--with-openssl--enable-mbstring--with-freetype-dir--with-jpeg-dir--with-png-dir--with-zlib--with-libxml-dir=/usr--enable-xml--disable-rpath--enable-bcmath--enable-shmop--enable-sysvsem-disable-inline-optimization--enable-mbregex--enable-mbstring--with-gd--enable-gd-native-ttf--with-mhash--enable-pcntl--enable-sockets--with-mcrypt--with-ldap--with-ldap-sasl--with-xmlrpc--enable-zip--enable-soap--with-bz2--with-config-file-path=/etc--with-config-file-scan-dir=/etc/PHP.d--enable-maintainer-zts--with-xmlrpc=shared--with-xsl
makeZEND_EXTRA_LIBS='-liconv'
makeinstall

编译安装部分参数说明(很多加载项用途不明,从别处抄袭,前几位参数还是特别重要的,比如--with-apsx2,httpd和PHP整合用使用)

--with-MysqL=/usr/local/MysqL#MysqL安装目录,对MysqL支持
--with-MysqLi=/usr/local/MysqL/bin/MysqL_config#MysqLi扩展技术不仅可以调用MysqL的存储过程、处理MysqL事务,而且还可以使访问数据库工作变得更加稳定。
--with-apxs2=/usr/local/apache/bin/apxs#整合apache,apxs功能是使用mod_so中的LoadModule指令,加载指定模块到apache,要求apache要打开SO模块
--with-iconv-dir=/usr/local#选项指令,用于PHP编译时指定iconv在系统里的路径,否则会扫描默认路径(与ZEND_EXTRA_LIBS='-liconv')。
--enable-maintainer-zts#编译成zts模块,event,worker模式使用
--with-freetype-dir#打开对freetype字体库的支持
--with-jpeg-dir#打开对jpeg图片支持
--with-png-dir#打开对png图片支持
--with-zlib-dir#打开zlib库的支持,用于http压缩传输
--with-libxml-dir#打开libxml2库的支持
--disable-rpath#关闭额外的运行库文件
--enable-bcmath#打开图片大小调整,用到zabbix监控的时候用到了这个模块
--enable-sysvsem#这样就使得你的PHP系统可以处理相关的IPC函数了。
--enable-inline-optimization#优化线程
--with-curl#打开curl浏览工具的支持
--with-curlwrappers#运用curl工具打开url流
--enable-mbregex
--enable-fpm#支持PHP-fpm,早期版本需要补丁后才有这个参数,CGI方式安装的启动程序
--enable-mbstring#多字节,字符串的支持
--with-mcrypt#mcrypt算法扩展
--with-mhash#mhash算法扩展
--with-gd#打开gd库的支持
--enable-gd-native-ttf#支持TrueType字符串函数库
--with-openssl#openssl的支持,加密传输https时用到的
--enable-pcntl#freeTDS需要用到的,可能是链接mssql才用到
--enable-sockets#打开sockets支持
--with-xmlrpc#打开xml-rpc的c语言
--enable-zip#打开对zip的支持
--enable-ftp#打开ftp的支持
--with-bz2#打开对bz2文件支持
--without-iconv#关闭iconv函数,字符集间的转换
--with-ttf#打开freetype1.*的支持,可以不加了
--with-xsl#打开XSLT文件支持,扩展了libXML2库,需要libxslt软件
--with-gettext#打开gnu的gettext支持,编码库用到
--with-pear#打开pear命令的支持PHP扩展用的
--enable-calendar#打开日历扩展功能
--enable-exif#图片的元数据支持
--enable-magic-quotes#魔术引用的支持
--disable-debug#关闭调试模式
--with-mime-magic=/usr/share/file/magic.mime#魔术头文件位置
#CGI方式安装才用的参数
--enable-fastCGI#支持fastcgi方式启动PHP
--enable-force-CGI-redirect#重定向方式启动PHP
--with-ncurses#支持ncurses屏幕绘制以及基于文本终端的图形互动功能的动态库
--with-gmp#应该是支持一种规范
--enable-dbase#建立DBA作为共享模块
--with-pcre-dir=/usr/local/bin/pcre-config#perl的正则库案安装位置
--disable-dmalloc
--with-gdbm#dba的gdbm支持
--enable-sigchild
--enable-sysvshm
--enable-zend-multibyte#支持zend的多字节
--enable-wddx
--enable-soap

提供PHP配置文件

cpPHP.ini-production/etc/PHP.ini

修改httpd.conf,使其支持PHP,并且可以识别index.PHP结尾作为首页

AddTypeapplication/x-httpd-PHP.PHP
AddTypeapplication/x-httpd-PHP-source.PHPs
DirectoryIndexindex.PHPindex.html

四、PHP扩展

libevent编译安装(libevent是一个基于事件触发的网络库,memcached底层也是使用libevent库。)

tarxflibevent-2.0.22-stable.tar.gz
cdlibevent-2.0.22-stable
./configure--prefix=/usr/local/libevent
make&&makeinstall
echo"/usr/local/libevent/lib">/etc/ld.so.conf.d/libevent.conf
ldconfig

memcached编译安装

tarxfmemcached-1.4.25.tar.gz
cdmemcached-1.4.25
/configure--prefix=/usr/local/memcached--with-libevent=/usr/local/libevent/
make&&makeinstall

编译memcached开机启动项(部分设置均在服务脚本中)

vim/etc/rc.d/init.d/memcached
#!/bin/bash
#
#Initfileformemcached
#
#chkconfig:-8614
#description:Distributedmemorycachingdaemon
#
#processname:memcached
#config:/etc/sysconfig/memcached

./etc/rc.d/init.d/functions

##Defaultvariables
PORT="11211"
USER="root"
MAXCONN="1024"
CACHESIZE="64"
OPTIONS=""

RETVAL=0
prog="/usr/local/memcached/bin/memcached"
desc="Distributedmemorycaching"
lockfile="/var/lock/subsys/memcached"

start(){
echo-n$"Starting$desc(memcached):"
daemon$prog-d-p$PORT-u$USER-c$MAXCONN-m$CACHESIZE
RETVAL=$?
echo
[$RETVAL-eq0]&&touch$lockfile
return$RETVAL
}

stop(){
echo-n$"Shuttingdown$desc(memcached):"
killproc$prog
RETVAL=$?
echo
[$RETVAL-eq0]&&rm-f$lockfile
return$RETVAL
}

restart(){
stop
start
}

reload(){
echo-n$"Reloading$desc($prog):"
killproc$prog-HUP
RETVAL=$?
echo
return$RETVAL
}

case"$1"in
start)
start
;;
stop)
stop
;;
restart)
restart
;;
condrestart)
[-e$lockfile]&&restart
RETVAL=$?
;;
reload)
reload
;;
status)
status$prog
RETVAL=$?
;;
*)
echo$"Usage:$0{start|stop|restart|condrestart|status}"
RETVAL=1
esac

exit$RETVAL
chmod+x/etc/rc.d/init.d/memcached
chkconfig--addmemcached
servicememcachedstart

memcached部分参数说明

-l<ip_addr>:指定进程监听的地址;
-d:以服务模式运行;
-u<username>:以指定的用户身份运行memcached进程;
-m<num>:用于缓存数据的最大内存空间,单位为MB,默认为64MB;
-c<num>:最大支持的并发连接数,默认为1024;
-p<num>:指定监听的TCP端口,默认为11211;
-U<num>:指定监听的UDP端口,默认为11211,0表示关闭UDP端口;
-t<threads>:用于处理入站请求的最大线程数,仅在memcached编译时开启了支持线程才有效;
-f<num>:设定SlabAllocator定义预先分配内存空间大小固定的块时使用的增长因子;
-M:当内存空间不够使用时返回错误信息,而不是按LRU算法利用空间;
-n:指定最小的slabchunk大小;单位是字节;
-S:启用sasl进行用户认证;

freetds编译安装(用于PHP连接mssql)

tarxffreetds-1.00.11.tar.gz
cdfreetds-1.00.11
./configure--prefix=/usr/local/freetds--with-tdsver=7.3--enable-msdblib--with-gnu-ld--enable-shared--enable-static
make&&makeinstall
cd/usr/local/src/PHP-5.6.17/ext/mssql/
/usr/local/PHP/bin/PHPize
./configure--with-PHP-config=/usr/local/PHP/bin/PHP-config--with-mssql=/usr/local/freetds/
make&&makeinstall

--with-tdsver=7.3说明,具体说明参照:

http://www.freetds.org/userguide/choosingtdsprotocol.htm#TAB.PROTOCOL.BY.PRODUCT

wKiom1eXNBrCzsr4AAB2YE_enNA904.png

安装PHP支持memcache扩展模块

tarzxvfmemcache-2.2.7.tgz
cdmemcache-2.2.7
/usr/local/PHP/bin/PHPize
./configure--enable-memcache--with-PHP-config=/usr/local/PHP/bin/PHP-config--with-zib-dir
make&&makeinstall

修改PHP.ini,增加freetds和memcache功能

extension_dir="/usr/local/PHP/lib/PHP/extensions/no-debug-zts-20131226/"
extension=mssql.so
extension="GBK"
extension=memcache.so

重启httpd使生效

servicehttpdrestart

编写PHP测试页面

<?PHP
$link=MysqL_connect('ipaddress','user','passwd');
if($link)
echo"MysqLSuccess...";
else
echo"MysqLFailure...";
MysqL_close();
$conn=mssql_connect('ipaddress','passwd');
if($conn)
echo"MSsqlSucess...";
else
echo"MSsqlFailure...";
mssql_close();
PHPinfo();
?>

测试可正常使用

wKioL1eXO0jwle8ZAABZSzaWqTU342.png

wKioL1eXNzKAOJluAAAnwnABSMA265.png

wKioL1eXNzLTOjf5AAAyHfm3lQw710.png

五、后记

本篇博文拖了好久才写出来,其实LAMP编译安装还是挺简单的,只是httpd和PHP的模块化整合搞了好久(./configure具体配置不知何用),计划用于公司的IPOS系统测试使用,后面几篇博文计划httpd.conf,PHP.ini,Nginx.conf配置说明。web服务器的搭建还是得熟练点,毕竟Linux使用最多的东西。

原文链接:https://www.f2er.com/centos/381430.html

猜你在找的CentOS相关文章