-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
eff748e
commit 4e5151b
Showing
51 changed files
with
6,259 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
Oops, something went wrong.