这篇文章可以供初学者参考.

第一:mysql的安装


1):下载mysql的安装包,我习惯把安装包放到/usr/local/src/这个目录下

cd /usr/local/src/

wget http://syslab.comsenz.com/downloads/linux/mysql-5.1.40-linux-i686-icc-glibc23.tar.gz

2):解压:

tar zxvf /usr/local/src/mysql-5.1.40-linux-i686-icc-glibc23.tar.gz


3):  把解压完的数据移动到/usr/local/mysql,(这个目录本身是不存在的,需要自己创建)

[root@localhost src]#mv mysql-5.1.40-linux-i686-icc-glibc23 /usr/local/mysql  (直接移动并创建mysql这个目录)


4):建立mysql用户

[root@localhost src]#useradd -s /sbin/nologin mysql


5):  初始化数据库

[root@localhost src]#cd /usr/local/mysql

[root@localhostmysql]# mkdir -p /data/mysql ; chown -R mysql:mysql /data/mysql

[root@localhostmysql]# ./scripts/mysql_install_db --user=mysql --datadir=/data/mysql   // 初始化数据库(如果这里报错,可能是数据库版本和系统版本不一致)

说明:--user 定义数据库的所属主, --datadir 定义数据库安装到哪里,建议放到大空间的分区上,这个目录需要自行创建。这一步骤很关键,如果你看到两个“OK” 说明执行正确。


6):  拷贝配置文件

[root@localhostmysql]# cp support-files/my-large.cnf /etc/my.cnf


7): 拷贝启动脚本文件并修改其属性

[root@localhostmysql]# cp support-files/mysql.server /etc/init.d/mysqld

[root@localhostmysql]# chmod 755 /etc/init.d/mysqld


8):  修改启动脚本

[root@localhostmysql]# vim /etc/init.d/mysqld

需要修改的地方有“datadir=/data/mysql” (前面初始化数据库时定义的目录)和Basedir=/usr/local/mysql




9): 把启动脚本加入系统服务项,并设定开机启动,启动mysql


[root@localhostmysql]# chkconfig --add mysqld

[root@localhostmysql]# chkconfig mysqld on

[root@localhostmysql]# service mysqld start

查看能否成功启动。


第二:安装apache




1 下载


[root@localhost mysql]# cd /usr/local/src/

[root@localhost src]# wget  http://syslab.comsenz.com/downloads/linux/httpd-2.2.16.tar.gz

2 解压:[root@localhost src]# tar zxvf httpd-2.2.16.tar.gz


3  配置编译参数:

[root@localhost src]# cd httpd-2.2.16

[root@localhost httpd-2.2.16]# ./configure \

--prefix=/usr/local/apache2 \

--with-included-apr \              (可以支持apache跨平台运行)

--enable-so \

--enable-deflate=shared \      

--enable-expires=shared \

--enable-rewrite=shared \

--with-pcre

说明:--prefix 指定安装到哪里, --enable-so 表示启用

在这个编译的过程中,可以会出现某些错误:我把我遇到的错误贴在这里:

error: mod_deflate has been requested but can not be built due to prerequisite failures

解决办法是:

yum install -y zlib-devel

error:如果出现类似checking for gcc…….no 的可以运行

解决办法:yum install –y gcc

如果最后不知道是否成功编译可以用echo $?来判断,如果输出是0 代表成功,如果不是则不成功。


4  编译并安装 make && make install  也可以用echo $?来判断是否成功。第三:安装php


1):下载 [root@localhost src]# wget http://am1.php.net/distributions/php-5.3.27.tar.gz


2):解压:  tar zvxf php-5.3.27.tar.gz


3):配置编译参数:

[root@localhost src]# cd php-5.3.27

[root@localhost php-5.3.27]# ./configure \

--prefix=/usr/local/php \

--with-apxs2=/usr/local/apache2/bin/apxs \

--with-config-file-path=/usr/local/php/etc  \

--with-mysql=/usr/local/mysql \

--with-libxml-dir \

--with-gd \

--with-jpeg-dir \

--with-png-dir \

--with-freetype-dir \

--with-iconv-dir \

--with-zlib-dir \

--with-bz2 \

--with-openssl \

--with-mcrypt \

--enable-soap \

--enable-gd-native-ttf \

--enable-mbstring \

--enable-sockets \

--enable-exif \

--disable-ipv6

说明:如果你的系统是个新安装的系统,在这一步可能会遇到更多的错误,我把我遇到的错误贴到这里:

configure: error:xml2-config not found. Please check your libxml2 installation.

解决办法是:

yum install -y libxml2-devel

还有错误:

configure: error:Cannot find OpenSSL's

解决办法是:

yum install -y openssl openssl-devel

错误:

checking for BZip2 indefault path... not found

configure: error:Please reinstall the BZip2 distribution

解决办法:

yum install -y bzip2 bzip2-devel

错误:

configure: error:png.h not found.

解决办法:

yum install -y libpng libpng-devel

错误:

configure: error:freetype.h not found.

解决办法:

yum install -y freetype freetype-devel

configure: error:mcrypt.h not found. Please reinstall libmcrypt.

解决办法:

 

这个软件包linux可能没有,用yum安装可能也不行,这就需要我们去安装第三方的源

 我这里提供个连接"rpm -ivh "http://www.aminglinux.com/bbs/data/p_w_upload/forum/month_1211/epel-release-6-7.noarch.rpm " 把这个安装完之后再运行 yum install -y  libmcrypt-devel 这个就安装上了

 

错误:configure:error:jpeglib.h.notfound

 

解决方法:yum install–y libjpeg-devel

也可以用echo $?测试


以上这些就是我遇到的错误了


4): 最后可以编译安装了

 make

 make install 



第四:apache和php结合



vim /usr/local/apache2/conf/httpd.conf

找到:

AddType application/x-gzip .gz .tgz

在该行下面添加:

AddType application/x-httpd-php .php(注意:”.”两边有空格)

找到:

    DirectoryIndex index.html

将该行改为:

    DirectoryIndex index.html index.htm index.php

找到:

#ServerName www.example.com:80

修改为:

ServerName localhost:80


第五:测试LAMP是否成功


启动apache之前先检验配置文件是否正确:

/usr/local/apache2/bin/apachectl -t


启动apacche服务/usr/local/apache2/bin/apachectl start


查看是否启动:

[root@localhost ~]# netstat -lnp |grep httpd

tcp        0      0 :::80                       :::*   LISTEN      7667/httpd

如果有显示这行,则启动了。 也可以使用curl命令简单测试:

[root@localhost ~]# curl localhost

It works!

只有显示这样才正确。

也可以在浏览器里输入你主机的IP地址也可以测试


测试是否正确解析php:

vim /usr/local/apache2/htdocs/1.php

写入:

    echo "php解析正常";

    ?>

保存后,继续测试:

curl localhost/1.php

 如果出现:”php解析正常[root@localhost ~]#“

 则代表成功

以上这些就是基本的lamp环境的搭建了,可能写的比较乱,希望大家多多指教。