Skip to content

Commit

Permalink
Oracle 12c installer launching but invalid silent installer response
Browse files Browse the repository at this point in the history
file
  • Loading branch information
lastnitescurry committed Sep 8, 2018
1 parent 524a92f commit 251749c
Show file tree
Hide file tree
Showing 8 changed files with 606 additions and 3 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ Hopefully my contribution will be some Documentum specfic install exampls
- https://www.vagrantup.com/docs/provisioning/ansible_local.html
- https://www.vagrantup.com/docs/provisioning/ansible.html
- https://www.vagrantup.com/docs/provisioning/ansible_intro.html
- https://docs.ansible.com/ansible/latest/user_guide/playbooks_variables.html
- https://everythingshouldbevirtual.com/automation/ansible-using-set_facts-module/

#### Ben's IT Lessons - Ansible - A Beginner's Tutorial
- https://www.youtube.com/watch?v=icR-df2Olm8&t=482s
Expand All @@ -26,8 +28,10 @@ Hopefully my contribution will be some Documentum specfic install exampls
- https://github.com/scottslowe/learning-tools/blob/master/vagrant/complex-yaml/Vagrantfile
- https://github.com/scottslowe/learning-tools/blob/master/vagrant/complex-yaml/machines.yml

### LINUX file system... follow well proven standards
### LINUX
file system... follow well proven standards
- https://en.wikipedia.org/wiki/Filesystem_Hierarchy_Standard
- https://linoxide.com/how-tos/change-linux-shell-prompt-with-different-colors/

### Oracle
#### Oracle XE
Expand All @@ -43,3 +47,5 @@ Hopefully my contribution will be some Documentum specfic install exampls

### Ruby
- https://alvinalexander.com/blog/post/ruby/how-write-text-to-file-ruby-example

##
1 change: 1 addition & 0 deletions tutorial/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/playbook.retry
8 changes: 7 additions & 1 deletion tutorial/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,10 @@ To get started following: Ansible - A Beginner's Tutorial

##### Run
ansible-playbook playbook.yml


### Oracle 12c
##### Manual to get correct parameters
cd /tmp/database/
/tmp/database/runInstaller -silent -responseFile /tmp/db_install.rsp

rm -rf /tmp/OraInstall*
49 changes: 49 additions & 0 deletions tutorial/man.sysctl.conf.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
SYSCTL.CONF(5) File Formats SYSCTL.CONF(5)



NAME
sysctl.conf - sysctl preload/configuration file

DESCRIPTION
sysctl.conf is a simple file containing sysctl values to be read in and set by sysctl. The syntax is simply as follows:

# comment
; comment

token = value

Note that blank lines are ignored, and whitespace before and after a token or value is ignored, although a value can contain whitespace within. Lines which begin with a # or ; are considered comments and ignored.

NOTES
As the /etc/sysctl.conf file is used to override default kernel parameter values, only a small number of parameters is predefined in the file. Use /sbin/sysctl -a or follow sysctl(8) to list all possible parameters. The
description of individual parameters can be found in the kernel documentation.

EXAMPLE
# sysctl.conf sample
#
kernel.domainname = example.com
; this one has a space which will be written to the sysctl!
kernel.modprobe = /sbin/mod probe

FILES
/run/sysctl.d/*.conf
/etc/sysctl.d/*.conf
/usr/local/lib/sysctl.d/*.conf
/usr/lib/sysctl.d/*.conf
/lib/sysctl.d/*.conf
/etc/sysctl.conf
The paths where sysctl preload files usually exist. See also sysctl option --system.

SEE ALSO
sysctl(8)

AUTHOR
George Staikos ⟨[email protected]

REPORTING BUGS
Please send bug reports to ⟨[email protected]



procps-ng January 2012 SYSCTL.CONF(5)
6 changes: 5 additions & 1 deletion tutorial/roles/environment/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,14 @@
oracle_version: 12.1.0.2
oracle_sid: fgdb
oracle_unqname: fgdb
oracle_software_unpack_dir: "/tmp/oracle"
oracle_media1: "/media/software/Oracle/Database/linuxamd64_12102_database_1of2.zip"
oracle_media2: "/media/software/Oracle/Database/linuxamd64_12102_database_2of2.zip"

- name: Define Oracle 12c home
set_fact:
oracle_home: "{{ oracle_base }}/product/{{ oracle_version }}/{{ oracle_unqname }}"
oracle_home: "{{ oracle_base }}/product/{{ oracle_version }}/{{ oracle_unqname }}"
oracle_inventory: "{{ oracle_base }}/oraInventory"
cacheable: true

- name: Report hostname variables
Expand Down
Loading

0 comments on commit 251749c

Please sign in to comment.