ubuntu 上给PHP安装扩展 Msgpack 和 Yar

本文为原创作品,转载请注明出处!

首先说明Yar是干什么的。

新浪著名的大神级人物鸟哥,开发的一个支持并行的PHP扩展。

源地址 http://www.laruence.com/2012/09/15/2779.html

其特点就是可以高效的封装好供外部访问的接口,用途嘛,,你懂的。

下面开始实况直播,如何才能把大神的yar用上。

一、下载。

恩,没错,在那个文章的底部,鸟哥提供了github的下载地址

但是,这是不够的,因为这个框架需要 一个名为 Msgpack 扩展,同样的,这个也是鸟哥维护的,再次膜拜!!

二、msgpack。

恩。。。。。

貌似下载好发现里面都是写.c .h 的文件,没错,我们需要自己来编译!

1.msgpack

解压压缩包,直接看 README.md 

## Install

### Install from PECL
Msgpack is an PECL extension, thus you can simply install it by:
````
pecl install msgpack
````
### Compile Msgpack from source
````
$/path/to/phpize
$./configure
$make && make install
````

恩,我们发现原来这个可以通过pecl在线安装

打开一个终端,输入

pecl install msgpack

发现没有成功,给的提示是这样的

Failed to download pecl/msgpack within preferred state "stable", latest release is version 0.5.5, stability "beta", use "channel://pecl.php.net/msgpack-0.5.5" to install
install failed

这是由于msgpack还没有稳定版本,按照上面的提示,我们这样输入

pecl install  channel://pecl.php.net/msgpack-0.5.5

还是没有成功,但是提示变了

WARNING: configuration download directory "/build/buildd/php5-5.5.3+dfsg/pear-build-download" is not writeable.  Change download_dir config variable to a writeable dir to avoid this warning
Cannot install, php_dir for channel "pecl.php.net" is not writeable by the current user

看来是我们对文件夹没有写入权限,下面我们切换到root用户后重新执行上面的命令

内容太多,截下最后的一段吧。

Build process completed successfully
Installing '/usr/lib/php5/20121212/msgpack.so'
Installing '/usr/include/php5/ext/msgpack/php_msgpack.h'
install ok: channel://pecl.php.net/msgpack-0.5.5
configuration option "php_ini" is not set to php.ini location
You should add "extension=msgpack.so" to php.ini

下面的操作就是打开配置文件,把扩展写到文件中去

sudo gedit /etc/php5/apache2/php.ini

然后重启apache

sudo /etc/init.d/apache2 restart

查看phpinfo

到此为止,我们就安装完了msgpack的PHP扩展。

三、Yar

解压下载的 yar-master.zip 我们还是先看 README.md 这个文件,其实直接在github上看也是一样的。。。。

安装要求,要求安装一下的php扩展,这就是上一步的重要性!

## Requirement
- PHP 5.2+
- Curl
- Json
- Msgpack (Optional)

安装yar

### Install Yar
Yar is an PECL extension, thus you can simply install it by:
```
pecl install yar
```

看来我们也可以通过pecl命令直接进行安装啊,貌似不是那么顺利

