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

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

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

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

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

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

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

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

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

2.启动oracle监听器

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

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

3.关闭oracle监听器

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

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

4.重启oracle监听器

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

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

Oracle监听器帮助

1.查看所有的监听器命令

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

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

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

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

Oracle LSNRCTL------监听器的启动和关闭的更多相关文章

  1. Oracle命令(二):Oracle数据库几种启动和关闭方式

    一.Oracle数据库几种启动方式 1.startup nomount 非安装启动,这种方式下启动可执行:重建控制文件.重建数据库,读取init.ora文件,启动instance,即启动SGA和后台进 ...

  2. Oracle数据库实例的启动及关闭

    要启动和关闭数据库,必须要以具有Oracle 管理员权限的用户登陆,通常也就是以具有SYSDBA权限的用户登陆.一般我们常用SYS用户以SYSDBA连接来启动和关闭数据库.下面介绍Oracle数据库几 ...

  3. 转载:oracle RAC集群启动和关闭

    http://www.cnblogs.com/yhfssp/p/8184761.html oracle 11G RAC集群启动和关闭: 1.停止数据库 $srvctl stop database –d ...

  4. oracle RAC集群启动和关闭

    oracle 11G RAC集群启动和关闭:1.停止数据库$srvctl stop database –d oradb2.停止集群服务关闭集群需要root运行#/u01/11.2.0/grid/bin ...

  5. Oracle中OEM的启动与关闭

    我已经选择安装了,但安装后发现开始菜单里并没有OEM,在哪里可以打开呢? 从Oracle10g开始,Oracle极大的增强了OEM工具,并通过服务器端进行EM工具全面展现.在10g中,客户端可以不必安 ...

  6. oracle多实例的启动与关闭

    Oracle/oracle登录 1.启监听器 lsnrctl start 监听一般不需要动,如果机器重新启动的话需要将监听启动. 查看当前SID:echo $ORACLE_SID 2.启动数据库实例: ...

  7. oracle之 监听器无法启动的几个原因总结

    1)防火墙没关 2)/etc/hosts配置问题,有可能误删了127.0.0.1的默认记录,添加默认记录 [root@rac02 ~]# cat /etc/hosts127.0.0.1 localho ...

  8. Oracle学习笔记之三,Oracle 11g数据库的启动与关闭

    SQL*PLus命令 SQLPLUS username[/password][@connect_identifier][AS SYSOPER|SYSDAB] 1. 启动数据库实例 STARTUP [n ...

  9. Oracle日常运维操作总结-数据库的启动和关闭

    下面是工作中对Oracle日常管理操作的一些总结,都是一些基本的oracle操作和SQL语句写法,在此梳理成手册,希望能帮助到初学者(如有梳理不准确之处,希望指出). 一.数据库的启动和关闭 1.1 ...

随机推荐

  1. CodeChef CHEFSOC2 Chef and Big Soccer 水dp

    Chef and Big Soccer   Problem code: CHEFSOC2 Tweet     ALL SUBMISSIONS All submissions for this prob ...

  2. Pandas级联

    Pandas提供了各种工具(功能),可以轻松地将Series,DataFrame和Panel对象组合在一起. pd.concat(objs,axis=0,join='outer',join_axes= ...

  3. NativeWindow_01

    1. “{$O-}”关闭优化 “{$O-}”打开优化 2. unit NativeWindow; interface uses Windows, Messages, SysUtils; procedu ...

  4. mysql数据库优化课程---10、mysql数据库分组聚合

    mysql数据库优化课程---10.mysql数据库分组聚合 一.总结 一句话总结:select concat(class,' 班') 班级,concat(count(*),' 人') 人数 from ...

  5. django从请求到返回都经历了什么[转]

    原文地址:http://projectsedu.com/2016/10/17/django从请求到返回都经历了什么/ 从runserver说起 ruserver是使用django自己的web serv ...

  6. 为什么font-size推荐使用具体数值?

    1.font-size的单位 font-size通常用的单位是px/em/rem,px就不说了,em/rem 主要用在移动端,原因的根据根元素大小进行适配,简而言之,em相对于父级定义基础字号,rem ...

  7. Selenium with Python 003 - 页面元素定位

    WebUI自动化,首先需要定位页面中待操作的元素,然后进行各种事件操作,这里我们首先介绍Selenium Python 如何定位页面元素,WebDriver 提供了一系列的方法. 定位单个页面元素(返 ...

  8. 51nod 1270 dp

    http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1270 简单的线性dp,最近狂刷水题真的是...药丸 差值最大得话要么是峰 ...

  9. shell编程-变量

    Shell支持自定义变量. 定义变量 定义变量时,变量名不加美元符号($),如: VALUE=“tmp” 注意,变量名和等号之间不能有空格,这可能和你熟悉的所有编程语言都不一样.同时,变量名的命名须遵 ...

  10. canvas - 圆圈内 hover 高亮 效果

    各种计算还挺繁琐的, 关键点在角度的计算, 根据鼠标位置, 利用atan(y/x) 得到反正切值 , 角度  (tan输入的是r和x围成的那个角,输出的是y/x.反tan就是输入y/x输出角.) &l ...