LAMP 安装PwJLinux联盟
安装MYSQLPwJLinux联盟
#tar –zxvf mysql-5.0.22.tar.gz //解开安装包PwJLinux联盟
#cd mysql-5.0.22 //进入安装目录PwJLinux联盟
#mkdir /usr/local/mysql //创建mysql目录PwJLinux联盟
#./configure –prefix=/usr/local/mysql //设置安装目录PwJLinux联盟
#make //编译PwJLinux联盟
#make install //安装PwJLinux联盟
//或是这样 #make && make install 编译并安装
#groupadd mysql //新建名为mysql的组PwJLinux联盟
#useradd –g mysql mysql //新建名为mysql的用户,并且默认属于mysql组PwJLinux联盟
#chgrp –R mysql /usr/local/mysql //改变/usr/local/mysql及下属文件与目录属于的组PwJLinux联盟
#cp support-files/my-large.cnf /etc/my.cnf //拷贝my-large.cnf到/etc中,替换原有的my.cnfPwJLinux联盟
#scripts/mysql_install_db //建立初始数据PwJLinux联盟
#chown –R mysql:mysql /usr/local/mysql/var //更改var及下面的文件目录属组与属主PwJLinux联盟
#cp support-files/mysql.server /etc/init.d/mysqld //拷贝mysql.server到init.d目录中并重命名为mysql,启动文件PwJLinux联盟
#chmod 755 /etc/init.d/mysqld //设置启动文件的权限为755PwJLinux联盟
#chkconfig –add mysqld //把此服务添加到系统启动中,add为添加至/etc/rc.d/init.d中PwJLinux联盟
#chkconfig mysqld on //on默认在3\5级别服务默认启动PwJLinux联盟
#/etc/init.d/mysqld startPwJLinux联盟
#/usr/local/mysql/bin/mysqld_safe & //启动mysqlPwJLinux联盟
#/usr/local/mysql/bin/mysqladmin –u root –p password 123 //默认root用户密码为空,设置密码为123PwJLinux联盟
#/usr/local/mysql/bin/mysql –u root –p //输入上面设置的123后,以root身份登陆
#./mysqladmin -u root -p password 456 //输入上面设置的123后.以root身份登陆PwJLinux联盟
mysql> grant select on test.* to 'ttt' @'%' identified by'ttt' with grant option;PwJLinux联盟
//添加一个名称为ttt,密码为ttt的mysql账户,对test数据库有修改权限
2、Apahce的安装PwJLinux联盟
#tar -zxvf httpd-2.2.3.tar.gz //解压httpd-2.2.3.tar.gz包PwJLinux联盟
#./configure –prefix=/usr/local/apache2 --enbale-module=so //这里的—prefix指定apache 的安装将安装到:/usr/local/apache2目录下PwJLinux联盟
#make //编译PwJLinux联盟
#make install //安装PwJLinux联盟
#vi /usr/local/apache2/conf/httpd.conf //将里面的ServerName前面的#去掉,后面是:自己的ip:80PwJLinux联盟
#/usr/local/apache2/bin/apachectl start //启动apache服务PwJLinux联盟
如果你想一开机就让apache自动运行的话,那么进行如下操作:PwJLinux联盟
编辑etc/rc.d/rc.localPwJLinux联盟
# vi /etc/rc.d/rc.localPwJLinux联盟
在最后加上一句: /usr/local/apache2/bin/apachectl startPwJLinux联盟
看这里的/usr/local/apache2的安装路径用到了吧,所以大家装的时候一定要记清楚哦。。。。PwJLinux联盟
PwJLinux联盟
jpeg包的安装和设定PwJLinux联盟
#mkdir -p /usr/local/jpeg6PwJLinux联盟
# mkdir -p /usr/local/jpeg6/binPwJLinux联盟
# mkdir -p /usr/local/jpeg6/libPwJLinux联盟
# mkdir -p /usr/local/jpeg6/includePwJLinux联盟
# mkdir -p /usr/local/jpeg6/man/man1PwJLinux联盟
//上面的创建目录PwJLinux联盟
#tar –zxvf jpegsrc.v6b.tar.gz //解压jpegsrc.v6b.tar.gz包PwJLinux联盟
#./configure –prefix=/usr/local/jpeg6/ --enable-staticPwJLinux联盟
#make //编译PwJLinux联盟
#make install //安装PwJLinux联盟
安装libpngPwJLinux联盟
# tar xvzf libpng-1.2.8.tar.gzPwJLinux联盟
# cd libpng-1.2.8PwJLinux联盟
# cp scritp/makefile.gcmmx makefile(本身自带makefile文件,无需configure,copy一下就OK了)PwJLinux联盟
# makePwJLinux联盟
# make installPwJLinux联盟
安装freetypePwJLinux联盟
#tar –zxvf freetype-2.3.5.tar.gzPwJLinux联盟
#cd freetype-2.3.5PwJLinux联盟
#mkdir –p /usr/local/freetypePwJLinux联盟
#./configure –prefix=/usr/local/freetypePwJLinux联盟
#makePwJLinux联盟
#make installPwJLinux联盟
安装zlib(lib png支持包)PwJLinux联盟
#tar –zxvf zlib-1.2.2.tar.gzPwJLinux联盟
#cd zlib-1.2.2.tar.gzPwJLinux联盟
#./configurePwJLinux联盟
#makePwJLinux联盟
#make insatll
安装GD库#PwJLinux联盟
#tar –zxvf gd-2.0.33.tar.gzPwJLinux联盟
#cd gd-2.0.33.tar.gzPwJLinux联盟
#
./configure --prefix=/usr/local/gd2 --with-jpeg=/usr/local/jpeg6/
--with-png=/usr/local/lib/ --with-zlib=/usr/local/lib/
--with-freetype=/usr/local/freetype/PwJLinux联盟
#makePwJLinux联盟
#make installPwJLinux联盟
#cp gd.h /usr/local/lib/PwJLinux联盟
安装xml包PwJLinux联盟
#tar –zxvf libxml2-2.6.19.tar.gzPwJLinux联盟
#cd libxml2-2.2.6.19PwJLinux联盟
#./configure –prefix=/usr/local/libxml2PwJLinux联盟
#makePwJLinux联盟
#make installPwJLinux联盟
安装Curl库PwJLinux联盟
#tar –zxvf curl-7.16.4.tar.gzPwJLinux联盟
#cd curl-7.16.4PwJLinux联盟
#./configure –prefix=/usr/local/curlPwJLinux联盟
#makePwJLinux联盟
#make installPwJLinux联盟
安装phpPwJLinux联盟
#tar –zxvf php-5.2.3.tar.gzPwJLinux联盟
#cd php-5.2.3.tar.gzPwJLinux联盟
#./configure
--prefix=/usr/local/php5 --with-apxs2=/usr/local/apache2/bin/apxs
--with-mysql=/usr/local/mysql/ --with-curl=/usr/local/curl --enable-ftp
--with-libxml-dir=/usr/local/libxml2 --with-gd-dir=/usr/local/gd2
--with-jpeg-dir=/usr/local/jpeg6/ --with-zlib-dir=/usr/local/lib
--with-png=/usr/local/lib/ --with-freetype-dir=/usr/local/freetypePwJLinux联盟
#makePwJLinux联盟
#make installPwJLinux联盟
#cp php.ini-dist /usr/local/lib/php.iniPwJLinux联盟
其
中./configure 后的 --prefix=/usr/local/php
--with-apxs2=/usr/local/apache/bin/apxs --with-mysql=/usr/local/mysql/
--with-libxml-dir=/usr/local/libxml2 是必要的选项 --with-gd=/usr/local/gd2/
--with-jpeg-dir=/usr/local/jpeg6/ --with-png=/usr/local/lib
--with-zlib-dir=/usr/lib --with-freetype-dir=/usr/local/freetype
这是让PHP支持GD库的配置选项 PwJLinux联盟
--with-curl=/usr/local/curl 支持CURL库 --enable-ftp 打开FTP库函数支持 PwJLinux联盟
--enable-soap --with-xsl=/usr/local/libxslt --enable-xslt 让PHP支持SOAP, 上面这些一般用得少, 可以去掉PwJLinux联盟
---收尾工作:PwJLinux联盟
编辑apache的配置文件httpd.confPwJLinux联盟
vi /etc/httpd/httpd.confPwJLinux联盟
找到“#AddType application/x-gzip .gz .tgz”PwJLinux联盟
并在后面加入PwJLinux联盟
AddType application/x-httpd-php .phpPwJLinux联盟
AddType application/x-httpd-php-source .phpsPwJLinux联盟
这两行的目的是让apache识别php。PwJLinux联盟
再找到“DirectoryIndex index.html”PwJLinux联盟
加上 index.php 让它把index.php做为默认页PwJLinux联盟
---测试环境:PwJLinux联盟
在/usr/local/apache/htdocs/下面建立php文件。PwJLinux联盟
# vi /usr/local/apache/htdocs/index.phpPwJLinux联盟
输入:PwJLinux联盟
PwJLinux联盟
phpinfo();PwJLinux联盟
?>PwJLinux联盟
重启apache服务器PwJLinux联盟
# /usr/local/apache/bin/apachectl restartPwJLinux联盟
浏览器中输入:测试一下,激动的话面就出来喽!!!!
收集整理 ,转贴请标明原始链接,如有任何疑问欢迎来本站讨论
另一个参考
其实,安装步骤和PHP4只差一点点而已
如果你机器里原来装有了PHP或者APACHE的RPM或者低版本。请先删除
首先,服务器GCC要有,不然什么都不能做.可以用gcc -v来查看是否安装了GCC,
#gcc -v
Reading specs from /usr/lib/gcc-lib/i386-redhat-linux/3.2.3/specs
Configured
with: ../configure --prefix=/usr --mandir=/usr/share/man
--infodir=/usr/share/info --enable-shared --enable-threads=posix
--disable-checking --with-system-zlib --enable-__cxa_atexit
--host=i386-redhat-linux
Thread model: posix
gcc version 3.2.3 20030502 (Red Hat Linux 3.2.3-34)
有以上类似信息说明已有GCC,
如果你没有,请先拿安装光盘装好它
请下载以下所有的东西:
httpd-2.0.50.tar.gz
MySQL-client-4.0.20-0.i386.rpm
MySQL-server-4.0.20-0.i386.rpm
php-5.0.0.tar.gz
ZendOptimizer-2.5.3-linux-glibc21-i386.tar.gz
gd-2.0.28.tar.gz
libxml2-2.5.11.tar.gz
zlib-1.2.1.tar.gz
jpegsrc.v6b.tar.gz
libpng-1.2.5.tar.gz
xpm-3.4k-2.i386.rpm
gd-devel-1.8.4-11.i386.rpm
可能你的电脑不需要这么多,但最好都下载吧.。
这些我都放在我 FTP里 的soft目录下,如果你点左边的<< FTP里 >>看不了,那可能是密码改了,请看我论坛签名里的下载信息。
不过,
可能你看到这贴子的时候会有以上软件新的版本下载了.看着办吧。
开始装吧>>>>>>>>>>>>>>>>>>>>>>>>>
先安装MYSQL 服务器
#rpm -ivh MySQL-server-4.0.20-0.i386.rpm
接着客户端
#rpm -ivh MySQL-client-4.0.20-0.i386.rpm
安装好后试试能不能用
#mysql
Welcome to the MySQL monitor. Commands end with ; or g.
Your MySQL connection id is 27651 to server version: 4.0.20-standard
Type 'help;' or 'h' for help. Type 'c' to clear the buffer.
说明OK
请自己改mysql的密码
安装GD库基本包
#rpm -ivh gd-devel-1.8.4-11.i386.rpm
安装XPM支持
#rpm -ivhxpm-3.4k-2.i386.rpm
安装libxml2 (记得PHP5只支持libxml2-2.5.10以上版本)
#tar zxvf libxml2-2.5.11.tar.gz
#cd libxml2-2.5.11
#./configure
#make
#make install
开始装GD库支持
-------------------------------------------------------
ZLIB
#tar zxvf zlib-1.2.1.tar.gz
#cd zlib-1.2.1
#./configure
#make
#make install
JPEGSRC
#tar zxvf jpegsrc.v6b.tar.gz
#cd jpegsrc.v6b
#./configure
#make
#make install-lib
#make install
LIBPNG
#tar zxvf libpng-1.2.5.tar.gz
#cd libpng-1.2.5
#cp scripts/makefile.linux Makefile
#./configure
#make
#make install-headers
#make install
最后是GD2.*
gd-2.0.28
#tar zxvf gd-2.0.28.tar.gz
#cd gd-2.0.28
#./configure --with-png=/usr/local --with-jpeg=/usr/local --with-freetype=/usr
#make
#make install
----------------------------------------------
上面一切都很顺利的话,GD就算成功的安装上了. 如果有问题,应该是缺少支持包,总之是少什么就下载什么来安装上。
跟着下来,开始安装APAHCHE2和PHP5
#tar zxvf httpd-2.0.50.tar.gz
#cd httpd-2.0.50
#./configure --prefix=/usr/local/apache2 --enable-module=so
#make
#make install
#tar zxvf php5.0.0.tar.gz
#cd php5.0.0
#./configure
--prefix=/usr/local/php --with-apxs2=/usr/local/apache2/bin/apxs
--with-jpeg-dir=/usr/local --with-png-dir=/usr/local
--with-gd=/usr/local --enable-trace-vars --with-zlib-dir=/usr/local
-with-mysql=/var/lib/mysql
#make
#make install
我是把他们分别安装在/usr/local/apache2 & PHP目录下的
我原来MAKE PHP4.3.8 的时候,遇到
ext/gd/gd.lo(.text+0x63a): In function `zm_deactivate_gd':
/root/software/php-4.3.8/ext/gd/gd.c:385: undefined reference to `gdFreeFontCache'
collect2: ld returned 1 exit status
make: *** [sapi/cli/php] Error 1
是因为GD库的freetype没装,后来我马上去下载它安装.就没错误了
所有的安装工作做好了,接着我们来配置。
复制PHP.INI文件到正确位置
在PHP目录下运行
#cp php.ini-dist /usr/local/php/lib/php.ini
编辑apache配置文件httpd.conf
#vi /usr/local/apache2/conf/httpd.conf
要改的有如下几处:
一般都在
#AddType application/x-tar .tgz
下加一行
#LoadModule php5_module modules/libphp5.so
AddType application/x-httpd-php .php
如果你搜索其它地方没有以下这行
LoadModule php5_module modules/libphp5.so
请把上面的#号去掉
还有找到
DirectoryIndex index.html index.html.var
在后面加 index.php 让它把index.php做为默认页
找到
# don't use Group #-1 on these systems!
把下面的用户名和组改为
User apache
Group apache
(原来好像是nobody)
再找
#ServerName
把#去掉,后面的IP改成你的IP.
找到
DocumentRoot "/usr/local/apache2/htdocs"
把/usr/local/apache2/htdocs改为你存放网页文件的路径
比如我是放在/home/easy目录下,所以我以后上传PHP文件就放在/home/easy目录下,然后用IP访问,就能看到首页了
为了让中文网页没乱码
找到
AddDefaultCharset iso8859-1
把后面的iso8859-1改为gb2312
差不多就这些了,至于apache2其它优化,请看
里的apache配置那一分类.
保存httpd.conf文件.
启动它
# /usr/local/apache2/bin/apachectl start
如果没有出错,写一个测试页放到你网页目录下, 我的就是上面所说的 /home/easy
#vi /home/easy/index.php
phpinfo();
保存.试试在测试器里打IP进去就可以看到PHPINFO页了
用ZendOptimizer-2.5.3加速PHP
#tar zxvf ZendOptimizer-2.5.3-linux-glibc21-i386.tar.gz
#cd ZendOptimizer-2.5.3-linux-glibc21-i386
#./install.sh
一路默认下去应该就好了.
再看看测试页,
找找是不是这样的?
This program makes use of the Zend Scripting Language Engine:
Zend
Engine v1.3.0, Copyright (c) 1998-2004 Zend Technologies with Zend
Extension Manager v1.0.3, Copyright (c) 2003-2004, by Zend Technologies
with Zend Optimizer v2.5.3, Copyright (c) 1998-2004, by Zend
Technologies
好了,全部的安装就完成了。
查看本文来源