centos6.4 php5.4.13安装扩展yar-rpc笔记
cd /usr/local/src
wget http://pecl.php.net/get/yar-1.2.3.tgz
chmod 777 yar-1.2.3.tgz
tar zxvf yar-1.2.3.tgz
cd yar-1.2.3
/usr/local/php-5.4.13/bin/phpize
./configure --with-php-config=/usr/local/php-5.4.13/bin/php-config
make
make install
安装后显示:
Installing shared extensions: /usr/local/php-5.4.13/lib/php/extensions/no-debug-non-zts-20100525/
把php.ini中添加一行来载入rpc扩展
extension = yar.so
保存php.ini并重启php-fpm服务
killall php-fpm
php-fpm