apache mysql php
作者 佚名技术
来源 Linux系统
浏览
发布时间 2012-04-03
linux mysql apache php设置 安装平台:centos 4第一步:安装apache 注:当前目录为/tmp, 目录下有httpd-2.2.4.tar.gz, php-5.2.3.tar.gz等二进制源码包 #号代表为root 根权限,#后是输入的一条命令 执行下列命令 解压源码包 # tar -zxf httpd-2.2.4.tar.gz 进入安装目录 # cd httpd-2.2.4 配置apache安装信息 # ./configure --prefix=/usr/local/apache --enable-modules=so --enable-rewrite 执行make安装 # make; make install 用下面命令启动WEB服务器 # /usr/local/apache/bin/apachectl start 查看自己的站点是否正常 第二步: shell> groupadd mysql shell> useradd -g mysql mysql shell> cd /usr/local shell> gunzip < /path/to/mysql-VERSION-OS.tar.gz | tar xvf - shell> ln -s full-path-to-mysql-VERSION-OS mysql shell> cd mysql shell> chown -R mysql . shell> chgrp -R mysql . shell> scripts/mysql_install_db --user=mysql shell> chown -R root . shell> chown -R mysql data shell> bin/mysqld_safe --user=mysql & 具体安装方式查看,INSTALL-BINARY [root@Bleach mysql]# ./bin/mysqladmin -u root password mysql 启动链接!!! 第三步:(php要支持GD库)
装GD库(让PHP支持GIF,PNG,JPEG) 下载 jpeg6,libpng,freetype 并安装模块 wget http://www.ijg.org/files/jpegsrc.v6b.tar.gz wget http://nchc.dl.sourceforge.net/s ... libpng-1.2.8.tar.gz wget http://keihanna.dl.sourceforge.n ... etype-2.1.10.tar.gz wget http://www.boutell.com/gd/http/gd-2.0.33.tar.gz 安装 jpeg6 建立目录 # mkdir /usr/local/jpeg6 # mkdir /usr/local/jpeg6/bin # mkdir /usr/local/jpeg6/lib # mkdir /usr/local/jpeg6/include # mkdir /usr/local/jpeg6/man # mkdir /usr/local/jpeg6/man/man1 # cd /tmp # tar -zxf jpegsrc.v6b.tar.gz # cd jpeg-6b # ./configure --prefix=/usr/local/jpeg6/ --enable-shared --enable-static # make; make install 安装libpng # cd /tmp # tar -zxf libpng-1.2.8.tar.gz # cd libpng-1.2.8 # cp scrīpts/makefile.std makefile # make; make install 安装 freetype # cd /root/soft # tar -zxf freetype-2.1.10.tar.gz # cd freetype-2.1.10 # ./configure --prefix=/usr/local/freetype # make;make install 安装最新的GD库 # cd /tmp # tar -zxf gd-2.0.33.tar.gz # cd gd-2.0.33 # ./configure --prefix=/usr/local/gd2 --with-jpeg=/usr/local/jpeg6/ --with-png --with-zlib --with-freetype=/usr/local/freetype/ # make; make install 安装PHP php5需libxml2的支持, 先下载并安装libxml2 # cd /tmp # wget http://ftp.gnome.org/pub/GNOME/s ... bxml2-2.6.19.tar.gz # tar -zxf libxml2-2.6.19.tar.gz # cd libxml2-2.6.19 # ./configure --prefix=/usr/local/libxml2 # make; make install
安装 libxslt # cd /tmp # wget http://ftp.gnome.org/pub/GNOME/s ... bxslt-1.1.15.tar.gz # tar -zxf libxslt-1.1.15.tar.gz # cd libxslt-1.1.15 # ./configure --prefix=/usr/local/libxslt --with-libxml-prefix=/usr/local/libxml2 # make; make install # tar -zxf php-5.2.3.tar.gz # cd php-5.2.3 # ./configure --prefix=/usr/local/php5 --with-apxs2=/u |
||
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: (三)shell编辑器下一篇: LINUX读、写、执行 操作对应的数字
关于apache mysql php的所有评论