考试首页 | 考试用书 | 培训课程 | 模拟考场 | 考试论坛  
  当前位置:Linux认证 > 综合辅导 > 文章内容
  

RedHat5.4下Web服务器架构之源码构建LAMP环境及应用PHPWind

来源:Linux社区 [ 2016年1月19日 ] 【

phpwind论坛构建详细过程
2.1、    安装apache,mysql,php
#安装apache的主程序

 [root@shuiyong ~]# yum install -y httpd

#安装mysql的主程序以及mysql服务程序

[root@shuiyong ~]# yum install -y mysql mysql-server

#安装php的主程序以及php与mysql的连接程序,php的开发程序,php绘图程序,通用字符集程序

[root@shuiyong ~]# yum install -y php php-mysql php-devel php-gd php-mbstring

#启动apache

[root@shuiyong ~]# service httpd start     

#启动mysql

[root@shuiyong ~]# service mysqld start         

2.2、    测试php,mysql和apache的连接
#编辑apache的主配置文件,使其支持php网页文件

[root@shuiyong ~]# vim /etc/httpd/conf/httpd.conf

391 DirectoryIndex index.php index.html index.html.var

#重新启动apache程序,即重启httpd服务

[root@shuiyong ~]# service httpd restart

#编辑php网页文件,用于测试apache与php的结合。

[root@shuiyong ~]#vim /var/www/html/index.php

----xiamen huangshuiyong !!!

---2012/10/17

phpinfo();

?>

客户端测试显示如下结果:可以看出apache与php成功连接

#编辑php网页文件,用于测试apache与mysql的结合。

[root@shuiyong ~]#vim /var/www/html/index.php

----xiamen huangshuiyong !!!

---2012/10/17

$link=mysql_connect('127.0.0.1','root','');

if($link)

echo "scuess";

else

echo "fail";

?>

客户端测试显示如下结果:可以看出apache与mysql成功连接

#此时若关闭mysql,apache就无法正常显示网页,如下所示:

[root@shuiyong ~]#service mysqld stop 

Stopping MySQL:                                            [  OK  ]

关闭,mysql,客户端测试显示如下结果:可以看出apache与mysql连接失败

#启动mysql,使其正常工作

[root@shuiyong ~]# service mysqld start

Starting MySQL:                                            [  OK  ]

首页 1 2 尾页
本文纠错】【告诉好友】【打印此文】【返回顶部
将考试网添加到收藏夹 | 每次上网自动访问考试网 | 复制本页地址,传给QQ/MSN上的好友 | 申请链接 | 意见留言 TOP
关于本站  网站声明  广告服务  联系方式  站内导航  考试论坛
Copyright © 2007-2013 中华考试网(Examw.com) All Rights Reserved