toyota 2013-12-8 16:18
在 ubuntu 上安裝 phpRedisAdmin 來管理 redis server
<div><font size="3">phpRedisAdmin 類似於 phpMyAdmin 一樣,不過是針對Redis開發的,實現一個WEB界面的視窗化管理。</font></div><div><font size="3">這個只適合於初學的時候來用一用,線上的話建議不使用,一方面沒必要,另一方面因為Redis中一般都是存儲海量數據,</font></div><div><font size="3">phpRedisAdmin在加載這些數據的時候還會耗費大量的資源,得不償失。</font></div><div><font size="3"><br></font></div><div><font size="3">安裝步驟如下:<br><br>先安裝 php 的 redis 擴充套件<br># pecl install redis<br># echo extension=redis.so > /etc/php5/conf.d/redis.ini<br># service nginx restart<br><br></font><font size="3">再安裝 phpredisadmin</font><br><font size="3"><font size="3">這邊使用 git 的版本安裝 https://github.com/ErikDubbelboer/phpRedisAdmin<br><br></font></font></div><div><font size="3"># cd /usr/share/nginx/www/</font></div><div><font size="3"># git clone https://github.com/ErikDubbelboer/phpRedisAdmin.git<br># cd phpRedisAdmin<br># git clone https://github.com/nrk/predis.git vendor<br><br>這樣就安裝好了...主要的設定檔在 includes/config.sample.inc.php<br>這邊你可以修改 host 的路徑...還有一個最重要的地方...就是當你的 redis server 有設定 security 的時後<br><br>//'auth' => 'redispasswordhere' // Warning: The password is sent in plain-text to the Redis server.<br><br>你要打開這個 auth 填入正確的密碼...才能夠連線~~<br><br><br></font></div>