对于DBA来说,启动和关闭oracle监听器是很基础的任务,但是Linux系统管理员或者程序员有时也需要在开发数据库中做一些基本的DBA操作,因此了解一些基本的管理操作对他们来说很重要。

本文将讨论用LSNRCTL命令启动、关闭和查看监听器的状态的方法。

在启动、关闭或者重启oracle监听器之前确保使用

lsnrctl status            (listener control 监听控制的简拼)
命令检查oracle监听器的状态。除了得到监听器的状态之外,你还可以从lsnrctl status命令的输出中得到如下的信息:

监听器的启动时间
监听器的运行时间
监听器参数文件listener.ora的位置,通常位于$ORACLE_HOME/network/admin目录下
监听器日志文件的位置

1.如果oracle监听器没用运行,你将得到如下的信息


[c-sharp]
 view plaincopy

  1. 1. $ lsnrctl status
  2. 2.
  3. 3. LSNRCTL for Linux: Version 11.1.0.6.0 - Production on 04-APR-2009 16:27:39
  4. 4.
  5. 5. Copyright (c) 1991, 2007, Oracle.  All rights reserved.
  6. 6.
  7. 7. Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.1.2)(PORT=1521)))
  8. 8. TNS-12541: TNS:no listener
  9. 9.  TNS-12560: TNS:protocol adapter error
  10. 10.   TNS-00511: No listener
  11. 11.    Linux Error: 111: Connection refused
  12. 12. Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC)))
  13. 13. TNS-12541: TNS:no listener
  14. 14.  TNS-12560: TNS:protocol adapter error
  15. 15.   TNS-00511: No listener
  16. 16.    Linux Error: 2: No such file or directory

2.如果oracle监听器正在运行,你将得到如下信息

[c-sharp] view plaincopy

  1. 1. $ lsnrctl status
  2. 2.
  3. 3. LSNRCTL for Linux: Version 11.1.0.6.0 - Production on 04-APR-2009 16:27:02
  4. 4.
  5. 5. Copyright (c) 1991, 2007, Oracle.  All rights reserved.
  6. 6.
  7. 7. Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.1.2)(PORT=1521)))
  8. 8. STATUS of the LISTENER
  9. 9. ————————
  10. 10. Alias                     LISTENER
  11. 11. Version                   TNSLSNR for Linux: Version 11.1.0.6.0 - Production
  12. 12. Start Date                29-APR-2009 18:43:13
  13. 13. Uptime                    6 days 21 hr. 43 min. 49 sec
  14. 14. Trace Level               off
  15. 15. Security                  ON: Local OS Authentication
  16. 16. SNMP                      OFF
  17. 17. Listener Parameter File   /u01/app/oracle/product/11.1.0/network/admin/listener.ora
  18. 18. Listener Log File         /u01/app/oracle/diag/tnslsnr/devdb/listener/alert/log.xml
  19. 19. Listening Endpoints Summary…
  20. 20.   (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.1.2)(PORT=1521)))
  21. 21.   (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC)))
  22. 22. Services Summary…
  23. 23. Service “devdb” has 1 instance(s).
  24. 24.   Instance “devdb”, status UNKNOWN, has 1 handler(s) for this service…
  25. 25. Service “devdb.thegeekstuff.com” has 1 instance(s).
  26. 26.   Instance “devdb”, status READY, has 1 handler(s) for this service…
  27. 27. Service “devdbXDB.thegeekstuff.com” has 1 instance(s).
  28. 28.   Instance “devdb”, status READY, has 1 handler(s) for this service…
  29. 29. Service “devdb_XPT.thegeekstuff.com” has 1 instance(s).
  30. 30.   Instance “devdb”, status READY, has 1 handler(s) for this service…
  31. 31. The command completed successfully

3.启动oracle监听器
        如果oracle监听器没用运行,你可以用lsnrctl start命令启动oracle监听器,该命令将启动所有的监听器,如果你只想启动特定的监听器,可以再start后面指定监听器的名字,例如:lsnrctl start [listener-name]

[c-sharp] view plaincopy

  1. 1. $ lsnrctl start
  2. 2.
  3. 3. LSNRCTL for Linux: Version 11.1.0.6.0 - Production on 04-APR-2009 16:27:42
  4. 4.
  5. 5. Copyright (c) 1991, 2007, Oracle.  All rights reserved.
  6. 6.
  7. 7. Starting /u01/app/oracle/product/11.1.0/bin/tnslsnr: please wait…
  8. 8.
  9. 9. TNSLSNR for Linux: Version 11.1.0.6.0 - Production
  10. 10. System parameter file is /u01/app/oracle/product/11.1.0/network/admin/listener.ora
  11. 11. Log messages written to /u01/app/oracle/diag/tnslsnr/devdb/listener/alert/log.xml
  12. 12. Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.1.2)(PORT=1521)))
  13. 13. Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC)))
  14. 14.
  15. 15. Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.1.2)(PORT=1521)))
  16. 16. STATUS of the LISTENER
  17. 17. ————————
  18. 18. Alias                     LISTENER
  19. 19. Version                   TNSLSNR for Linux: Version 11.1.0.6.0 - Production
  20. 20. Start Date                04-APR-2009 16:27:42
  21. 21. Uptime                    0 days 0 hr. 0 min. 0 sec
  22. 22. Trace Level               off
  23. 23. Security                  ON: Local OS Authentication
  24. 24. SNMP                      OFF
  25. 25. Listener Parameter File   /u01/app/oracle/product/11.1.0/network/admin/listener.ora
  26. 26. Listener Log File         /u01/app/oracle/diag/tnslsnr/devdb/listener/alert/log.xml
  27. 27. Listening Endpoints Summary…
  28. 28.   (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.1.2)(PORT=1521)))
  29. 29.   (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC)))
  30. 30. Services Summary…
  31. 31. Service “devdb” has 1 instance(s).
  32. 32.   Instance “devdb”, status UNKNOWN, has 1 handler(s) for this service…
  33. 33. The command completed successfully

