😀

virtualbox(centos)でphpenv+php-buildインストールメモ(5.3,5.4変更確認まで)

2022/11/28に公開

phpenvとは

PHPのバージョンを簡単に切り替えられる仕組みです。
rbenvと一緒ですね。

rbenvと一緒なのでPHPのビルドは
php-buildというものを使用してビルドしますが
インストールからバージョンの切り替えまでは一緒に通常はやるものなので両方とも説明します。

環境

  • centos6.3(ゲストOS
  • macosx10.8(ホストOS)

事前準備が必要なもの

  • git

参考にしたサイト

※以降は全てroot権限で実行しています

phpenvのインストール

サクッと一発ワンライナーで実行すると
.bashrcにPATHとinit処理書けよ!!って言われるのでその通りにする

cd /root
curl https://raw.github.com/CHH/phpenv/master/bin/phpenv-install.sh | sh


installing phpenv in /root/.phpenv
remote: Counting objects: 1456, done.
remote: Compressing objects: 100% (556/556), done.
remote: Total 1456 (delta 938), reused 1367 (delta 871)
Receiving objects: 100% (1456/1456), 209.95 KiB | 142 KiB/s, done.
Resolving deltas: 100% (938/938), done.
Success.

export PATH="/root/.phpenv/bin:$PATH"
eval "$(phpenv init -)"

Add above line at the end of your ~/.bashrc and restart your shell to use phpenv.

rootの.bashrcに記載する

vim /root/.bashrc


#下記を最後に追加
export PATH="/root/.phpenv/bin:$PATH"
eval "$(phpenv init -)"

その後にsourceコマンドで反映させる

source /root/.bashrc

でコマンド叩いて確認しましょ

phpenv

rbenv 0.4.0-13-ge3f72eb
Usage: rbenv <command> [<args>]

Some useful rbenv commands are:
   commands    List all available rbenv commands
   local       Set or show the local application-specific Ruby version
   global      Set or show the global Ruby version
   shell       Set or show the shell-specific Ruby version
   install     Install a Ruby version using the ruby-build plugin
   uninstall   Uninstall a specific Ruby version
   rehash      Rehash rbenv shims (run this after installing executables)
   version     Show the current Ruby version and its origin
   versions    List all Ruby versions available to rbenv
   which       Display the full path to an executable
   whence      List all Ruby versions that contain the given executable

See `rbenv help <command>' for information on a specific command.
For full documentation, see: https://github.com/sstephenson/rbenv#readme

#こんな感じのコマンドが表示されていればOK

php-buildのインストール

最近の流行りはphpenvのpluginとして使うのがナウなやり方らしいのでそちらの方法にしてみる

mkdir -p /root/.phpenv/plugins
cd /root/.phpenv/plugins
git clone git://github.com/CHH/php-build.git
curl https://raw.github.com/hnw/php-build/plugin-to-chh-phpenv/bin/rbenv-install > php-build/bin/rbenv-install
chmod 755 php-build/bin/rbenv-install

入っているかの確認

phpenv install 
usage: phpenv install VERSION

Available versions:
 5.2.17
 5.3.10
 5.3.11
 5.3.11RC1
 5.3.11RC2
 5.3.12
 5.3.13
 5.3.14
 5.3.15
 5.3.16
 5.3.17
 5.3.18
 5.3.19
 5.3.19RC1
 5.3.2
 5.3.20
 5.3.20RC1
 5.3.21
 5.3.3
 .
 .
 .
#上記のような表示がされればOK

依存モジュールのinstall(centos)

ここで結構ハマった。依存モジュール(centos内)が結構あったので
クリーンな環境だと下記のモジュールのインストールが必要
というかエラーが出た場合は基本「モジュール足らないよバカヤロー!!」が多いので
エラーを見てググって yum install をひたすら繰り返す

#epelのリポジトリがない場合はhttp://qiita.com/items/662e41376efa97251575を参照して追加してください
yum --enablerepo=epel install re2c libmcrypt libmcrypt-devel
yum install libxml2-devel bison bison-devel openssl-devel curl-devel libjpeg-devel libpng-devel libmcrypt-devel readline-devel libtidy-devel libxslt-devel httpd-devel enchant-devel libXpm libXpm-devel freetype-devel t1lib t1lib-devel gmp-devel libc-client-devel libicu-devel oniguruma-devel net-snmp net-snmp-devel bzip2-devel

PHP入れるのにこんなに依存関係あるのね。。。驚き。。。。

PHPをビルド(今回は5.4.11)

全部入りを下記のブログを参照してやった
phpenv + php-build を使って 5.3 と 5.4 を共存させつつ php-fpm を使う
自分はfpm入れてnginxも使用したいと思ったのでこれを参考にした
オプション色々入れないなら依存パッケージがもっと減って上記のyumがもっとやりやすい

またphp-fpmは一回目のインストールした後に他のバージョンでも入れようとすると

You've configured multiple SAPIs to be build. You can build only
one SAPI module and CLI binary at the same time.

と怒られる。
調べたがよくわからず
ココできっとphp-fpmは「複数入れられないんだなきっと」と納得して
諦めてphp-fpmはバージョンが切り替えは諦めました。
ていうかきっと誰かすごい人が作ってくれるでしょう。

前置きが長くなったが戻ってphp-buildの設定へ(php-fpm込)

上記の問題があるので最新版のphp-fpmを持ってくる予定なので
最初に最新版の5.4.11をインストールする

vim /usr/local/share/php-build/definitions/5.4.11

#下記を先頭に追加
configure_option "--with-apxs2=/usr/sbin/apxs --enable-fpm --enable-fileinfo --enable-hash --enable-json --enable-sysvsem --enable-sysvshm --enable-sysvmsg --enable-bcmath --with-bz2 --enable-ctype --with-iconv --enable-ftp --with-gettext --enable-mbstring --with-onig=/usr --with-pcre-regex --with-mysql=mysqlnd --with-mysql-sock=/tmp/mysql.sock --enable-phar --enable-shmop --enable-sockets --enable-simplexml --enable-dom --with-libxml-dir=/usr --enable-tokenizer --with-zlib --with-kerberos=/usr --with-openssl=/usr --enable-soap --enable-zip --with-mhash=yes --without-mm --with-enchant=/usr --with-zlib-dir=/usr --with-gd --enable-gd-native-ttf --with-gmp=/usr --with-jpeg-dir=/usr --with-xpm-dir=/usr/X11R6 --with-png-dir=/usr --with-freetype-dir=/usr --with-imap=/usr --with-imap-ssl --enable-intl --with-t1lib=/usr --with-mcrypt=/usr --with-snmp=/usr"

※mysqlはmysqld_multiなどでmysql.sockを変更していたら適時mysql.sockのパスに変更してください

そして実行

phpenv install 5.4.11


[Info]: Loaded apc Plugin.
[Info]: Loaded pyrus Plugin.
[Info]: Loaded xdebug Plugin.
[Info]: Loaded xhprof Plugin.
[Info]: php.ini-production gets used as php.ini
[Info]: Building 5.4.11 into /root/.phpenv/versions/5.4.11
[Downloading]: http://php.net/distributions/php-5.4.11.tar.bz2
[Preparing]: /var/tmp/php-build/source/5.4.11
[Compiling]: /var/tmp/php-build/source/5.4.11
[Pyrus]: Downloading from http://pear2.php.net/pyrus.phar
[Pyrus]: Installing executable in /root/.phpenv/versions/5.4.11/bin/pyrus
[XDebug]: Downloading http://xdebug.org/files/xdebug-2.2.1.tgz
[XDebug]: Compiling in /var/tmp/php-build/source/xdebug-2.2.1
[XDebug]: Installing XDebug configuration in /root/.phpenv/versions/5.4.11/etc/conf.d/xdebug.ini
[XDebug]: Cleaning up.
[Info]: The Log File is not empty, but the Build did not fail. Maybe just warnings got logged. You can review the log in /tmp/php-build.5.4.11.20130219025032.log
[Success]: Built 5.4.11 successfully.
#入った 

liphp5.soの退避

退避しないと他のバージョン入れた時に上書きしてしまうので移動する

mv /etc/httpd/modules/libphp5.so /root/.phpenv/versions/5.4.11/

PHPをビルド(5.3.21)

先程も説明した通りphp-fpmを入れようとするとエラーになるので今度は
/usr/local/share/php-build/definitions/5.3.21のconfigure_optionのfpmを--disable-fpmに変更する
(php-fpmを入れないようにする)

※mysqlはmysqld_multiなどでmysql.sockを変更していたら適時mysql.sockのパスに変更してください

vim /root/.phpenv/pluginsshare/php-build/definitions/5.4.11

#下記を先頭に追加
configure_option "--with-apxs2=/usr/sbin/apxs --disable-fpm --enable-fileinfo --enable-hash --enable-json --enable-sysvsem --enable-sysvshm --enable-sysvmsg --enable-bcmath --with-bz2 --enable-ctype --with-iconv --enable-ftp --with-gettext --enable-mbstring --with-onig=/usr --with-pcre-regex --with-mysql=mysqlnd --with-mysql-sock=/tmp/mysql.sock --enable-phar --enable-shmop --enable-sockets --enable-simplexml --enable-dom --with-libxml-dir=/usr --enable-tokenizer --with-zlib --with-kerberos=/usr --with-openssl=/usr --enable-soap --enable-zip --with-mhash=yes --without-mm --with-enchant=/usr --with-zlib-dir=/usr --with-gd --enable-gd-native-ttf --with-gmp=/usr --with-jpeg-dir=/usr --with-xpm-dir=/usr/X11R6 --with-png-dir=/usr --with-freetype-dir=/usr --with-imap=/usr --with-imap-ssl --enable-intl --with-t1lib=/usr --with-mcrypt=/usr --with-snmp=/usr"

インストールする

phpenv install 5.3.21


Info]: Loaded apc Plugin.
[Info]: Loaded pyrus Plugin.
[Info]: Loaded xdebug Plugin.
[Info]: Loaded xhprof Plugin.
[Info]: php.ini-production gets used as php.ini
[Info]: Building 5.3.21 into /root/.phpenv/versions/5.3.21
[Downloading]: http://php.net/distributions/php-5.3.21.tar.bz2
[Preparing]: /var/tmp/php-build/source/5.3.21
[Compiling]: /var/tmp/php-build/source/5.3.21
[Pyrus]: Downloading from http://pear2.php.net/pyrus.phar
[Pyrus]: Installing executable in /root/.phpenv/versions/5.3.21/bin/pyrus
[XDebug]: Downloading http://xdebug.org/files/xdebug-2.2.1.tgz
[XDebug]: Compiling in /var/tmp/php-build/source/xdebug-2.2.1
[XDebug]: Installing XDebug configuration in /root/.phpenv/versions/5.3.21/etc/conf.d/xdebug.ini
[XDebug]: Cleaning up.
[Info]: The Log File is not empty, but the Build did not fail. Maybe just warnings got logged. You can review the log in /tmp/php-build.5.3.21.20130219030118.log
[Success]: Built 5.3.21 successfully.
#入った 

liphp5.soの退避

退避しないと他のバージョン入れた時に上書きしてしまうので移動する

mv /etc/httpd/modules/libphp5.so /root/.phpenv/versions/5.3.21/

http.confの設定変更

ここらへんはモダンなPHP開発環境を構築する
phpenv + php-build で 複数のPHPバージョンを管理する
の内容をそのまま持ってきてます

#LoadModule php5_module        /usr/lib/httpd/modules/libphp5.so  ← コメントアウト

でphp用の設定を/etc/httpd/conf.d/php.confに書き出す

 
#
# PHP is an HTML-embedded scripting language which attempts to make it
# easy for developers to write dynamically generated webpages.
#
 
LoadModule php5_module modules/libphp5.so
 
#
# Cause the PHP interpreter to handle files with a .php extension.
#
AddHandler php5-script .php
AddType text/html .php
 
#
# Add index.php to the list of files that will be served as directory
# indexes.
#
DirectoryIndex index.php
 
#
# Uncomment the following line to allow PHP to pretty-print .phps
# files as PHP source code:
#
#AddType application/x-httpd-php-source .phps

PHP(cli)のバージョンが切り替わるか確認

コマンドラインのphpが切り替われるか確認する

#おまじない(クリーンアップみたいなもの??)
phpenv rehash
php -v


rbenv: php: command not found

The `php' command exists in these Ruby versions:
  5.3.21
  5.4.11

#phpを複数入れてるのでどのバージョン使用するか決めてね!!ってエラーなんで

phpenv global 5.4.11
php -v


PHP 5.4.11 (cli) (built: Feb 19 2013 02:55:49) 
Copyright (c) 1997-2013 The PHP Group
Zend Engine v2.4.0, Copyright (c) 1998-2013 Zend Technologies
    with Xdebug v2.2.1, Copyright (c) 2002-2012, by Derick Rethans

#5.4.11になった


phpenv global 5.3.21
php -v


PHP 5.3.21 (cli) (built: Feb 19 2013 03:06:35) 
Copyright (c) 1997-2013 The PHP Group
Zend Engine v2.3.0, Copyright (c) 1998-2013 Zend Technologies
    with Xdebug v2.2.1, Copyright (c) 2002-2012, by Derick Rethans

#5.3.21になった

apache側のモジュールも切り替えられるようにする

garamonさんが作成したphpenv-apache-versionを使用させてもらう

/tmp
git clone https://github.com/garamon/phpenv-apache-version
cd phpenv-apache-version
./install.sh

apacheモジュールが切り替えられるか確認する

作ったスクリプトを叩く

phpenv apache-version 5.4.11
copy /root/.phpenv/versions/5.4.11/libphp5.so to /etc/httpd/modules
Restarting apache...
Stopping httpd:                                            [  OK  ]
Starting httpd:                                            [  OK  ]

#apacheの再起動と退避したlibphp5.soの切り替えを行う

ブラウザで確認してPHPが切り替わっているか確認する

http://localhost/phpinfo.phpとか作って

<?php
phpinfo();

と書いてアクセスしてPHPのバージョンが変わって入ればOK!!

本当はMYSQLとかのオプションの確認とかしたいけどとりあえずここまで
結構エラーとか悩んたんで間違ってたら指摘とかお願いします!!

Discussion