Forge Home

memcached

A puppet module for managing one or more memcached instances on Ubuntu and CentOS.

10,124 downloads

9,115 latest version

1.5 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 0.1.2 (latest)
  • 0.1.1
  • 0.1.0
released Jun 25th 2014

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'RPDiep-memcached', '0.1.2'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add RPDiep-memcached
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install RPDiep-memcached --version 0.1.2

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download

Documentation

RPDiep/memcached — version 0.1.2 Jun 25th 2014

puppet-memcached

A puppet module for managing one or more memcached instances on Ubuntu and CentOS.

Description

This module installs and manages one or more memcached instances through defined types.
It has been tested under Ubuntu 12.04 and CentOS 6.4 .
For other Operating Systems, the defined type memcached::instance may not work.
This module also manages the port permissions for memcached in SElinux.

Usage

memcached

Installs the memcached package. Simple install:

class {"memcached": }

Install with non-default settings:

class {"memcached":
  enabled => true,
  port    => 11211,
  listen  => "127.0.0.1",
  size    => 64,
  conn    => 1024,
  user    => "memcached",
}
  • conn : max current connections
  • size : size in megabytes

memcached::instance

Creates an extra memcached instance.
Simple:

memcached::instance { "additional_1":
  port    => 11212,
}

Advanced:

memcached::instance { "additional_1":
  port    => 11212,
  listen  => "127.0.0.1",
  size    => 64,
  conn    => 1024,
  user    => "memcached",
}

Requirements: