PHPのインストール

 

関連ライブラリのインストール


yum install libxml2-devel

yum install libpng-devel

yum install libicu-devel

yum install libmcrypt-devel

yum install libxslt-devel

 

PHPのインストール


wget https://downloads.php.net/~ab/php-7.0.0beta2.tar.xz

tar Jxf php-7.0.0beta2.tar.xz

cd php-7.0.0beta2

./configure –prefix=/usr/local/php-7.0.0beta2 –enable-bcmath –enable-calendar –enable-gd-jis-conv –enable-gd-native-ttf –enable-intl –enable-mbstring –enable-mbregex –enable-pcntl –enable-soap –with-curl –with-freetype-dir –with-gettext –with-gd –with-jpeg-dir –with-libxml-dir –with-mcrypt –with-mhash –with-openssl –with-pcre-dir –with-png-dir –with-readl
ine –with-xsl –with-zlib

※mysql はwarningが出たので外した

※pearもテストでエラーになったので外した

 

make

make test

make install

linux に node.js をインストール

参考:

http://qiita.com/moris/items/4850d4e19392186e34f0

 

yum install gcc

yum install gcc-c++

 

node.js

 

https://nodejs.org/download/

wget https://nodejs.org/dist/v0.12.7/node-v0.12.7.tar.gz
tar xvzf node-v0.12.7.tar.gz
cd node-v0.12.7
./configure –prefix=/usr/local
make
make install