转自:http://blog.csdn.net/zjliu1984/archive/2009/06/16/4273304.aspx

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

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

怎样启动、关闭和重新启动oracle监听器

在启动、关闭或者重启oracle监听器之前确保使用lsnrctl status命令检查oracle监听器的状态。除了得到监听器的状态之外,你还可以从lsnrctl status命令的输出中得到如下的信息:

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

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

1. $ lsnrctl status 2. 3. LSNRCTL for Linux: Version 11.1.0.6.0 - Production on 04-APR-2009 16:27:39 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. TNS-12541: TNS:no listener 9. TNS-12560: TNS:protocol adapter error 10. TNS-00511: No listener 11. Linux Error: 111: Connection refused 12. Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC))) 13. TNS-12541: TNS:no listener 14. TNS-12560: TNS:protocol adapter error 15. TNS-00511: No listener 16. Linux Error: 2: No such file or directory

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

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

2.启动oracle监听器

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

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

3.关闭oracle监听器

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

1. $ lsnrctl stop 2. 3. LSNRCTL for Linux: Version 11.1.0.6.0 - Production on 04-APR-2009 16:27:37 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

4.重启oracle监听器

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

# $ lsnrctl reload # # LSNRCTL for Linux: Version 11.1.0.6.0 - Production on 04-APR-2009 17:03:31 # # Copyright (c) 1991, 2007, Oracle. All rights reserved. # # Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.1.2)(PORT=1521))) # 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.
1. $ lsnrctl help 2. 3. LSNRCTL for Linux: Version 11.1.0.6.0 - Production on 04-APR-2009 16:12:09 4. 5. Copyright (c) 1991, 2007, Oracle. All rights reserved. 6. 7. The following operations are available 8. An asterisk (*) denotes a modifier or extended command: 9. 10. start stop status 11. services version reload 12. save_config trace spawn 13. change_password quit exit 14. set* show*

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

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

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

Oracle Lsnrctl - 关于oracle监听器的命令和解释相关推荐

  1. php oracle创建临时表,Oracle常用命令笔记

    Oracle常用命令笔记 客户端用的pl/sql工具 ORACLE的重启命令 (1) 以系统管理员登录,命令:connect / as sysdba (2) 启动数据库,命令:startup (3) ...

  2. oracle lsnrctl命令,oracle 中的lsnrctl命令

    作为oracle监听命令 在启动.关闭或者重启oracle监听器之前确保使用lsnrctl status命令检查oracle监听器的状态: 1.$lsnrctl status:检查当前监听器的状态 2 ...

  3. 新建的ORACLE实例要开启监听,创建ORACLE实例与设置监听器过程

    一.在ORACLE创建一个新的实例过程: 1.安装好ORACLE服务端. 2.创建数据库实例,使用ORAHOME目录下的"Configuration and Migration Tools& ...

  4. oracle 修改lsnrctl,ORACLE LSNRCTL密码及忘记密码处理

    Oracle lsnrctl设置密码 如何给监听器设置密码,提防被其他用户关掉监听器?以下是给监听器设置密码的步骤: 进入LSNRCTL: 1.设置监听器的口令.默认口令为空. LSNRCTL> ...

  5. windows重启oracle监听口令,oracle_windows下命令启动oracle监听和服务

    1.检查监听器状态 C:\Users\Administrator>lsnrctl status 2.启动监听程序 C:\Users\Administrator>lsnrctl start ...

  6. oracle停数据库,oracle数据库停止命令

    linux/Aix启动.关闭Oracle及监听 Aix环境下管理Oracle 1.Aix下查看.启动数据库监听器 以oracle用户执行以下命令: ① lsnrctl status //-查看监听器状 ...

  7. srvctl 在oracle下运行,Oracle RAC中Srvctl命令详细说明文档

    SRVCTL是ORACLE9i RAC集群配置管理的工具.本文是对SRVCTL的所有命令进行详细说明的一篇参考文档. 读者对象:ORACLE9i RAC数据库集群管理员. 注: RAC:Real Ap ...

  8. srvctl 在oracle下运行,ORACLE RAC 中 SRVCTL 命令详细说明

    ORACLE RAC 中 SRVCTL 命令详细说明           注:             RAC:     Real Application Clusters             S ...

  9. oracle中imp命令具体解释

    oracle中imp命令具体解释 Oracle的导入有用程序(Import utility)同意从数据库提取数据,而且将数据写入操作系统文 件.imp使用的基本格式:imp[username[/pas ...

最新文章

  1. HTML5学习笔记简明版(10):过时的元素和属性
  2. Spring对AOP的支持
  3. Redis--事务理解
  4. 干货:从0到1搭建「推荐策略产品」的深度思考
  5. php模糊搜索慢怎么办,MySQL中文模糊检索问题的解决方法_php
  6. 左侧固定右侧自动填充_ai怎么填充颜色?在ai里怎么填充颜色?
  7. java中输出打印 num_System.out.print。 如何将打印输出编号?(JAVA)
  8. 服务器gsql密码修改,gsql远程登录
  9. 零基础安装Ubuntu kylin 16.04 LTS 后应该做什么[本人安装目的:学习Python数据分析]
  10. [spring]maven项目中获取resources资源目录路径
  11. 三角网格表面高斯曲率的计算与可视化
  12. unity常用的引用赋值一个GameObject的三种方法
  13. 关于flashdevelop测试flex项目时trace不出的解决方法
  14. 鼎捷T100标准接口调用
  15. VMWare安装Deepin系统
  16. 【评测】Alfa Aesar分子砌块
  17. 半导体产业行业手持式粒子计数器工作原理
  18. 《百度中小学人工智能课程》预计9月进课堂;AI医疗市场未来营收规模或达万亿以上...
  19. 获取单选框复选框被选中的值
  20. 针对有APP签名的系统中,短信不能收发的问题解决过程

热门文章

  1. 为什么程序员不擅长估算时间
  2. iphone-common-codes-ccteam源代码 CCUIActivityIndicatorView.h
  3. nohup使得Python web项目在服务器上后台运行
  4. java poi jar maven_使用maven引入Apache poi jar包
  5. JavaScriptjQuery 基本使用
  6. Python的可视化包 – Matplotlib 2D图表(点图和线图,.柱状或饼状类型的图),3D图表(曲面图,散点图和柱状图)...
  7. OSU!(bzoj 4318)
  8. 如何使用定时器settimeout、setInterval执行能传递参数的函数(转)
  9. 机房收费系统上机之逻辑思维
  10. (转)如何用U盘创建Linux系统盘