Skip to content
Home » Oracle » How to Resolve PRCN-2065 PRCN-2067

How to Resolve PRCN-2065 PRCN-2067

For preventing port 1521 from mistakenly being assigned by other listener, the clusterware won't allow port 1521 to be reassigned, no matter what the network is the default one or not.

[grid@primary01 ~]$ srvctl add listener -l listener2 -k 2 -p 1521
PRCN-2061 : Failed to add listener ora.LISTENER2.lsnr
PRCN-2065 : Ports 1521 are not available on the nodes given
PRCN-2067 : Port 1521 is not available on nodes: primary01.example.com

If the new listener was planning to use unoccupied 1521 of another network, you can force clusterware to skip the port checking by adding an option -s.

[grid@primary01 ~]$ srvctl add listener -l listener2 -k 2 -p 1521 -s
[grid@primary01 ~]$ srvctl config listener
Name: LISTENER
Type: Database Listener
Network: 1, Owner: grid
Home: <CRS home>
End points: TCP:1521
Listener is enabled.
Listener is individually enabled on nodes:
Listener is individually disabled on nodes:
Name: LISTENER2
Type: Database Listener
Network: 2, Owner: grid
Home: <CRS home>
End points: TCP:1521
Listener is enabled.
Listener is individually enabled on nodes:
Listener is individually disabled on nodes:

We solved it.

Leave a Reply

Your email address will not be published. Required fields are marked *