ホームページ  >  記事  >  php教程  >  apache2.2.4 mysql5.0.77 php5.2.8 簡易インストール

apache2.2.4 mysql5.0.77 php5.2.8 簡易インストール

WBOY
WBOYオリジナル
2016-06-13 12:24:32897ブラウズ

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=/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=/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=/usr/local/phpsyslib/jpeg-6b --enable-shared 次のパラメータを追加する必要があります。追加しない場合は、sharedライブラリを生成できません

エラーメッセージに従って対応するディレクトリを作成します

cp libjpeg.a /usr/local/lib (gd のインストールが失敗した場合)



zlib をインストール

tar zxvf zlib-1.2.3.tar.gz

cd zlib-1.2.3

./configure --prefix=/ 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 共有 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



install 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=/usr/local/phpsyslib/gd-2.0.35 --with-jpeg=/usr/local/phpsyslib/jpeg-6b --with-png=/ usr/local/ --with-zlib =/usr/local/phpsyslib/zlib-1.2.3 --with-freetype=/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 =/usrmake && make install install libtool

tar zxvf libtool-2.2.tar.gz

cd libtool-2.2

。 /configure --prefix=/usrmake && make installcp /usr/lib/libattr.la /lib/

curl をインストール

tar zxvfcurl-7.17.1.tar.gz

cdcurl-7.17.1

./configure --prefix=/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

上記の 2 つの文は使用できます ( 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=/usr/local/php5.2.8 --with-apxs2=/usr/local/apache2/bin/apxs --with-config-file-path=/etc --with-mysql=/usr /local/mysql --with-mysqli=/usr/local/mysql/bin/mysql_config --with-libxml-dir=/usr/share/doc/libxml2-2.6.16 --with-gd=/usr/local /phpsyslib/gd -2.0.35 --enable-gd-native-ttf --with-jpeg-dir=/usr/local/jpeg-6b --with-png-dir --with-freetype-dir=/usr /local/phpsyslib /freetype-2.3.5 --with-iconv-dir --with-zlib=/usr/local/phpsyslib/zlib-1.2.3 --enable-mbstring --disable-ipv6 --with-openssl -dir=/ usr/local/ssl --with-curl=/usr/local/phpsyslib/curl-7.17.1 --with-mime-magic=/usr/share/file/magic.mime



Mysql の日常的な使用法

mysqldump –uXXX –hXXX -p samp_db >/usr/archives/mysql/samp_db.1999-10-02 バックアップ

mysql データベース名前
ファイル パス ユーザー名とパスワード (存在する場合)

をインポートしてユーザーを作成します:

を username@"%" に付与し、
フラッシュ権限

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。