4.关闭oracle监听器
        如果oracle监听器正在运行,可以使用lsnrctl stop命令关闭oracle监听器,该命令将关闭所有的监听器,如果你只想关闭特定的监听器,可以再stop后面指定监听器的名字,例如:lsnrctl stop [listener-name]

[c-sharp] view plaincopy

  1. 1. $ lsnrctl stop
  2. 2.
  3. 3. LSNRCTL for Linux: Version 11.1.0.6.0 - Production on 04-APR-2009 16:27:37
  4. 4.
  5. 5. Copyright (c) 1991, 2007, Oracle.  All rights reserved.
  6. 6.
  7. 7. Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.1.2)(PORT=1521)))
  8. 8. The command completed successfully

5.重启oracle监听器

用lsnrctl reload重启监听器,此命令可以代替lsnrctl stop和lsnrctl start。重启将会在不需要关闭和启动监听器的情况下读取listener.ora的配置。

[c-sharp] view plaincopy

  1. # $ lsnrctl reload
  2. #
  3. # LSNRCTL for Linux: Version 11.1.0.6.0 - Production on 04-APR-2009 17:03:31
  4. #
  5. # Copyright (c) 1991, 2007, Oracle.  All rights reserved.
  6. #
  7. # Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.1.2)(PORT=1521)))
  8. # The command completed successfully

Oracle监听器帮助

出如下:

nrctl hep命令可以显示所有可用的监听器命令。在oracle11g中其输出如下:

  • start - Start the Oracle listener
  • stop - Stop the Oracle listener
  • status - Display the current status of the Oracle listener
  • services - Retrieve the listener services information
  • version - Display the oracle listener version information
  • reload - This will reload the oracle listener SID and parameter files. This is equivalent to lsnrctl stop and lsnrctl start.
  • save_config - This will save the current settings to the listener.ora file and also take a backup of the listener.ora file before overwriting it. If there are no changes, it will display the message “No changes to save for LISTENER”
  • trace - Enable the tracing at the listener level. The available options are ‘trace OFF’, ‘trace USER’, ‘trace ADMIN’ or ‘trace SUPPORT’
  • spawn - Spawns a new with the program with the spawn_alias mentioned in the listener.ora file
  • change_password - Set the new password to the oracle listener (or) change the existing listener password.
  • show - Display log files and other relevant listener information.
 
[c-sharp] view plaincopy

  1. 1. $ lsnrctl help
  2. 2.
  3. 3. LSNRCTL for Linux: Version 11.1.0.6.0 - Production on 04-APR-2009 16:12:09
  4. 4.
  5. 5. Copyright (c) 1991, 2007, Oracle.  All rights reserved.
  6. 6.
  7. 7. The following operations are available
  8. 8. An asterisk (*) denotes a modifier or extended command:
  9. 9.
  10. 10. start               stop                status
  11. 11. services            version             reload
  12. 12. save_config         trace               spawn
  13. 13. change_password     quit                exit
  14. 14. set*                show*
 

.

得到指定监听器命令的详细帮助信息

可以使用lsnrctl help得到指定的命令的详细帮助信息。如下所示

[c-sharp] view plaincopy

  1. 1. $ lsnrctl help show
  2. 2.
  3. 3. LSNRCTL for Linux: Version 11.1.0.6.0 - Production on 04-APR-2009 16:22:28
  4. 4.
  5. 5. Copyright (c) 1991, 2007, Oracle.  All rights reserved.
  6. 6.
  7. 7. The following operations are available after show
  8. 8. An asterisk (*) denotes a modifier or extended command:
  9. 9.
  10. 10. rawmode                     displaymode
  11. 11. rules                       trc_file
  12. 12. trc_directory               trc_level
  13. 13. log_file                    log_directory
  14. 14. log_status                  current_listener
  15. 15. inbound_connect_timeout     startup_waittime
  16. 16. snmp_visible                save_config_on_stop
  17. 17. dynamic_registration

