|
There is something wrong with your TNS configuration file :)
There are several places to pay attention to
1.HOST is on the server machine name or static IP address
2.SERVICE_NAME The name of the ORACLE instance you installed, other copies are just fine
For example:
CKCRP = --You can write the name of CKCRP in this place, just write this in the name of the service you log in to.
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP) (HOST = 172.28.65.213) (PORT = 1521))
)
(CONNECT_DATA =
(SERVER = DEDICATED)
(SERVICE_NAME = CKCRP)
)
)
among them
HOST = 172.28.65.213 replaced with the live static IP address or machine name of the machine where your database is located
SERVICE_NAME = CKCRP where CKCRP is replaced with the name of your instance |
|