Skip to content
This repository has been archived by the owner on Sep 20, 2018. It is now read-only.
/ puppet-memcached Public archive

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

License

Notifications You must be signed in to change notification settings

RPDiep/puppet-memcached

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 Debian 6 and 7, 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    => 11211,
}

Advanced:

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

Requirements:

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published