Operating System - HP-UX
1828171 Members
2683 Online
109975 Solutions
New Discussion

problem with listner port

 
jimmy_39
Advisor

problem with listner port

hy grrus
i have a problem with listner
i want know on this port listen the listner
of my instance..

4 REPLIES 4
Sanjay Kumar Suri
Honored Contributor

Re: problem with listner port

If you are talking about Oracle instance then generally it is 1521 as specified in listener.ora file.

LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = machine_name)(PORT = 1521))
)
)
)

sks

A rigid mind is very sure, but often wrong. A flexible mind is generally unsure, but often right.
Ian Lochray
Respected Contributor

Re: problem with listner port

To find all the userfull listener information, use the command "lsnrctl status LISTENER_NAME" where LISTENER_NAME can be left blank if you Are using the default name (LISTENER).
Steven E. Protter
Exalted Contributor

Re: problem with listner port

When checking this setup, here is a useful tool for checking syntax and tns network connectivity without having to bounce the database and listener.

tnsping

its an oracle network testing tool. Right after you save the file, you can test if oracle network connectivity is correct.

SEP
Jerusalem
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Sanjay Kumar Suri
Honored Contributor

Re: problem with listner port

with

$lsnrctl help

you can get all the sub-commnads that it supports:

start stop status
services version reload
save_config trace spawn
change_password quit exit
set* show*


sks
A rigid mind is very sure, but often wrong. A flexible mind is generally unsure, but often right.