Code Monkey home page Code Monkey logo

puppet-mongodb_mms's Introduction

puppet-mongodb_mms

Install and Manage MongoDB MMS On Premise

See:

  http://mms.mongodb.com/help-hosted/v1.5/tutorial/install-on-prem-quick-start/
  http://mms.mongodb.com/help-hosted/v1.5/tutorial/nav/install-on-prem/

It relies on puppet module puppetlabs/mongodb to install the mongodb database. The mms application and mms mongodb database can be installed on one server. The backup database should be first installed on another server.

Currently the scripts don't support authentication or replica sets for application and backup databases

Minimal Usage:

First setup a backup mongodb on a separate server

class { 'mongodb_mms::backup_db':
  logpath      => '/data/backupdb/mongodb.log',
  dbpath       => '/data/backupdb',
  version      => '2.6.4-1',  
}

Then on the mms server setup the application db, the mms application, backup application, monitoring and backup agents:

class { 'mongodb_mms::application_db':
  logpath      => '/data/mmsdb/mongodb.log',
  dbpath       => '/data/mmsdb',
  version      => '2.6.4-1',  
}

class { 'mongodb_mms::application':
  from_email_addr       => '[email protected]',
  reply_to_email_addr   => '[email protected]',
  admin_from_email_addr => '[email protected]',
  admin_email_addr      => '[email protected]',
  bounce_email_addr     => '[email protected]',
  mail_hostname         => 'mymailhost.com',
  mail_port             => 25,  
  require               => Class['mongodb_mms::application_db'] 
}

class { 'mongodb_mms::backup':
  backup_db_host => 'backupserver',
  require        => Class['mongodb_mms::application']
}  

class { 'mongodb_mms::mms_agent': 
  require => Class['mongodb_mms::backup']
} 

class { 'mongodb_mms::backup_agent':
  mmsApiKey => 'mmsApiKey',
  require   => Class['mongodb_mms::mms_agent']   
} 

Detailed Usage:

TO COME:

puppet-mongodb_mms's People

Contributors

neillturner avatar

Watchers

 avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.