June 14, 2005

PHP5のインストール

p2を使おうと思ったらサーバにPHPが入っていなかったのでインストールしました。

事前にlibxmlとlibxsltを入れておきます。

# wget http://xmlsoft.org/sources/libxml2-2.6.19.tar.gz
# tar zxvf libxml2-2.6.19.tar.gz
# cd libxml2-2.6.19
# ./configure
# make && make install

# cd ..
# wget http://xmlsoft.org/sources/libxslt-1.1.14.tar.gz
# tar zxvf libxslt-1.1.14.tar.gz
# cd libxslt-1.1.14
# ./configure
# make && make install


p2に必要なcurlをいれておく。

# cd /usr/ports/ftp/curl
# make install


適当にconfigure。PHP5にしてみました。

# cd ..
# wget http://jp2.php.net/get/php-5.0.4.tar.gz/from/jp.php.net/mirror
# tar zxvf php-5.0.4.tar.gz
# cd php-5.0.4
# ./configure --with-apxs2=/usr/local/apache2/bin/apxs \
--enable-mbstring \
--enable-mbregex \
--enable-mbstr-enc-trans \
--with-gd \
--enable-gd-native-ttf \
--with-freetype-dir=/usr \
--with-png-dir=/usr \
--with-zlib \
--with-jpeg-dir=/usr \
--enable-ftp \
--with-mysql \
--with-pgsql \
--with-pear \
--enable-gd-jis-conv \
--with-gettext \
--with-curl=/usr/local
(中略)
+--------------------------------------------------------------------+
| License: |
| This software is subject to the PHP License, available in this |
| distribution in the file LICENSE. By continuing this installation |
| process, you are bound by the terms of this license agreement. |
| If you do not agree with the terms of this license, you must abort |
| the installation process at this point. |
+--------------------------------------------------------------------+

Thank you for using PHP.

# make && make install
(中略)
[activating module `php5' in /usr/local/apache2/conf/httpd.conf]
Installing PHP CLI binary: /usr/local/bin/
Installing PHP CLI man page: /usr/local/man/man1/
Installing PEAR environment: /usr/local/lib/php/
[PEAR] Archive_Tar - installed: 1.1
[PEAR] Console_Getopt - installed: 1.2
[PEAR] PEAR - installed: 1.3.5
Wrote PEAR system config file at: /usr/local/etc/pear.conf
You may want to add: /usr/local/lib/php to your php.ini include_path
[PEAR] HTML_Template_IT- installed: 1.1
[PEAR] Net_UserAgent_Detect- installed: 2.0.1
[PEAR] XML_RPC - installed: 1.2.2
Installing build environment: /usr/local/lib/php/build/
Installing header files: /usr/local/include/php/
Installing helper programs: /usr/local/bin/
program: phpize
program: php-config
program: phpextdist


適当にApacheを設定。

LoadModule php5_module   modules/libphp5.so

<IfModule mod_php5.c>
AddType application/x-httpd-php .phtml .php
</IfModule>


再起動、と。

# /usr/local/apache2/bin/apachectl stop
# /usr/local/apache2/bin/apachectl start



最後にNet_UserAgent_Mobileを入れて準備完了。


# pear install Net_UserAgent_Mobile-beta

この記事へのトラックバックURL

http://app.blog.livedoor.jp/cpiblog00035/tb.cgi/25170371
この記事へのトラックバック
「Apache2」をRPMからソースコンパイルに変更 なかなか手が出せなかった部...
「Apache2」をRPMからソースコンパイルに変更【Project MultiBurst】at July 02, 2005 14:57
「Apache2」をRPMからソースコンパイルに変更 なかなか手が出せなかった部分ではあったが、 ようやく意を決してチャレンジ。 もともとサーバーOSは、「Re...
「Apache2」をRPMからソースコンパイルに変更【Project MultiBurst】at March 07, 2006 23:46
「Apache2」をRPMからソースコンパイルに変更 なかなか手が出せなかった部分ではあったが、 ようやく意を決してチャレンジ。 もともとサーバーOSは、「Re...
「Apache2」をRPMからソースコンパイルに変更【Project MultiBurst】at September 01, 2006 10:14