Skip to content

Commit

Permalink
Initial Version
Browse files Browse the repository at this point in the history
  • Loading branch information
habib-rangoonwala committed May 30, 2017
1 parent eff748e commit 4e5151b
Show file tree
Hide file tree
Showing 51 changed files with 6,259 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
# Oracle EBS Monitoring
The scripts in this repo helps do a basic EBS (Oracle EBusiness Suite) monitoring
The script supports:
Oracle EBusiness Suite: 11.5.10x, 12.1.3
Database: 10g, 11g
15 changes: 15 additions & 0 deletions auth/howto.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# how to encrypt the password
# ensure cryptkey is updated in default.config.ini or instance specific config.ini

# USAGE
./crypt [cryptkey] < [plaintextpassword.txt] > [output.filename]

# Encrypt Example 1
./crypt supersecret < plaintextpassword.txt > SYSTEM.credential


# Decrypt Example 1
./crypt supersecret < SYSTEM.credential


# WARNING: this is very basic way of encrypting the file, you should use standard encryption method or use password vaults
21 changes: 21 additions & 0 deletions bin/HSR.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
###############################################################
# Author: Habib Rangoonwala
# Creation Date: 27-May-2007
# Updation Date: 02-Aug-2007
# Updation Date: 20-Feb-2009
# Updation Date: 05-Feb-2010 [Alias for Linux]
# Updation Date: 09-Aug-2010 [Alias for crypt in Linux]
###############################################################

# find out the current working director [CWD]
H_SCRIPT_TOP=`dirname $0`

# Create Alias for echo if its a Linux environment
if [ `uname` = 'Linux' ]; then
alias echo='echo -e '
alias crypt="$H_SCRIPT_TOP/crypt "
fi

# load the library
. $H_SCRIPT_TOP/HSR.lib

Loading

0 comments on commit 4e5151b

Please sign in to comment.