字體:  

在 ubuntu 上安裝 phpRedisAdmin 來管理 redis server

toyota 發表於: 2013-12-08 16:18 來源: ADJ網路控股集團


phpRedisAdmin 類似於 phpMyAdmin 一樣,不過是針對Redis開發的,實現一個WEB界面的視窗化管理。
這個只適合於初學的時候來用一用,線上的話建議不使用,一方面沒必要,另一方面因為Redis中一般都是存儲海量數據,
phpRedisAdmin在加載這些數據的時候還會耗費大量的資源,得不償失。

安裝步驟如下:

先安裝 php 的 redis 擴充套件
# pecl install redis
# echo extension=redis.so > /etc/php5/conf.d/redis.ini
# service nginx restart

再安裝 phpredisadmin
這邊使用 git 的版本安裝 https://github.com/ErikDubbelboer/phpRedisAdmin

# cd /usr/share/nginx/www/
# git clone https://github.com/ErikDubbelboer/phpRedisAdmin.git
# cd phpRedisAdmin
# git clone https://github.com/nrk/predis.git vendor

這樣就安裝好了...主要的設定檔在 includes/config.sample.inc.php
這邊你可以修改 host 的路徑...還有一個最重要的地方...就是當你的 redis server 有設定 security 的時後

//'auth' => 'redispasswordhere' // Warning: The password is sent in plain-text to the Redis server.

你要打開這個 auth 填入正確的密碼...才能夠連線~~