码迷,mamicode.com
首页 > 其他好文 > 详细

Lammp的搭建

时间:2014-10-28 18:06:49      阅读:381      评论:0      收藏:0      [点我收藏+]

标签:网络管理员   网络服务   ip地址   计算机   

Lammp的搭建

拓扑图

bubuko.com,布布扣 

Apache+php的搭建:

httpd-2.4.4.tar.bz2 

apr-1.4.6.tar.gz

apr-1.4.6.tar.gz   需要这3个软件包

[root@wang ~]# tar -zxvf apr-1.4.6.tar.gz -C /usr/local/src/  解压apr软件包

[root@wang ~]# tar -zxvf apr-util-1.5.1.tar.gz -C /usr/local/src/   解压aprutil软件包

[root@wang ~]# tar -jxvf httpd-2.4.4.tar.bz2 -C /usr/local/src/   解压httpd软件包

[root@wang ~]# cd /usr/local/src/apr-1.4.6/   进入apr目录

[root@wang apr-1.4.6]# ./configure --prefix=/usr/local/apr   进行编译

[root@wang apr-1.4.6]# make && make install  安装

[root@wang apr-1.4.6]# cd ../apr-util-1.5.1/   切换到apr-util目录

[root@wang apr-util-1.5.1]# ./configure --prefix=/usr/local/apr-utils --with-apr=/usr/local/apr/bin/apr-1-config      编译,指定工具安装路径,指定apr的路径

[root@wang apr-util-1.5.1]# make && make install  进行编译安装

[root@wang apr-util-1.5.1]# cd ../httpd-2.4.4/  配置httpd

./configure  \

--prefix=/usr/local/apache  \

--sysconfdir=/etc/httpd \

--enable-so \

--enable-ssl  \

--enable-rewrite  \

--with-apr=/usr/local/apr/bin/apr-1-config \

--with-apr-util=/usr/local/apr-util/bin/apu-1-config \

--with-pcre  \

--with-z  \

--enable-mpms-shared=all      进行编译配置

bubuko.com,布布扣 

出现错误提示,需要安装pcre-devel包

[root@wang ~]# yum --disablerepo=\* --enablerepo=c6-media install pcre-devel -y  安装包

然后再进行编译配置

bubuko.com,布布扣 

出现这个错误提示,需要安装[root@wang ~]# yum --disablerepo=\* --enablerepo=c6-media install openssl-devel -y

再进行编译配置通过后

[root@wang httpd-2.4.4]# make && make install  配置安装

完成后

[root@wang httpd-2.4.4]# cd /usr/local/apache/  进入apache目录

[root@wang apache]# vim /etc/profile  编辑profile文件

bubuko.com,布布扣  

/usr/local/apache/bin   增加新的路径

[root@wang apache]# . /etc/profile  进行更新

[root@wang apache]# httpd -k start  测试是否能启动

[root@wang apache]# netstat -tupln |grep 80  查看80端口是否开启

[root@wang apache]# vim /etc/man.config   编辑man配置文件

bubuko.com,布布扣  

加入MANPATH /usr/local/apache/man

[root@wang apache]# man ab   尝试下是否生效

[root@wang apache]# cd /usr/include/  进入include目录

[root@wang include]# ln -s /usr/local/apache/include/ apache  做个链接

[root@wang ~]# cd /etc/init.d/   进入目录

[root@wang init.d]# touch httpd  创建httpd文件

[root@wang init.d]# chmod a+x httpd  加入可执行权限

[root@wang init.d]# vim httpd   进行编辑

 #!/bin/bash

  2 prog=/usr/local/apache/bin/httpd

  3 lockfile=/var/lock/subsys/httpd

  4 # description: the apache service

  5 # chkconfig: 2345 88 44

  6 start(){

  7   if [ -e $lockfile ];then

  8      echo "the apache service is started"

  9     else

 10     echo -n "the apache service is starting ...."

 11     sleep 1

 12     $prog -k start && echo "ok" && touch $lockfile || echo "failer"

 13   fi

 14 

 15 }

 16 

 17 stop(){

 18    if [ !e $lockfile ];then

 19       echo "the apache service is stopped"

 20       else

 21       echo "the apache service is stoping..."

 22       $prog -k stop && echo "ok" && rm -rf $lockfile || echo "failer"

 23    fi

 24 

 25 }

 26 

 27 

 28 case "$1" in

 29 start)

 30      start

 31      ;;

 32 stop)

 33      stop

 34      ;;

 35 restart)

 36      stop

 37      start

 38      ;;

 39 *)

 40 echo "Usage: start|stop|restart"

 41      ;;

 42 esac

