我的第一个lamp

一、安装lamp需要的软件

1、yum install httpd mysql-server mysql php php-mysql


2、启动mysql服务

service mysqld start


3、启动apache

service httpd start


4、测试php页面,新建/var/www/html/index.php,内容如下:


<html>

<head>

<title>php test page</title>

</head>

<body>

<h1>modular php</h1>

<?php

  phpinfo();

?>

</body>

</html>


5、访问http://192.167.127.137/


注意:防火墙是否关闭。 service iptables stop


6、将WordPress部署到Apache下,wordpress的下载地址http://cn.wordpress.org/releases/#older,版本wordpress-3.3.1-zh_CN.zip。

A、将wordpress-3.3.1-zh_CN.zip解压到/var/www/html/中。

B、数据库授权:

grant all privileges on wpdb.*  to 'wpuser'@'localhost' identified by 'wppass';

C、访问http://192.167.127.137/

D、按照wordpress步骤即可完成安装。


你可能感兴趣的:(lamp)