sexta-feira, 28 de março de 2014

OraWorld

 OraWorld é uma equipe comprometida com a Oracle através da criação de artigos em Espanhol, Inglês, Português e Russo; da realização de webinars e realização de cursos Oracle On Demand. Alex Zaballa: Alex possui mais de 14 anos de experiência com tecnologias Oracle, é DBA sênior em Luanda e trabalha para o Ministério das Finanças de Angola. Iniciou sua carreira...

segunda-feira, 24 de março de 2014

Convert a Certificate and Private Key to an Oracle Wallet

How to Convert a Certificate and Private Key to an Oracle Wallet, using ssl2ossl or openssl, for use with Oracle Application Server 10g (Doc ID 184701.1) Passos: openssl pkcs12 -export -in /tmp/zab/www8/www8.crt -inkey /tmp/zab/www8/www8.key -certfile /tmp/zab/www8/t2.pem -out ewallet.p12  Specfically to FMW 11g, if the Wallet opens but you see a "Certificate: Empty", then you are hitting Bug 10178208 USER CERTIFICATE IS NOT VISIBLE IN OWM WITH OPENSSL CREATED WALLETS orapki wallet pkcs12_to_jks -wallet /tmp/zab/www8/ewallet.p12...

sexta-feira, 21 de março de 2014

Beehive - LoginAttempts

beectl list_properties --component _AuthenticationService beectl modify_property --component _AuthenticationService --name LoginAttempts --value \-1 beectl activate_configurat...

How To Extract A Private Key and Certificate From A Wallet in Fusion Middleware 11g (Doc ID 1087516.1)

$MIDDLEWARE_HOME/oracle_common/bin/orapki wallet pkcs12_to_jks -wallet /u01/app/oracle/product/Middleware/asinst_1/config/WebCache/webcache1/keystores/default/cwallet.sso -jksKeyStoreLoc /tmp/zab/ewallet.jks -jksKeyStorepwd Welcome1 $MIDDLEWARE_HOME/oracle_common/bin/orapki wallet create -wallet /tmp/zab $MIDDLEWARE_HOME/oracle_common/bin/orapki wallet jks_to_pkcs12 -wallet /tmp/zab -pwd Welcome1 -keystore /tmp/zab/ewallet.jks -jkspwd Welcome1 openssl pkcs12 -in /tmp/zab/ewallet.p12 -passin pass:Welcome1 -out /tmp/zab/w.txt -no...

CLIENT_IDENTIFIER column of V$SESSION is not filled by RWSERVLET

Encontrei um problema após a migração para o Reports versão 11G. Mesmo com o SSO habilitado, o RWSERVLET não estava colocando o nome do utilizador que estava gerando o relatório na coluna CLIENT_IDENTIFIER da V$SESSION. Segue a solução disponibilizada pela Oracle: 1. Back up $ORACLE_INSTANCE/config/reports/bin/reports.sh2. Modify reports.sh by adding the following at the bottom:REPORTS_ENABLE_DBCLIENTID=YES; export REPORTS_ENABLE_DBCLIENTID3. Restart reports server/WLS_REPO...