开源黄金组合LAMP:Linux ,apache,Mysql,Php
我们使用rpm包来安装LAMP,我们之前已经安装并配置过了apache了,设置了两个基于域名的虚拟主机。
接下来配置Php和Mysql
php:
yum install php
安装完成后,会自动产生/etc/httpd/conf.d/php.conf
vim /etc/httpd/conf/httpd.conf
在DirectoryIndex中添加index.php
cd /web/html/web1
ls
mv index.html index.php
vim index.php
添加如下代码:
phpinfo();
?>
service httpd reload
此时你在地址栏中输入
就会显示php的信息,如图
如果你出现了此页面,说明你的php配置成功了。
mysql
yum install mysql-server
mysql是一个独立的服务器,得专门启动起来。使用service mysqld start.他不会开机自动启动,要想开机自动启动,使用chkconfig mysqld on,mysql服务监听3306端口
#mysql
SHOW DATABASE; '查看数据库
CREATE DATABASE mydb; '创建数据库
USE mydb ; '设置默认数据库
CREATE TABLE t1( '创建表
name char(20),
age int
);
DROP TABLE t1; '删除表
DROP DATABASE mydb; '删除数据库
\q '退出
接下来我们让php和mysql连接起来,php想访问mysql,必须有mysql的连接器
yum install php-mysql php-mbstring
接下来我们通过设置来验证一下
this is web1,Welcome!
$link=mysql_connect('127.0.0.1','root','');
if ($link)
echo "the test has Succeed.hia hia";
else
echo "the test has faild!oh no";
?>
如果成功了,就会显示如下所示:
this is web1,Welcome! the test has Succeed.hia hia
wordpress
接下来安装一个网站wordpress
cd /web/html/web1
unzip wordpress-3.0.4-zh_CN.zip
mv wordprss/* ./
cp wp-config-sample.php wp-config.php
vim wp-config.php
修改:
define('DB_NAME', 'wordpress'); '数据库名
define('DB_USER', 'root'); '数据库用户
define('DB_PASSWORD', ''); '数据库密码
然后建立一个数据库
#mysql
create database wordpress;
show databases;
\q
http:
就会出现如下的安装界面:
阅读(1246) | 评论(0) | 转发(0) |