- Overview
- Module Description - What the module does and why it is useful
- Setup - The basics of getting started with db2
- Usage - Configuration options and additional functionality
- Reference - An under-the-hood peek at what the module is doing and how
- Limitations - OS compatibility, etc.
- Development - Guide for contributing to the module
This module installs db2 on Linux.
This module will generate a db2 installer response file, and install db2 on Linux. It has only been tested with DB2 Express v10 on Centos7.
This module expects that the db2 installation source is available to the host. This can be accomplished with any external module for staging binaries.
The param 'installer_source_dir' expects to find the folder ./exp. For example, if "/root" is specified, than this should exist: "/root/exp/db2"
class {'db2':
instance_user_password => 'mypass',
fenced_user_password => 'mypass',
password_salt => 'random phrase',
installer_source_dir => '/root',
}
Please see the individual manifest files for additional parameters.
This has only been tested with:
- DB2 Express v10 on Centos 7.
- DB2 Express v11 on Centos 7.
This module includes a Vagrantfile for easy testing.
Instructions:
- Install Vagrant.
- Install Virtualbox.
- Clone this repo.
- Stage the db2 binaries.
- Run
vagrant up
.
The db2 installer file must be extracted, and db2setup must reside in ./puppet-db2/vagrant/v10/exp/db2setup
.
The folder structure must look like the following:
./puppet-db2/vagrant/
./puppet-db2/vagrant/v10/
./puppet-db2/vagrant/v10/exp/
./puppet-db2/vagrant/v10/exp/db2setup
./puppet-db2/Vagrantfile
To stage the DB2 media, make a folder in the repo root called "vagrant", and ensure that the folder structure looks like: ./puppet-db2/vagrant/v10/exp/db2
.