7.0
Table Of Contents
- Application Discovery Manager Administration Guide
- Contents
- About This Book
- Overview
- Installing ADM
- Setting Up ADM
- Securing ADM
- Maintenance
- Upgrading ADM
- Migrating to a New Appliance
- Troubleshooting ADM
- Uninstalling ADM
- Time Zones
- ADM API Tutorial
- Index
Application Discovery Manager Administration Guide
24 VMware, Inc.
10 Logintothedatabasebyrunningthefollowingcommand.
$ sqlplus system/nlayers
11 InSQLPlus,runthefollowingcommand:
SQL> @/opt/oracle/app/oracle/product/11.2.0/db_1/sqlplus/admin/pupbld.sql
12 Create the remotepasswordfile.
aLogintothe Oracleserverwithuserasoracle.
bRunthefollowingcommand:
$ orapwd file=$ORACLE_HOME/dbs/orapw$ORACLE_SID password=nlayers force=Y
To Configure the Oracle Listener
1LogintotheOracleserverwithuserasoracle.
2 Navigateto$ORACLE_HOME/network/admin
3 Createanewfile,tnsnames.ora,withthefollowingcontentandensurethat#DATABAS_SERVER_IP#is
replacedwiththeIPaddressofthedatabaseserver.
#
# Filename: tnsnames.ora
#
NLAYERS =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = #DATABAS_SERVER_IP#)(PORT = 1521))
)
(CONNECT_DATA =
(SERVICE_NAME = nlayers)
)
)
4Runthefollowingcommand:
$chmod 777 tnsnames.ora
5 Createanewfile,listener.ora,withthefollowingcontentandensurethat#DATABAS_SERVER_IP#is
replacedwiththeIPaddressofthedatabaseserver.
#
# Filename: listener.ora
#
LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT = 1521))
(ADDRESS = (PROTOCOL = TCP)(HOST = #DATABAS_SERVER_IP# )(PORT = 1521))
)
)
)
6Runthefollowingcommand:
$chmod 777 listener.ora