kodaksmile
MIS
I just created a new database called wiretst (in small letters) I added the following entry in my listener.ora file:
# Listener to the wiretst
USE_PLUG_AND_PLAY_WIRETST = OFF
USE_CKPFILE_WIRETST = OFF
wiretst =
(ADDRESS_LIST=
(ADDRESS=(PROTOCOL=tcp)(HOST=itdevb3.rexallsundown.com)(PORT=1532))
(ADDRESS=(PROTOCOL=tcp)(HOST=itdevb3.rexallsundown.com)(PORT=1537))
(ADDRESS=(PROTOCOL=ipc)(KEY=wiretst)))
SID_LIST_WIRETST=
(SID_LIST=
(SID_DESC=
(SDU = 8192)
(GLOBAL_DBNAME=wiretst.REXALLSUNDOWN.COM)
(SID_NAME=wiretst)
(ORACLE_HOME=/u01/app/oracle/product/8.1.7)
)
)
STARTUP_WAIT_TIME_WIRETST = 0
CONNECT_TIMEOUT_WIRETST = 0
LOG_DIRECTORY_WIRETST = /u01/app/oracle/product/8.1.7/network/log
TRACE_LEVEL_WIRETST = OFF
I also added the following entry in my tnsnames.ora file:
wiretst.REXALLSUNDOWN.COM =
(DESCRIPTION =
(SDU = 8192)
(ADDRESS_LIST =
(ADDRESS =
(COMMUNITY = tcp.world)(PROTOCOL = TCP)(HOST = itdevb3.rexallsundown.com
)(PORT = 1532)
(COMMUNITY = tcp.world)(PROTOCOL = TCP)(HOST = itdevb3.rexallsundown.com
)(PORT = 1537)
)
)
(CONNECT_DATA = (SID = wiretst))
)
It looks the same as other entries in both files (there are multiple databases on my unix server) but, I get the following error when I try to start the listener :
TNS-01550 Address of specified listener name is incorrect
NL-00303 syntax error in NV string
It also looks like it is trying to use port 1521 instead of the ports I assigned. I also tried doing lsnrctl reload in case it didn't pick up the changes but, same result. Any help would be appreciated.
thanks
# Listener to the wiretst
USE_PLUG_AND_PLAY_WIRETST = OFF
USE_CKPFILE_WIRETST = OFF
wiretst =
(ADDRESS_LIST=
(ADDRESS=(PROTOCOL=tcp)(HOST=itdevb3.rexallsundown.com)(PORT=1532))
(ADDRESS=(PROTOCOL=tcp)(HOST=itdevb3.rexallsundown.com)(PORT=1537))
(ADDRESS=(PROTOCOL=ipc)(KEY=wiretst)))
SID_LIST_WIRETST=
(SID_LIST=
(SID_DESC=
(SDU = 8192)
(GLOBAL_DBNAME=wiretst.REXALLSUNDOWN.COM)
(SID_NAME=wiretst)
(ORACLE_HOME=/u01/app/oracle/product/8.1.7)
)
)
STARTUP_WAIT_TIME_WIRETST = 0
CONNECT_TIMEOUT_WIRETST = 0
LOG_DIRECTORY_WIRETST = /u01/app/oracle/product/8.1.7/network/log
TRACE_LEVEL_WIRETST = OFF
I also added the following entry in my tnsnames.ora file:
wiretst.REXALLSUNDOWN.COM =
(DESCRIPTION =
(SDU = 8192)
(ADDRESS_LIST =
(ADDRESS =
(COMMUNITY = tcp.world)(PROTOCOL = TCP)(HOST = itdevb3.rexallsundown.com
)(PORT = 1532)
(COMMUNITY = tcp.world)(PROTOCOL = TCP)(HOST = itdevb3.rexallsundown.com
)(PORT = 1537)
)
)
(CONNECT_DATA = (SID = wiretst))
)
It looks the same as other entries in both files (there are multiple databases on my unix server) but, I get the following error when I try to start the listener :
TNS-01550 Address of specified listener name is incorrect
NL-00303 syntax error in NV string
It also looks like it is trying to use port 1521 instead of the ports I assigned. I also tried doing lsnrctl reload in case it didn't pick up the changes but, same result. Any help would be appreciated.