Amazon books

Thursday, November 29, 2012

Some ILOM commands

--List hard disks
show -l all /SYS type=='Hard Disk'

--Show all temperatures
show -level all -output table /SYS type==Temperature value

--Show network configuration
show /SP/network/

--Start server
start /SYS

--Stop Server
stop [-force] /SYS

--Turn on LED
set /SYS/LOCATE value=Fast_Blink

--Turn off LED
set /SYS/LOCATE value=Off

--Show System information
show /SYS

Thursday, November 22, 2012

Erro ORA-12528 connecting to AUXILIARY Instance - RMAN Duplicate Database

If your database is in nomount, listener will show status as BLOCKED and to connect to this NOMOUNT database from a remote server you need to add (UR=A) in remote tnsnames.ora file as on example below:


DBNEW =
  (DESCRIPTION =
    (ADDRESS = (COMMUNITY = SAP.WORLD)(PROTOCOL = TCP)(HOST = hostname)(PORT = 1521)(QUEUESIZE = 90))
    (CONNECT_DATA =
      (SERVER = DEDICATED)
      (SERVICE_NAME = DBNEW.WORLD) (UR=A)
    )
  )