Forge Home

oracle

Module for installing Oracle

11,918 downloads

9,012 latest version

2.8 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

  • 1.2.0 (latest)
  • 0.0.2
  • 0.0.1
released Nov 9th 2015
This version is compatible with:

Start using this module

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

Add this module to your Puppetfile:

mod 'continuent-oracle', '1.2.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add continuent-oracle
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install continuent-oracle --version 1.2.0

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

continuent/oracle — version 1.2.0 Nov 9th 2015

continuent-oracle

A puppet module to configure Oracle that is compatible with Tungsten. This module pulls heavily from the https://github.com/agileinsider/oracle-in-a-box project.

This module will install either Oracle 11g or Oracle 12c. It requires the following packages from Oracle Technet to work. These must be in the location specfied by $installFiles

if ($oracle::oracleVersion == '11')
{
  $package1='linux.x64_11gR2_database_1of2.zip'
  $package2='linux.x64_11gR2_database_2of2.zip'
}
if ($oracle::oracleVersion == '12')
{
  $package1='linuxamd64_12c_database_1of2.zip'
  $package2='linuxamd64_12c_database_2of2.zip'
}

Logging into Oracle

$> sudo su - oracle
$> sqlplus / as sysdba