Step By Step: Connecting the Windows Client

This is a continuation of my virtual PeopleSoft installation.   To see the complete list of steps, click here.

This is more just documentation to document the settings that allow connecting a Windows virtual machine to the database to load the PS database.

tnsnames.ora on the client:

HRDMO =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = 172.16.36.129)(PORT = 1521))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = HRDMO)
)
)

tnsnames on the server:
HRDMO =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = TCP)(HOST = localhost)(PORT = 1521))
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = HRDMO)
)
)

EXTPROC_CONNECTION_DATA =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
)
(CONNECT_DATA =
(SID = PLSExtProc)
(PRESENTATION = RO)
)
)

listener.ora on the server:

SID_LIST_LISTNER =
(SID_LIST =
(SID_DESC =
(SID_NAME = PLSExtProc)
(ORACLE_HOME = /home/pshr/app/pshr/product/11.1.0/db_1)
(PROGRAM = extproc)
)
)

LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
(ADDRESS = (PROTOCOL = TCP)(HOST = 172.16.36.129)(port = 1521))
)
)

Starting the Services:

lsnrnctl start
dbstart /home/pshr/app/pshr/product/11.1.0/db_1

Resources

One thought on “Step By Step: Connecting the Windows Client

Leave a Comment

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

This site uses Akismet to reduce spam. Learn how your comment data is processed.