Oracle 重启监听的更多相关文章

  1. 问题1:Oracle数据库监听启动失败(重启监听,提示The listener supports no services)

    编辑监听文件:/home/DB/oracle/11gR2/db/network/admin/listener.ora 在文件内添加静态监听实例,如下内容: SID_LIST_LISTENER =(SI ...

  2. ORACLE的监听日志太大,客户端无法连接

    数据库sqlplus能连接,plsql连接失败,也不报错,就定位到了是不是监听出了什么问题,删除监听,重建监听,重启监听,各种尝试都没解决问题. 却是监听日志太大导致的问题,一下是处理步骤: 查看监听 ...

  3. Oracle 数据库监听配置和服务

    -- 补充说明 如果要远程连接192.168.10.44上的oracle,那么192.168.10.44服务器必须启动TNSListener.(配置文件 listener.ora) PLSQL Dev ...

  4. Oracle 网络监听配置管理

    Oracle 网络配置与管理 详细信息可以参考以下信息: [学习目标] 一.原理解析 二.配置侦听器(LISTENER) 三.配置客户端网络服务名 四.关于注册 五.查询某服务是静态还是动态注册 Or ...

  5. Windows环境下修改Oracle实例监听IP地址

    Windows环境下修改Oracle实例监听IP地址. 配置文件路径:<ORACLE_HOME>\NETWORK\ADMIN 如:C:\Oracle11gR2\product\11.2.0 ...

  6. 重启监听卡在connecting to的问题

    问题描述:lsnrctl start启动监听起不来,一直卡在connecting to半天 1.[oracle@orcl ~]$ lsnrctl start 一直卡半天,就是连不上,按照以前的解决办法 ...

  7. oracle关闭监听log.xml文件生成步骤

    1.查看sqlnet.ora文件是否存在 cd $ORACLE_HOME/network/admin ls 如果不存在,copy一个过来 cp samples/sqlnet.ora . 2.修改sql ...

  8. Oracle修改监听端口号1521[转]

    在oracle中,默认的监听端口号为1521,一旦有人扫描出这个端口号就会知道此服务器为oracle数据库服务器,存在极其大的安全隐患,在这里,教大家如何修改oracle默认端口号为9999: 1.查 ...

  9. Oracle修改监听端口教程

    Oracle默认监听端口1521,一众扫描器通常通过探测1521端口是否开启来探测是否存在Oracle服务,如果修改默认监听端口在一定程度上可以提升数据库和主机的安全性. 比如这里我们修改成2521为 ...

随机推荐

  1. Webpack实战(五):轻松读懂Webpack如何分离样式文件

    在上一篇文章中我给大家分享了预处理器(loader),里面讲到了style-loader 和css-loader,有关样式引入的问题,但是上面的样式文件只是引入到style标签里面,并不是我想要的样式 ...

  2. Java入门 - 高级教程 - 04.序列化

    原文地址:http://www.work100.net/training/java-serialization.html 更多教程:光束云 - 免费课程 序列化 序号 文内章节 视频 1 概述 2 序 ...

  3. php代码没解析成功

    在Apache中加载PHP模块 1.打开Apache的配置文件httpd.conf(位于Apache2\conf 目录下). 2.查找 “#LoadModule ssl_module modules/ ...

  4. 多个github账号时,本地配置ssh-key

    由于需要,申请了多个github账号,但是都是在同一台电脑上操作,原来只有一个账号进行ssh操作时,推送没有遇到什么问题,现在有多个账号了,推送的时候就有点懵逼了,下面是根据网上的资料来进行多个账号, ...

  5. 利用Python进行博客图片压缩

    自己写博客的时候常常要插入一些手机拍的照片,都是几M的大小,每张手动压缩太费事了,于是根据自己博客的排版特点用Python写了一个简单的图片压缩脚本,功能是将博客图片生成缩略图,横屏的图片压缩为宽度最 ...

  6. linux系统iot平台编程阶段总结

    1.inline内联函数 在C语言中,如果一些函数被频繁调用,不断地有函数入栈,即函数栈,会造成栈空间或栈内存的大量消耗. 为了解决这个问题,特别的引入了inline修饰符,表示为内联函数. 在使用循 ...

  7. keras模型可视化

    #keras.utils.vis_utils模块提供了画出Keras模型的函数(keras版本2.0.2以上)pip install graphviz pip install pydotplus im ...

  8. 动态规划-Dynamic Programming(DP)

    动态规划 动态规划方法心得 ​ 动态规划是一般的面试.笔试中的高频算法题,熟练掌握必要的.动态规划的中心思想是在解决当前问题时,可以由之前已经计算所得的结果并结合现在的限制条件递推出结果.由于此前的计 ...

  9. CentOS7下部署2套Python版本共存

    参考地址:https://www.cnblogs.com/xuaijun/p/7985245.html 源码的安装一般由3个步骤组成:配置(configure).编译(make).安装(make in ...

  10. CountDownLatch CyclicBarrier和 Semaphore

    CountDownLatch CyclicBarrier和 Semaphore 原理 基于AQS实现. 让需要的暂时阻塞的线程,进入一个死循环里面,得到某个条件后再退出循环,以此实现阻塞当前线程的效果 ...