重庆思庄Oracle、Redhat认证学习论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 8143|回复: 5

11g下给监听设置口令

[复制链接]
发表于 2012-10-11 15:12:09 | 显示全部楼层 |阅读模式

1.   1.首先查看监听状态(使用的是默认监听):

[root@dbserver ~]# su - oracle

[oracle@dbserver ~]$ lsnrctl

 

LSNRCTL for Linux: Version 11.2.0.1.0 - Production on 11-OCT-2012 11:56:51

 

Copyright (c) 1991, 2009, Oracle.  All rights reserved.

 

Welcome to LSNRCTL, type "help" for information.

 

LSNRCTL> status

Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.133.120)(PORT=1521)))

TNS-12541: TNS: no listener

 TNS-12560: TNS: protocol adapter error

  TNS-00511: No listener

   Linux Error: 111: Connection refused

要设置口令的监听必须处于启动状态

[此贴子已经被作者于2012-10-11 15:16:41编辑过]
回复

使用道具 举报

 楼主| 发表于 2012-10-11 15:12:42 | 显示全部楼层

 

1.  2.启动监听

LSNRCTL> start

Starting /oracle/app/oracle/product/11.2.0.1/db_1/bin/tnslsnr: please wait...

 

TNSLSNR for Linux: Version 11.2.0.1.0 - Production

System parameter file is /oracle/app/oracle/product/11.2.0.1/db_1/network/admin/listener.ora

Log messages written to /oracle/app/oracle/diag/tnslsnr/dbserver/listener/alert/log.xml

Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.133.120)(PORT=1521)))

 

Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.133.120)(PORT=1521)))

STATUS of the LISTENER

------------------------

Alias                     LISTENER

Version                   TNSLSNR for Linux: Version 11.2.0.1.0 - Production

Start Date                11-OCT-2012 13:52:32

Uptime                    0 days 0 hr. 0 min. 0 sec

Trace Level               off

Security                  ON: Password or Local OS Authentication

SNMP                      OFF

Listener Parameter File   /oracle/app/oracle/product/11.2.0.1/db_1/network/admin/listener.ora

Listener Log File         /oracle/app/oracle/diag/tnslsnr/dbserver/listener/alert/log.xml

Listening Endpoints Summary...

  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.133.120)(PORT=1521)))

The listener supports no services

The command completed successfully

LSNRCTL>

[此贴子已经被作者于2012-10-11 15:16:12编辑过]
回复 支持 反对

使用道具 举报

 楼主| 发表于 2012-10-11 15:13:21 | 显示全部楼层

 

3.给监听设置口令

listener的密码策略对start无效,目的是防止恶意stop(start ,如果有在运行,则不成功,所以也就不需要保护了)

LSNRCTL> set current_listener listener<-- 设置当前监听器的配置名称

Current Listener is listener

LSNRCTL> change_password

Old password: <原来的口令> <-- 如果原来没有设置口令就直接回车,否则输入原来的口令

New password: <新口令>

Reenter new password: <新口令>

Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.133.120)(PORT=1521)))

Password changed for listener

The command completed successfully

LSNRCTL> set password

Password: <新口令>

The command completed successfully

LSNRCTL> save_config(此步重要,保存当前设置)

Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.133.120)(PORT=1521)))

Saved LISTENER configuration parameters.

Listener Parameter File   /oracle/app/oracle/product/11.2.0.1/db_1/network/admin/listener.ora

Old Parameter File   /oracle/app/oracle/product/11.2.0.1/db_1/network/admin/listener.bak

The command completed successfully

LSNRCTL>

回复 支持 反对

使用道具 举报

 楼主| 发表于 2012-10-11 15:15:11 | 显示全部楼层

4.禁用本地验证

LSNRCTL> status

Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.133.120)(PORT=1521)))

STATUS of the LISTENER

------------------------

Alias                     LISTENER

Version                   TNSLSNR for Linux: Version 11.2.0.1.0 - Production

Start Date                11-OCT-2012 13:52:32

Uptime                    0 days 0 hr. 10 min. 56 sec

Trace Level               off

Security                  ON: Password or Local OS Authentication

SNMP                      OFF

Listener Parameter File   /oracle/app/oracle/product/11.2.0.1/db_1/network/admin/listener.ora

Listener Log File         /oracle/app/oracle/diag/tnslsnr/dbserver/listener/alert/log.xml

Listening Endpoints Summary...

  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.133.120)(PORT=1521)))

Services Summary...

Service "sztech1" has 1 instance(s).

  Instance "sztech1", status READY, has 1 handler(s) for this service...

Service "sztech1XDB" has 1 instance(s).

  Instance "sztech1", status READY, has 1 handler(s) for this service...

The command completed successfully

