Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

configuring tcps ssl connection getting error

chandra_1986Apr 25 2022

Hi Experts,

Oracle version: 12.2.0.2
Having below tnsnames.ora configuration, with no listener file in network admin location how to configure SSL i need to add the lines like for both the instances
(ADDRESS = (PROTOCOL = TCPS)(HOST = DZTUPG)(PORT = 2484))
(ADDRESS = (PROTOCOL = TCPS)(HOST = DZTUPG)(PORT = 2485))
to connect TSU and MSU both
[oracle@dztupg admin]$ cat tnsnames.ora
# tnsnames.ora Network Configuration File: /u01/app/oracle/product/12.2.0/dbhome_1/network/admin/tnsnames.ora
# Generated by Oracle configuration tools.

MSU =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = DZTUPG)(PORT = 1521))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = msu)
)
)

LISTENER_TSU =
(ADDRESS = (PROTOCOL = TCP)(HOST = DZTUPG)(PORT = 1521))

MSUAT =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = DZTUPG)(PORT = 1521))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = msu)
)
)

LISTENER_MSU =
(ADDRESS = (PROTOCOL = TCP)(HOST = DZTUPG)(PORT = 1521))

TSUAT =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = DZTUPG)(PORT = 1521))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = TSU)
)
)

TSU =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = DZTUPG)(PORT = 1521))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = TSU)
)
)

Comments

Post Details

Added on Apr 25 2022
0 comments
77 views