downloading yar-1.2.1.tgz ...
Starting to download yar-1.2.1.tgz (35,174 bytes)
.........done: 35,174 bytes
28 source files, building
running: phpize
Configuring for:
PHP Api Version:         20121113
Zend Module Api No:      20121212
Zend Extension Api No:   220121212
building in /tmp/pear/temp/pear-build-rootoSsn5u/yar-1.2.1
running: /tmp/pear/temp/yar/configure
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for a sed that does not truncate output... /bin/sed
checking for cc... cc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether cc accepts -g... yes
checking for cc option to accept ISO C89... none needed
checking how to run the C preprocessor... cc -E
checking for icc... no
checking for suncc... no
checking whether cc understands -c and -o together... yes
checking for system library directory... lib
checking if compiler supports -R... no
checking if compiler supports -Wl,-rpath,... yes
checking build system type... x86_64-unknown-linux-gnu
checking host system type... x86_64-unknown-linux-gnu
checking target system type... x86_64-unknown-linux-gnu
checking for PHP prefix... /usr
checking for PHP includes... -I/usr/include/php5 -I/usr/include/php5/main -I/usr/include/php5/TSRM -I/usr/include/php5/Zend -I/usr/include/php5/ext -I/usr/include/php5/ext/date/lib
checking for PHP extension directory... /usr/lib/php5/20121212
checking for PHP installed headers prefix... /usr/include/php5
checking if debug is enabled... no
checking if zts is enabled... no
checking for re2c... no
configure: WARNING: You will need re2c 0.13.4 or later if you want to regenerate PHP parsers.
checking for gawk... no
checking for nawk... nawk
checking if nawk is broken... no
checking whether to enable yar support... yes, shared
checking for curl protocol support... yes, shared
checking for msgpack packager support... no
checking for cURL in default path... not found
configure: error: Please reinstall the libcurl distribution - easy.h should be in <curl-dir>/include/curl/
ERROR: `/tmp/pear/temp/yar/configure' failed

在这里我们可以看到是由于我们缺少一个 re2c 0.13.4 或者更新的版本才行,还有,我们的curl模块也不太符合要求,要求重装一下。

下面开始解决问题!

我在这个地址里找到了 re2c http://download.csdn.net/download/morre/5702707 ,在下面的解决过程中跳过了re2c的安装,看来上面的只是警告,没有太大问题。

让我们回到yar的编译

编译需要 phpize,所以我们要安装 phpize,安装phpize需要运行

yum install php-devel

返回的提示是

程序“yum”尚未安装。 您可以使用以下命令安装:
sudo apt-get install yum

恩,所以先安装yum,在安装phpize,注意,安装phpize的时候要以root用户执行!

然后重新安装了curl库,重启apache

sudo apt-get install curl libcurl3 libcurl3-dev php5-curl

sudo /etc/init.d/apache2 restart

下面再次执行pecl的安装

pecl install yar

然后就没有问题啦,经过短暂的等待,显示下面的提示,就安装完成啦!

Build process completed successfully
Installing '/usr/lib/php5/20121212/yar.so'install ok:
channel://pecl.php.net/yar-1.2.1configuration option "php_ini" is not set to php.ini locationYou should add "extension=yar.so" to php.ini

下面的步骤和上次一样,修改配置文件,重启apache。

sudo gedit /etc/php5/apache2/php.ini
sudo /etc/init.d/apache2 restart

重启之后,在phpinfo中并没有看见对应的扩展。

时间: 2025-01-28 03:11:17

ubuntu 上给PHP安装扩展 Msgpack 和 Yar的相关文章

在Ubuntu上源码安装MySQL+安装问题解决+安全优化

0.说明         当然,MySQL的安装方法多种多样,在Ubuntu上,你可以采用apt-get的方式安装,这样的好处是:快速方便.基本上,它会帮你解决所有的函数库依赖问题,正常情况下,只要apt-get执行完成,那么MySQL也就可以使用了.         但我更倾向于使用源码的方式来安装MySQL,原因也很简单:除了有详细的官方文档外,你还可以非常清楚地知道你自己在做什么,这点在以后MySQL运行出现问题时将会有很大的帮助!         但即便是按照官方文档来安装,你也会遇到各

谁能给我个 ubuntu 上的 storm 安装教程

问题描述 谁能给我个ubuntu上的storm安装教程,可以安装上面一步步来的.网上的安装教程都有问题. 解决方案 解决方案二:没有人吗没有人吗没有人吗解决方案三:http://www.51studyit.com/html/notes/20140801/1052.html这个可以不,入过不行应该是缺乏依赖包,多看error日志

在Ubuntu上使用apt-get安装MySQL+安全优化

0.说明         使用apt-get安装的好处是,你不用自己去解决软件之间的依赖问题,基本上apt执行完成,也就把软件安装好了,下面介绍使用apt的方法来安装MySQL,同时也会介绍安装完成后的安全优化.         注意:下面的操作都是以新安装的Ubuntu 15.10来作为演示的. 1.使用apt安装MySQL          安装MySQL数据库:         注意:在安装过程中会几次要求你设置MySQL数据库的管理员用户密码,我们这里先不设置.(出现要求设置的页面时直接

Android内核源码 在Ubuntu上下载,编译,安装

从源代码树下载下来的最新Android源代码,是不包括内核代码的,也就是Android源代码工程默认不包含Linux Kernel代码,而是使用预先编译好的内核,也就是prebuilt/android-arm/kernel/kernel-qemu文件.那么,如何才能DIY自己的内核呢?这篇文章一一道来. 一. 首选,参照前一篇在Android源码 在Ubuntu上下载,编译和安装准备好Android源代码目录. 二. 下载Linux Kernel for Android源代码. 1. 使用GIT

Ubuntu上使用VMWare安装Windows类虚拟操作系统

本指南目标是提供一个关于怎样在linux上使用免费的VMWare Player运行Windows类虚拟操作系统的使用步骤.VMware引入了'VMware Player'并允许公众免费使用.藉于此,Ubuntu在软件库中加入了该程序.可在multiverse中找到'vmware-player'这个包. 安装 要安装vmware-player,执行 sudo apt-get install vmware-player 创建磁盘映像 附件中有一个空的VMWare映像 attachment:Windo

Ubuntu上安装MySQL+问题处理+安全优化_Mysql

0.说明 当然,MySQL的安装方法多种多样,在Ubuntu上,你可以采用apt-get的方式安装,这样的好处是:快速方便.基本上,它会帮你解决所有的函数库依赖问题,正常情况下,只要apt-get执行完成,那么MySQL也就可以使用了. 但我更倾向于使用源码的方式来安装MySQL,原因也很简单:除了有详细的官方文档外,你还可以非常清楚地知道你自己在做什么,这点在以后MySQL运行出现问题时将会有很大的帮助! 但即便是按照官方文档来安装,你也会遇到各种各样的问题,这里,我将呈现一个完整的过程给大家

在Ubuntu上部署开源博客系统Blog_mini

0.说明         本文为开源博客系统Blog_mini的官方部署文档,通过本文的阅读,你将可以在一个全新的CentOS系统上完全部署Blog_mini,从而成功架设属于你的个人博客网站.         这里使用的操作系统为:Ubuntu 15.10,理论上,只要操作系统上安装的Python版本为2.6.x或2.7.x,都可以成功部署Blog_mini. 1.获取Blog_mini源代码         有以下两种方式可以获取Blog_mini的源代码: 通过git的方式 通过Blog_

求解答ubuntu上apache2问题

问题描述 求解答ubuntu上apache2问题 安装apache2之后localhost能打开,能正常显示,但是在/var/www里放入一个test.html之后,地址localhost/test.html打开提示not found,求大神解释,新手小白跪求 解决方案 ubuntu apache2的配置问题 解决方案二: https://segmentfault.com/a/1190000000619342

在 Ubuntu 上安装世界上最先进的开源数据库 PostgreSQL 9.4 和 phpPgAdmin

在 Ubuntu 上安装世界上最先进的开源数据库 PostgreSQL 9.4 和 phpPgAdmin 简介 PostgreSQL 是一款强大的,开源的,对象关系型数据库系统.它支持所有的主流操作系统,包括 Linux.Unix(AIX.BSD.HP-UX,SGI IRIX.Mac OS.Solaris.Tru64) 以及 Windows 操作系统. 下面是 Ubuntu 发起者 Mark Shuttleworth 对 PostgreSQL 的一段评价. PostgreSQL 是一款极赞的数据