在默认情况下,启动Listener或者使用lsnrctl status命令查看监听状态,可以看到:

Security ON: Password OR Local OS Authentication
这表明Listener的安全机制使用了Password方式或者Local OS Authentication方式,在这种状态下,即使是设置了监听密码,对于启动监听的user来说,也仍然是不需要任何密码就可以停止监听的。

如果我们想去除自Oracle10g之后的这种新安全机制,那么需要在listener.ora文件中添加:

LOCAL_OS_AUTHENTICATION_[listener name]=OFF

 

[oracle@dbserver admin]$ vi listener.ora

# listener.ora Network Configuration File: /oracle/app/oracle/product/11.2.0.1/db_1/network/admin/listener.ora

# Generated by Oracle configuration tools.

SUBSCRIBE_FOR_NODE_DOWN_EVENT_LISTENER=OFF

LISTENER =

  (DESCRIPTION_LIST =

    (DESCRIPTION =

      (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.133.120)(PORT = 1521))

    )

  )

ADR_BASE_LISTENER = /oracle/app/oracle

#----ADDED BY TNSLSNR 11-OCT-2012 12:01:40---

PASSWORDS_LISTENER = BC15114DF0BA2BF0

#--------------------------------------------

LOCAL_OS_AUTHENTICATION_listener=OFF

 

"listener.ora" 21L, 544C written                                                                                 

重新启动Listener之后,将会只看到:

LSNRCTL> start

Starting /oracle/app/oracle/product/11.2.0.1/db_1/bin/tnslsnr: please wait...

TNSLSNR for Linux: Version 11.2.0.1.0 - Production

System parameter file is /oracle/app/oracle/product/11.2.0.1/db_1/network/admin/listener.ora

Log messages written to /oracle/app/oracle/diag/tnslsnr/dbserver/listener/alert/log.xml

Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.133.120)(PORT=1521)))

 

Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.133.120)(PORT=1521)))

STATUS of the LISTENER

------------------------

Alias                     LISTENER

Version                   TNSLSNR for Linux: Version 11.2.0.1.0 - Production

Start Date                11-OCT-2012 14:07:53

Uptime                    0 days 0 hr. 0 min. 0 sec

Trace Level               off

Security                  ON: Password

SNMP                      OFF

Listener Parameter File   /oracle/app/oracle/product/11.2.0.1/db_1/network/admin/listener.ora

Listener Log File         /oracle/app/oracle/diag/tnslsnr/dbserver/listener/alert/log.xml

Listening Endpoints Summary...

  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.133.120)(PORT=1521)))

The listener supports no services

The command completed successfully

这就又回复到了Oracle9i时的状态,只要有密码存在,无论是谁尝试停止监听都会被要求set password

回复 支持 反对

使用道具 举报

 楼主| 发表于 2012-10-11 15:15:37 | 显示全部楼层

5.验证口令已生效

LSNRCTL> status

Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.133.120)(PORT=1521)))

TNS-01169: The listener has not recognized the password

LSNRCTL> stop

Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.133.120)(PORT=1521)))

TNS-01169: The listener has not recognized the password

LSNRCTL> set password

Password:

The command completed successfully

LSNRCTL> status

Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.133.120)(PORT=1521)))

STATUS of the LISTENER

------------------------

Alias                     LISTENER

Version                   TNSLSNR for Linux: Version 11.2.0.1.0 - Production

Start Date                11-OCT-2012 14:07:53

Uptime                    0 days 0 hr. 1 min. 35 sec

Trace Level               off

Security                  ON: Password

SNMP                      OFF

Listener Parameter File   /oracle/app/oracle/product/11.2.0.1/db_1/network/admin/listener.ora

Listener Log File         /oracle/app/oracle/diag/tnslsnr/dbserver/listener/alert/log.xml

Listening Endpoints Summary...

  (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=192.168.133.120)(PORT=1521)))

Services Summary...

Service "sztech1" has 1 instance(s).

  Instance "sztech1", status READY, has 1 handler(s) for this service...

Service "sztech1XDB" has 1 instance(s).

  Instance "sztech1", status READY, has 1 handler(s) for this service...

The command completed successfully

LSNRCTL> stop

Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=192.168.133.120)(PORT=1521)))

The command completed successfully

LSNRCTL>

 

回复 支持 反对

使用道具 举报

发表于 2018-1-30 22:24:28 | 显示全部楼层
学习中。谢谢老师。
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|手机版|小黑屋|重庆思庄Oracle、Redhat认证学习论坛 ( 渝ICP备12004239号-4 )

GMT+8, 2024-4-18 22:49 , Processed in 0.113444 second(s), 20 queries .

重庆思庄学习中心论坛-重庆思庄科技有限公司论坛

© 2001-2020

快速回复 返回顶部 返回列表