How to Configure WordPress with Redis (From the Command Line)

To enable Redis, you’ll have to have Redis installed on your site. You can request this from Servebolt support. There are multiple plugins available to enable Redis for WordPress. This example uses the plugin Redis Cache which has 60K installs and is actively maintained.

Time needed: 5 minutes

After you have received confirmation from support that Redis is enabled for your site, you can enable it by following this recipe.

  1. Add the configuration to wp-config.php

    Add configuration using wp-cli from the command line:
    $ wp config set WP_REDIS_PATH --raw "__DIR__ . '/../redis.sock'"
    $ wp config set WP_REDIS_SCHEME "unix"


    alternatively, you can do this by editing wp-config.php and adding the following defines:
    define('WP_REDIS_PATH', __DIR__ . '/../redis.sock');
    define('WP_REDIS_SCHEME', 'unix');


    Please note that if you are running WordPress out of some other directory or subfolder, you’ll have make the path to the socket relative to your applications directory.

  2. Install the Redis Cache plugin

    $ wp plugin install redis-cache --activate

  3. Enable Redis in the WordPress plugin

    In your WordPress administrator panel: wp-admin –> plugins, you should see the Redis Object Cache plugin. Click the settings of that plugin and enable Redis Object Cache.
    Redis-object-cache-plugin

  4. Verify that it is working

    You can start the Redis monitor from the command line by running the following command
    $ redis-cli -s ~/redis.sock monitor

    After this, click around on your site a few times. You’ll see an OK first and then massive amounts of text scrolling by. This is the data stored and pulled from the Redis cache.


And as always, should you have any additional questions please don’t hesitate to contact our support chat at servebolt.com!