Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Oracle intelligent agent setup problems on unix
Hi Jean-Francois,
comments embedded
hth,
Sybrand Bakker, Oracle DBA
Jean-François VINCENT wrote in message <372EFFED.A796FA0F_at_platinum.com>...
>Hi,
>
>I failed to setup my oracle intelligent agent in oracle 7.3.4 for
>solaris
>does any one can advise me the best way to do it.
>
>Here are my snmp_ro.ora, snmp_rw.ora and listener.ora
>
>(oracle_at_tigana)cat snmp_ro.ora
>snmp.visibleservices = (LISTENER)
>ifile = /soft/oracle/network/admin/snmp_rw.ora
>
>(oracle_at_tigana)cat snmp_rw.ora
>#dbsnmp.address=(ADDRESS=(PROTOCOL=tcp)(HOST=tigana)(PORT=161))
>dbsnmp.spawnaddress=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.113.58)(PORT=161))
>
The port numbers should be 1748 and 1751 respectively. These are the officially registered ones. I don't know why they didn't use the snmp port number.
>#nmi.trace_level = 0
>#nmi.trace_mask = (106)
>#nmi.register_with_names=false
># copyright (c) 1994 by the Oracle Corporation
>#
># $Header: /netrcs/RCS/oracle/network/nm/nmi/RCS/snmp.ora.sample,v 1.5
>1996/04/01 22:34:05 bpurvy Exp $
>#
>snmp.visibleservices = (tigana, listener)
>snmp.index.tigana = 1
>snmp.index.LISTENER = 1
>snmp.contact.tigana = contact_info
This looks strange, and I regrettably don't know what it should be
>snmp.SID.tigana = server_id
>snmp.configfile.LISTENER = /soft/oracle/network/admin/listener.ora
>
># the agent normally executes namesctl to register itself with Oracle
># Names. This doesn't cause any problems even it fails, but if you do
># not have Names installed, or otherwise wish to disable this feature,
># then uncomment the following line:
>
>nmi.register_with_names=false
>nmi.trace_level = admin
>#nmi.trace_mask = (106)
>nmi.trace_directory = /soft/oracle/network/log
>nmi.log_directory= /soft/oracle/network/log
>dbsnmp.address=
>(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.113.58)(PORT=1521)))
>
>(oracle_at_tigana)cat listener.ora
>################
># Filename......: listener.ora
># Node..........: local.world
># Date..........: 24-MAY-94 13:23:20
>################
>LISTENER =
>(ADDRESS_LIST =
Only one ipc block is allowed. I would retain the one with KEY = tigana
> (ADDRESS=
> (PROTOCOL= IPC)
> (KEY= oracle.world)
> )
> (ADDRESS=
> (PROTOCOL= IPC)
> (KEY= tigana)
> )
>
You should remove two TCP blocks and retain one. I would retain the one with 1521 only
(ADDRESS=>
> (COMMUNITY= TCP.world)
> (Host = tigana)
> (PROTOCOL= TCP)
> (Port= 1521)
> )
> (ADDRESS=
> (COMMUNITY= TCP.world)
> (Host = 127.0.0.1)
> (PROTOCOL= TCP)
> (Port= 1521)
> )
> (ADDRESS=
> (COMMUNITY= TCP.world)
> (Host = tigana)
> (PROTOCOL= TCP)
> (Port= 1526)
> )
![]() |
![]() |