添加此代码来实现httpd启动关闭动态效果

[root@wang init.d]# chkconfig --add httpd  加入httpd服务

[root@wang init.d]# chkconfig --list |grep httpd  查看服务启动

 

PHP源码安装

[root@wang ~]# tar -jxvf php-5.5.8.tar.bz2 -C  /usr/local/src/  解压软件包

[root@wang ~]# cd /usr/local/src/php-5.5.8/   进入目录

[root@wang php-5.5.8]# ./configure  \

./configure  \

--prefix=/usr/local/php \

--enable-fpm \

--enable-sockets  \

--with-mysql=mysqlnd  \     (使用mysqlnd模块调用另外主机的mysql)

--with-mysqli=mysqlnd \

--with-pdo-mysql=mysqlnd \

--enable-mbstring \

--enable-xml \

--with-png-dir \

--with-jpeg-dir \

--with-zlib \

--with-freetype-dir \

--with-config-file-path=/etc/php \

--with-config-file-scan-dir=/etc/php5.d  配置编译  

接下来需要make && make isntall 因为时间比较长,睡眠的时候可能连接断开所以需要screen来实现安装

[root@wang ~]# yum --disablerepo=\* --enablerepo=c6-media install screen -y   安装screen

[root@wang php-5.5.8]# screen   使用screen

又打开了一个窗口  ctrl+a+d可以离开   screen -ls可以查看

恢复的话 screen -r 编号

[root@wang php-5.5.8]# make && make install  然后进行后台配置安装

安装完成后:

[root@wang php-5.5.8]# cd /usr/local/apache/modules/  进入模块目录

[root@wang modules]# ll |grep php 

-rwxr-xr-x. 1 root root 23450184 Aug 24 06:41 libphp5.so  查看是否有php模块

[root@wang modules]# vim /etc/httpd/httpd.conf  进入配置文件

bubuko.com,布布扣 

加入此语句   AddType application/x-httpd-php .php

bubuko.com,布布扣 

加入  index.php

[root@wang modules]# service httpd restart  重启httpd

进行测试apache是否能与php进行结合

[root@wang modules]# cd ../htdocs/

[root@wang htdocs]# vim index.php   创建一个网页文件

bubuko.com,布布扣写入此函数

[root@wang htdocs]# mkdir /etc/php /etc/php5.d   创建2个目录

[root@wang htdocs]# cd /usr/local/src/php-5.5.8/ 

[root@wang php-5.5.8]# cp php.ini-production /etc/php/php.ini   拷贝文件到php.ini

[root@wang php-5.5.8]# service httpd restart  重启httpd

然后输入网页查看下

bubuko.com,布布扣 

成功与php进行了关联

 

memcached的搭建

在开一台虚拟机,将ip地址设为仅主机模式并将ip地址设置为192.168.3.101

[root@wang ~]# yum --disablerepo=\* --enablerepo=c6-media install lftp telnet -y 安装常用的软件包

bubuko.com,布布扣 

下载这memecached软件包

bubuko.com,布布扣 

还有libevent软件

[root@wang ~]# tar -zxvf libevent-2.0.16-stable.tar.gz -C /usr/local/src/

[root@wang ~]# tar -zxvf memcached-1.4.13.tar.gz -C /usr/local/src/  拆解包

[root@wang ~]# cd /usr/local/src/libevent-2.0.16-stable/     进入目录

[root@wang libevent-2.0.16-stable]# ./configure --prefix=/usr/local/libevent  进行配置(需要安装开发包)

[root@wang libevent-2.0.16-stable]# make && make install

[root@wang libevent-2.0.16-stable]# cd /usr/local/libevent/  切换到目录

