*分别按顺序安装,安装命令如下:
a) rpm -ivh MySQL-server-4.0.23-0.i386.rpm
测试是否成功可运行netstat看Mysql端口是否打开,如打开表示服务已经启动,安装成功。Mysql默认的端口是3306。
[root@test1 local]# netstat -nat
Active Internet connections (servers and established)
Proto Recv-Q Send-Q Local Address Foreign Address State
tcp 0 0 0.0.0.0:3306 0.0.0.0:* LISTEN
上面显示可以看出MySQL服务已经启动。
b)rpm -ivh MySQL-client-4.0.23-0.i386.rpm
用下面的命令连接mysql,测试是否成功。
[root@test1 local]# mysql
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1 to server version: 4.0.16-standard
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql>
出现了“mysql>”提示符,恭喜你,安装成功!
c)rpm -ivh MySQL-devel-4.0.23-0.i386.rpm
*更改数据库用户root的密码为:123456
a)/usr/bin/mysqladmin -u root password 123456
*新建wiki用数据库
a)mysql -u root -p
Enter password: (输入修改后的密码123456)
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 4 to server version: 4.0.16-standard
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> create database wikidb;
mysql> show databases;;
+----------+
| Database |
+----------+
| mysql |
| test |
| wikidb |
+----------+
3 rows in set (0.00 sec)
3、PHP的安装
*下载PHP 5.1.2:http://cn.php.net/downloads.php
*执行以下Linux命令进行安装
a)gunzip php-NN.tar.gz
b)tar -xvf php-NN.tar
c)cd ../php-NN
d)./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql
e)make
f)make install
g)cp php.ini-dist /usr/local/lib/php.ini
h)编辑 httpd.conf 文件以调用 PHP 模块。LoadMolude 表达式右边的路径必须指向您
系统中的 PHP。以上的 make install 命令可能已经帮您完成了这些,但务必要检查。
对于 PHP 5:
LoadModule php5_module modules/libphp5.so
注:httpd.conf 文件在目录/usr/local/apache2/conf中
i)继续编辑 httpd.conf 文件,告知 Apache 将特定的扩展名解析成 PHP,例如,我们让 Apache 将扩展名 .php 解析成 PHP。您可以将任何扩展名指定为 PHP,只需添加它们,每一个用空格分隔。
例如,我们要添加 .phtml: