Puppet Class: apache::mod::cluster

Defined in:
manifests/mod/cluster.pp

Summary

Installs `mod_cluster`.

Overview

Note:

There is no official package available for mod_cluster, so you must make it available outside of the apache module. Binaries can be found [here](modcluster.io/).

Examples:

class { '::apache::mod::cluster':
  ip                      => '172.17.0.1',
  allowed_network         => '172.17.0.',
  balancer_name           => 'mycluster',
  version                 => '1.3.1'
}

Parameters:

  • allowed_network (Any)

    Balanced members network.

  • balancer_name (Any)

    Name of balancer.

  • ip (Any)

    Specifies the IP address to listen to.

  • version (Any)

    Specifies the mod_cluster version. Version 1.3.0 or greater is required for httpd 2.4.

  • enable_mcpm_receive (Any) (defaults to: true)

    Whether MCPM should be enabled.

  • port (Any) (defaults to: '6666')

    mod_cluster listen port.

  • keep_alive_timeout (Any) (defaults to: 60)

    Specifies how long Apache should wait for a request, in seconds.

  • manager_allowed_network (Any) (defaults to: '127.0.0.1')

    Whether to allow the network to access the mod_cluster_manager.

  • max_keep_alive_requests (Any) (defaults to: 0)

    Maximum number of requests kept alive.

  • server_advertise (Any) (defaults to: true)

    Whether the server should advertise.

  • advertise_frequency (Any) (defaults to: undef)

    Sets the interval between advertise messages in seconds.

See Also:



51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# File 'manifests/mod/cluster.pp', line 51

class apache::mod::cluster (
  $allowed_network,
  $balancer_name,
  $ip,
  $version,
  $enable_mcpm_receive = true,
  $port = '6666',
  $keep_alive_timeout = 60,
  $manager_allowed_network = '127.0.0.1',
  $max_keep_alive_requests = 0,
  $server_advertise = true,
  $advertise_frequency = undef,
) {

  include ::apache

  ::apache::mod { 'proxy': }
  ::apache::mod { 'proxy_ajp': }
  ::apache::mod { 'manager': }
  ::apache::mod { 'proxy_cluster': }
  ::apache::mod { 'advertise': }

  if (versioncmp($version, '1.3.0') >= 0 ) {
    ::apache::mod { 'cluster_slotmem': }
  } else {
    ::apache::mod { 'slotmem': }
  }

  file {'cluster.conf':
    ensure  => file,
    path    => "${::apache::mod_dir}/cluster.conf",
    mode    => $::apache::file_mode,
    content => template('apache/mod/cluster.conf.erb'),
    require => Exec["mkdir ${::apache::mod_dir}"],
    before  => File[$::apache::mod_dir],
    notify  => Class['apache::service'],
  }

}