[root@wang libevent]# vim /etc/ld.so.conf.d/libevent.conf  编辑配置文件导出库

/usr/local/libevent/lib

编辑为此

[root@wang libevent]# ldconfig   刷新缓存

[root@wang libevent]# ldconfig -pv |grep libevent   查看是否成功

[root@wang libevent]# cd /usr/local/src/memcached-1.4.13/   切换到此目录

[root@wang memcached-1.4.13]# ./configure  --prefix=/usr/local/memcached --with-libevent=/usr/local/libevent/  进行配置

[root@wang memcached-1.4.13]# make && make install  进行安装

[root@wang memcached-1.4.13]# cd /usr/local/memcached/ 进入目录

[root@wang memcached]# vim /etc/profile

bubuko.com,布布扣 

加入path路径

[root@wang memcached]# . /etc/profile 刷新缓存

[root@wang memcached]# memcached -h  查看memcached的帮助

[root@wang memcached]# memcached -d -m 64 -p 11211 -u nobody -vv  开启memcached

[root@wang memcached]# telnet 127.0.0.1 11211  登录进去进行测试

stats 查看状态

set foo 0 0 3 设置一个键值

 bar  存储值

get foo   取键值查看

 quit   退出

[root@wang memcached]# service iptables stop  关闭防火墙

[root@wang memcached]# chkconfig iptables off

[root@wang memcached]# setenforce 0

Apache+php主机

bubuko.com,布布扣 

下载memcache软件

[root@wang ~]# tar -zxvf memcache-2.2.5.tgz -C /usr/local/src/  进行解压

[root@wang ~]# cd /usr/local/src/memcache-2.2.5/

[root@wang memcache-2.2.5]# /usr/local/php/bin/phpize  执行php扩展

[root@wang memcache-2.2.5]# ./configure --enable-memcache --with-php-config=/usr/local/php/bin/php-config  进行memechache配置

[root@wang memcache-2.2.5]# make && make install 进行安装

[root@wang memcache-2.2.5]# cd /usr/local/php/lib/php/extensions/no-debug-non-zts-20121212/ 进入目录

[root@wang no-debug-non-zts-20121212]# ll

total 1348

-rwxr-xr-x. 1 root root 216204 Sep 13 07:22 memcache.so

-rwxr-xr-x. 1 root root 687720 Sep 12 18:44 opcache.a

-rwxr-xr-x. 1 root root 472259 Sep 12 18:44 opcache.so    可以查看到相应的模块

[root@wang no-debug-non-zts-20121212]# cp memcache.so /etc/php  将模块拷贝到/etc/php目录下

[root@wang no-debug-non-zts-20121212]# vim /etc/php/php.ini  编辑php.ini文件

bubuko.com,布布扣 

将模块进行如上改变

[root@wang no-debug-non-zts-20121212]# service php-fpm restart  重启php

bubuko.com,布布扣 

进入页面查看是否有memcache模块

bubuko.com,布布扣 

有该模块

进行测试

[root@wang no-debug-non-zts-20121212]# cd /usr/local/apache/htdocs/  进入目录

[root@wang htdocs]# vim index2.php

<?php

error_reporting(E_ALL & ~E_NOTICE); 

$mc = new memcache; 

$mc->addServer("192.168.3.101", 11211); 

$mc->set("foo", "Hello!"); 

$mc->set("bar", "Memcached..."); 

$arr = array(  

$mc->get("foo"), 

$mc->get("bar") 

);      

var_dump($arr); 

?>

编辑此测试页面

[root@wang memcached]# tenlent 127.0.0.1 11211  telnet进入memachaed

 stats 查看状态

bubuko.com,布布扣get2次 set 1

bubuko.com,布布扣 

访问此页面

bubuko.com,布布扣出现此更新

 

bubuko.com,布布扣set get 变化了

 


本文出自 “你猜我是谁” 博客,请务必保留此出处http://whhhj.blog.51cto.com/9289395/1568930

Lammp的搭建

标签:网络管理员   网络服务   ip地址   计算机   

原文地址:http://whhhj.blog.51cto.com/9289395/1568930

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!