Redis 入門 - 0(圖形化管理工具)

Chinkiver發表於2018-02-19

介紹 Redis 圖形化管理工具 phpRedisAdmin 的安裝和使用

需要有一個 Nginx/Apache + PHP 環境,例如:Valet 或 Homestead 構建的 PHP 開發環境。

訪問 Github 專案:GitHub - erikdubbelboer/phpRedisAdmin: Simple web interface to manage Redis databases.

進入你的 Valet 目錄或 Homestead 的 web 專案目錄(Homestead 需配置 Homestead.yaml 檔案),執行:

git clone https://github.com/ErikDubbelboer/phpRedisAdmin.git
cd phpRedisAdmin
git clone https://github.com/nrk/predis.git vendor

我個人偏好,Valet 和 Homestead 共存。我會把驗證性的或工具類的、需要常更新的 PHP 應用使用 Valet,而把專案性的,需要多人合作的使用 Homestead。

預設配置

預設會訪問本地 127.0.0.16379 的 Redis 服務。(我把 Valet 的 domain 設定為了 localhost)

file

訪問 Redis 伺服器

進入 includes 下,重新命名 mv config.sample.inc.php config.inc.php,並修改以下引數:

$config = array(
  'servers' => array(
    array(
      'name'   => 'vBox Redis Server', // 起個名字,我的 Redis 服務為一個虛擬機器
      'host'   => '10.211.55.3',    // 虛擬機器 IP
      'port'   => 6379, // 虛擬機器 Redis 服務埠
      'filter' => '*',
      'scheme' => 'tcp', // Optional. Connection scheme. 'tcp' - for TCP connection, 'unix' - for connection by unix domain socket
      'path'   => '', // 不要忘記這裡點 ','
      'auth' => 'redis' // Redis 密碼
    ),

...

OK,再次訪問 http://phpredisadmin.localhost 就變成了訪問虛擬 Redis伺服器了。

file

相關文章