mac下裝phpredis,從redis到homebrew再到autoconf再到phpredis-master一條龍安裝

來源:互聯網
上載者:User

注意這是在OS X環境下裝的,並不適用於linux系統,請對號入座。不過linux環境會簡單好多。

文中大部分內容都是我東抄抄西抄抄整理出來的,原文會給出出處。

ok,1. 首先你要裝好redis,這個特別簡單,直接去官網上下載,http://redis.io/。我下的是redis-3.0.3. mac下裝這些軟體有個好處,直接雙擊就好,再拷貝的/usr/local下。省去了tar. 前提是要有解壓軟體~

配置我就不細講了,請參看連結:http://www.cnblogs.com/moon521/p/5301895.html。這篇文章講得很細。

2. 然後進入正題。開始裝phpredis了。正如很多網上介紹,我下了個phpredis-3.2.3(注意大家千萬別去下,因為mac下用的不是這個版本-。-囧死了),問題來了,運行phpize的時候報錯: Cannot  find  autoconf. Please check your autoconf installation and the $PHP_AUTOCONF environment variable.

很多網站會推薦一堆安裝包去裝autoconf,千萬別聽他們的。那是在linux環境下才適用。mac的話要裝一個神奇的東西,叫homebrew。這個東西好nb,是os下的套件管理器,可以用它裝各種擴充包。類似於yum吧。

安裝方法:在terminal端直接運行  ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"。注意,如果是root使用者的話它可能會提示“don't run this as root”。這個沒關係,退出root使用者,用普通使用者登入安裝就好了。

3. 裝好homebrew就簡單了,先搜尋一下autoconf: brew search autoconf 

安裝:brew install autoconf

卸載:brew uninstall autoconf  (以後要裝什麼軟體都可以用這個了。)

4.開始裝phpredis。正如上文提到的,不要裝phpredis-3.X.X。因為這是在linux環境下才適用的。請自行下載phpredis-master,這個才是os下的版本。

運行curl -O https://nodeload.github.com/nicolasff/phpredis/zip/master  

tar -zxf master    

cd phpredis-master

/usr/local/php5/bin/phpize

./configure --with-php-config=/usr/bin/php-configmakesudo make install

大功告成。記得在php.ini裡添加擴充:extention=redis.so

重啟Apache

查看擴充安裝的情況:php -m |grep redis

出現redis表示安裝成功。

附:mac下安裝phpredis擴充http://my.oschina.net/Twitter/blog/287544

hombrew官網http://brew.sh/index_zh-cn.html

phpize報錯解決方案http://my.oschina.net/Twitter/blog/287543

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.