วันพุธที่ 25 มิถุนายน พ.ศ. 2557

R12.2.x : How to find password weblogic if forgot.

R12.2.x : How to find password weblogic if forgot.
Step by Step
----------------------------------------------------------------------------------------
1. Go to $FMW_HOME/user_projects/domains/EBS_domain_<inst>/bin
2. Run environment follow this : . setDomainEnv.sh
3. Go to $FMW_HOME/user_projects/domains/EBS_domain_<inst>/servers/ASdminServer/security
4. more file boot.properties
5.  Create file name "decryptPassword.py" follow detail :
import os
import weblogic.security.internal.SerializedSystemIni
import weblogic.security.internal.encryption.ClearOrEncryptedService

def decrypt(domainHomeName, encryptedPwd):
    domainHomeAbsolutePath = os.path.abspath(domainHomeName)
    encryptionService = weblogic.security.internal.SerializedSystemIni.getEncryptionService(domainHomeAbsolutePath)
    ces = weblogic.security.internal.encryption.ClearOrEncryptedService(encryptionService)
    clear = ces.decrypt(encryptedPwd)
    print "RESULT:" + clear

try:
    if len(sys.argv) == 3:
        decrypt(sys.argv[1], sys.argv[2])
    else:
        print "INVALID ARGUMENTS"
        print " Usage: java weblogic.WLST decryptPassword.py <DOMAIN_HOME> <ENCRYPTED_PASSWORD>"
        print " Example:"
        print "    java weblogic.WLST decryptPassword.py D:/Oracle/Middleware/user_projects/domains/base_domain {AES}819R5h3JUS9fAcPmF58p9Wb3syTJxFl0t8NInD/ykkE="
except:
    print "Unexpected error: ", sys.exc_info()[0]
    dumpStack()
    raise

6. copy file "decryptPassword.py" to $FMW_HOME/user_projects/domains/EBS_domain_<inst>/servers/AdminServer/security (on run base)
7. run this utility : java weblogic.WLST decryptPassword.py 
$FMW_HOME/user_projects/domains/EBS_domain_<inst> {AES}xxxxxxxx (from file boot.properties)
** command usege : java weblogic.WLST decryptPassword.py $FWM_BASE <password from boot.properties) **

result :



********************** Thank you and welcome comment *********************

วันจันทร์ที่ 17 มีนาคม พ.ศ. 2557

วันเสาร์ที่ 15 มีนาคม พ.ศ. 2557

Install Oracle R12.1.1 on Oracle Linux 5.5 (64bit)

Step 1. Check Kernel Version
Step 2. Install Required Packages
Step 3. Software Requirements
Step 4. Other Requirements
Step 5. Add user (Applicaion , Oracle Database)
Step 6. Build Stage R12.1.1
Step 7. Install R12.1.1


wait for update.....


comming soon ...
-Upgrade R12.1.1 to R12.1.3
-Install R12.2.2 on Oracle linux 6

วันพฤหัสบดีที่ 13 มีนาคม พ.ศ. 2557

How to open Oracle Ebus R12 on IE 11

Step 1 : Go to Tools > Compatibility View settings

Step 2 : Add domain (ex. demo.com , ebs.test.net) in "Add this website:" and click "Add" then "Close"

Step 3 : Disable XSS filter in Internet Options > Security (click Internet > Custom level..) and find "Enable XSS filter"

Step 4 : Test your Ebus R12


........Thank you........

วันพฤหัสบดีที่ 13 กุมภาพันธ์ พ.ศ. 2557