2.8.4.3. PHPRedisAdmin

Requirements: PHP 5.4+

The PHPRedisAdmin application allows you to work with the Redis database in a web interface, having full access to all data.

To install PHPRedisAdmin, do the following:

  1. Connect to hosting via SSH.
  2. Change to the directory where you want to place the Redis manager using the command:
    cd ~/example.com/subdomain/dir/ 

    Instead example.com/subdomain/dir specify the desired path.

  3. Run the command to install the manager to the current working directory:
    git clone https://github.com//erikdubbelboer/phpRedisAdmin . ; git clone https://github.com/nrk/predis.git vendor
  4. Produce customization connecting to Redis.

To add a Redis server in the manager, do the following:

  1. Go to the directory where PHPRedisAdmin was installed and create a file include/config.inc.php.
  2. In the file, specify the configuration without changes:
    <?php
    $config = array(
      'servers' => array(
        array(
          'name'   => explode("/",__DIR__)[2], 
          'filter' => '*',
          'scheme' => 'unix', 
          'path'   => '/home/' . explode("/",__DIR__)[2] . '/.system/redis.sock', 
          'hide'   => false, 
        ),
      ),
      'seperator' => ':',
      'showEmptyNamespaceAsKey' => false,
      'hideEmptyDBs' => false,
      'cookie_auth' => false,
      'maxkeylen'           => 100,
      'count_elements_page' => 100,
      'keys' => false,
      'scansize' => 1000
    );
Content