加入收藏 | 设为首页 | 会员中心 | 我要投稿 焦作站长网 (https://www.0391zz.com/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > PHP教程 > 正文

apache2.2.4+mysql5.0.77+php5.2.8安装精简

发布时间:2020-09-15 19:27:33 所属栏目:PHP教程 来源:互联网
导读:linux下apache php环境的配置方法。
1.安装Apache

将httpd-2.2.4.tar.gz拷贝至/usr/local/src目录中

tar -zxvf httpd-2.2.4.tar.gz

cd httpd-2.2.4

./configure --prefix=http://www.jb51.net/usr/local/apache2 --enable-so --enable-vhost-alias --enable-rewrite --enable-deflate --enable-mods-shared=all --with-mpm=worker

make && make install



2.安装php



安装freetype-2.3.5.tar.gz

tar zxvf freetype-2.3.5.tar.gz

cd freetype-2.3.5

./configure --prefix=http://www.jb51.net/usr/local/phpsyslib/freetype-2.3.5

make && make install

mkdir /usr/local/phpsyslib/freetype-2.3.5/include/freetype2/freetype/internal(如果报错需要)



安装jpeg

tar zxvf jpegsrc.v6b.tar.gz

cd jpeg-6b

./configure --prefix=http://www.jb51.net/usr/local/phpsyslib/jpeg-6b --enable-shared 必须加后面这个参数,不然不能生成那个共享库

根据报错信息自己创建相应目录

cp libjpeg.a /usr/local/lib(如果安装gd不成功的话)



安装zlib

tar zxvf zlib-1.2.3.tar.gz

cd zlib-1.2.3

./configure --prefix=http://www.jb51.net/usr/local/phpsyslib/zlib-1.2.3



安装openssl-0.9.8e

tar zxvf openssl-0.9.8e.tar.gz

cd openssl-0.9.8e

./config shared zlib

make

make test

make install

mv /usr/bin/openssl /usr/bin/openssl.OFF

mv /usr/include/openssl /usr/include/openssl.OFF

ln -s /usr/local/ssl/bin/openssl /usr/bin/openssl

ln -s /usr/local/ssl/include/openssl /usr/include/openssl

配置库文件搜索路径

#echo "/usr/local/ssl/lib" >> /etc/ld.so.conf

#ldconfig -v



安装libpng

tar zxvf libpng-1.2.23.tar.gz

cd libpng-1.2.23

cp scripts/makefile.linux makefile



安装GD库(如果失败先安装libtool和gettext)



tar zxvf gd-2.0.35.tar.gz

cd gd-2.0.35

./configure --prefix=http://www.jb51.net/usr/local/phpsyslib/gd-2.0.35 --with-jpeg=http://www.jb51.net/usr/local/phpsyslib/jpeg-6b --with-png=http://www.jb51.net/usr/local/ --with-zlib=http://www.jb51.net/usr/local/phpsyslib/zlib-1.2.3 --with-freetype=http://www.jb51.net/usr/local/phpsyslib/freetype-2.3.5/

make && make install



安装gettext(如果失败先安装 libtool)

tar zxvf gettext-0.17.tar.gz

cd gettext-0.17

./configure --prefix=http://www.jb51.net/usrmake && make install 安装libtool

tar zxvf libtool-2.2.tar.gz

cd libtool-2.2

./configure --prefix=http://www.jb51.net/usrmake && make installcp /usr/lib/libattr.la /lib/

安装curl

tar zxvf curl-7.17.1.tar.gz

cd curl-7.17.1

./configure --prefix=http://www.jb51.net/usr/local/phpsyslib/curl-7.17.1

make && make install



3.安装mysql



# tar zxvf mysql-5.0.77-linux-i686-icc-glibc23.tar.gz

cp mysql-5.0.77-linux-i686-icc-glibc23 /usr/local/mysql

cp /usr/local/mysql/support-files/mysql.server /etc/rc.d/init.d/mysql ---mysql自启动

cp /usr/local/mysql/support-files/my-medium.cnf /etc/my.cnf

groupadd mysql

useradd -g mysql mysql



chown -R root /usr/local/mysql

chgrp -R mysql /usr/local/mysql

上面两句可用(chown -R root:mysql /usr/local/mysql)

chown -R mysql /usr/local/mysql/data

/usr/local/mysql/scripts/mysql_install_db --user=mysql&

/usr/local/mysql/bin/safe_mysqld --user=mysql&





安装php

./configure --prefix=http://www.jb51.net/usr/local/php5.2.8 --with-apxs2=http://www.jb51.net/usr/local/apache2/bin/apxs --with-config-file-path=http://www.jb51.net/etc --with-mysql=http://www.jb51.net/usr/local/mysql --with-mysqli=http://www.jb51.net/usr/local/mysql/bin/mysql_config --with-libxml-dir=http://www.jb51.net/usr/share/doc/libxml2-2.6.16 --with-gd=http://www.jb51.net/usr/local/phpsyslib/gd-2.0.35 --enable-gd-native-ttf --with-jpeg-dir=http://www.jb51.net/usr/local/jpeg-6b --with-png-dir --with-freetype-dir=http://www.jb51.net/usr/local/phpsyslib/freetype-2.3.5 --with-iconv-dir --with-zlib=http://www.jb51.net/usr/local/phpsyslib/zlib-1.2.3 --enable-mbstring --disable-ipv6 --with-openssl-dir=http://www.jb51.net/usr/local/ssl --with-curl=http://www.jb51.net/usr/local/phpsyslib/curl-7.17.1 --with-mime-magic=http://www.jb51.net/usr/share/file/magic.mime



Mysql日常用法

mysqldump –uXXX –hXXX -p samp_db >/usr/archives/mysql/samp_db.1999-10-02 备份

mysql 数据库名 <文件路径 用户名和密码(如果有) 导入

建立用户:

grant all on redflag.* to 用户名@"%" identified by "密码";

flush privileges;

(编辑:焦作站长网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    热点阅读