quarta-feira, 30 de janeiro de 2013

Adding an Index to an Existing Attribute by Using Oracle Directory Services Manager

To add an index to an existing attribute:

  1. Invoke Oracle Directory Services Manager and connect to the Oracle Internet Directory server as described in "Invoking Oracle Directory Services Manager".
  2. From the task selection bar, select Schema.
  3. Select an attribute that is not currently indexed that you want to add the index to.
  4. Click the The attribute will be cataloged/decataloged icon. When the Confirm Dialog appears, click Confirm.
  5. The Indexed box indicates that the attribute is indexed.

STARTUP and Shutdown Portal 11g


create boot.properties files:
$FORMSREPORTSDOMAIN/servers/AdminServer/security/boot.properties
$FORMSREPORTSDOMAIN/servers/WLS_FORMS/security/boot.properties
$FORMSREPORTSDOMAIN/servers/WLS_REPORTS/security/boot.properties
$FORMSREPORTSDOMAIN/servers/WLS_PORTAL/security/boot.properties
---------------------------------------------------------------------------------------------------


Start:

#!/bin/sh


export MIDDLEWARE_HOME=/u01/app/oracle/product/Middleware
export FORMSREPORTSINSTANCE=/u01/app/oracle/product/Middleware/as_portal
export FORMSREPORTSDOMAIN=$MIDDLEWARE_HOME/user_projects/domains/PortalDomain
export WEBLOGICINSTANCE=$MIDDLEWARE_HOME/asinst_1

echo "Starting AdminServer"
nohup $FORMSREPORTSDOMAIN/startWebLogic.sh >/dev/null 2>/dev/null &

echo "Starting WLS_PORTAL"
nohup $FORMSREPORTSDOMAIN/bin/startManagedWebLogic.sh WLS_PORTAL  >/dev/null 2>/dev/null &

echo "Starting WLS_FORMS"
nohup $FORMSREPORTSDOMAIN/bin/startManagedWebLogic.sh WLS_FORMS  >/dev/null 2>/dev/null &

echo "Starting WLS_REPORTS"
nohup $FORMSREPORTSDOMAIN/bin/startManagedWebLogic.sh WLS_REPORTS  >/dev/null 2>/dev/null &

echo "Starting OPMN managed components"
$WEBLOGICINSTANCE/bin/opmnctl startall


---------------------------------------------------------------------------------------------------

Stop:

export MIDDLEWARE_HOME=/u01/app/oracle/product/Middleware
export FORMSREPORTSINSTANCE=/u01/app/oracle/product/Middleware/as_portal
export FORMSREPORTSDOMAIN=$MIDDLEWARE_HOME/user_projects/domains/PortalDomain
export WEBLOGICINSTANCE=$MIDDLEWARE_HOME/asinst_1

$WEBLOGICINSTANCE/bin/opmnctl stopall

nohup $FORMSREPORTSDOMAIN/bin/stopManagedWebLogic.sh WLS_PORTAL >/dev/null 2>/dev/null &

nohup $FORMSREPORTSDOMAIN/bin/stopManagedWebLogic.sh WLS_FORMS  >/dev/null 2>/dev/null &

nohup $FORMSREPORTSDOMAIN/bin/stopManagedWebLogic.sh WLS_REPORTS  >/dev/null 2>/dev/null &

nohup $FORMSREPORTSDOMAIN/bin/stopWebLogic.sh >/dev/null 2>/dev/null &

oracle.as.config.impl.SimpleProvisionException

ID:1218563.1

Unpublished Bug 9287845  PS2:CLASSIC:REPORTS SERVER COMPONENT CREATIONS FAILS DURING APACHE PREFLIGHT

Solution
1. Update/correct name resolution on the network such that the server's host name and IP address are unique.

terça-feira, 29 de janeiro de 2013

Failed to assign port 8090: Address family not supported by protocol

ID 1113163.1

1. Backup the $MW_HOME//config/WebCache/webcache1/webcache.xml file.

2. Add the IPV6 ENABLED="NO" tag below the MULTIPORT 

sexta-feira, 25 de janeiro de 2013

How to clean up after a failed 11gr2 CRS install

http://gjilevski.com/2010/08/12/how-to-clean-up-after-a-failed-11g-crs-install-what-is-new-in-11g-r2-2/

PRVF-5637 - OEL 6.3


ID 1480242.1

On Redhat Linux 6 / Oracle Linux 6 (confirmed from 6.3), nslookup has return code "1" after nslookup failure instead of "0":

Oracle Linux 6:
nslookup unknown-not-reachable-node
Server:         10.35.249.52
Address:        10.35.249.52#53** server can't find unknown-not-reachable-node: NXDOMAIN
echo $?
1
Oracle Linux 5:
nslookup unknown-not-reachable-node
Server:         10.35.249.52
Address:        10.35.249.52#53** server can't find unknown-not-reachable-node: NXDOMAIN
echo $? 0

How To Setup ASM & ASMLIB On Native Linux Multipath Mapper disks?

ID 602952.1

update the /etc/sysconfig/oracleasm

ORACLEASM_SCANORDER="dm"
or
ORACLEASM_SCANORDER="mpath dm"