Linux服务器LAMP环境搭建全过程(2)

三:安装php 

1:建立一个index.php的测试页面

[root@ html]# cd /var/www/html/

[root@ html]# ll

total 4

-rw-r--r-- 1 root root 24 Mar 9 01:09 index.html

[root@ html]# mv index.html index.php

[root@ html]# ll

total 4

-rw-r--r-- 1 root root 24 Mar 9 01:09 index.php

[root@ html]# vim index.php

hello the world!!!!!!!!

phpinfo();

?>

注意:在这里我们知道了php是apache的一个模块,这样的话可以减少对系统资源的占用

Cat /etc/httpd/conf.d/php.conf

Cd /etc/httpd/modues/libphp5.mode

2:重新启动apache的服务

[root@ html]# service httpd restart

Stopping httpd: [ OK ]

Starting httpd: [ OK ]

3:在客户机上进行测试

Linux服务器,LAMP

4:修改 /var/www/html/index.php 的首页

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

hello the world!!!!!!!!

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

if($link)

echo "ok";

else

echo "not ok";

?>

再次进行测试,验证php和mysql之间的连接是否正常

Linux服务器,LAMP

这里我们看到我们已经连接成功,但是这样管理mysql的话会比较麻烦,安全性也不是很高。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/df6eb38901e1f2ae0feffff027af2495.html