Home > Database > Mysql Tutorial > body text

浅析如何在tnsnames.ora中配置监听

WBOY
Release: 2016-06-07 14:53:24
Original
1127 people have browsed it

以下是对如何在tnsnames.ora中配置监听进行了详细的分析介绍,需要的朋友可以过来参考下 tnsnames.ora所在位置:D:Installedoracleproduct11.1.0db_1NETWORKADMINtnsnames.ora也就是说在product中 只有配置了监听之后才可以登录到数据库中 复制代码 代码如

以下是对如何在tnsnames.ora中配置监听进行了详细的分析介绍,需要的朋友可以过来参考下

 

tnsnames.ora所在位置:D:Installedoracleproduct11.1.0db_1NETWORKADMINtnsnames.ora也就是说在product中

只有配置了监听之后才可以登录到数据库中

复制代码 代码如下:


TOTO =
  (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 这里是IP地址)(PORT = 1521))
    (CONNECT_DATA =
      (SERVER = SHARED)
      (SERVICE_NAME = toto)
    )
  )


其中HOST表示的是要访问的机器的ip地址,port是端口号。SERVICE_NAME对应的是数据库名称。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template