oracle sysdba级用户的认证方式

发布时间:2017-03-24 00:00:00 编辑:小静 手机版

  经过系统化的实训,让这部分人群能够迅速掌握Oracle最新的核心技术,并能胜任企业大型数据库管理、维护、开发工作。下面是小编整理的关于oracle sysdba级用户的认证方式,欢迎大家参考!

  Oracle对于普通账户和超级管理员(指sysdba和sysoper)的认证机制不一样,前者是通过数据字典,后者主要是通过操作系统验证和密码文件验证。因此一般提到操作系统认证或密码文件认证,针对的都是超级管理员的认证。

  操作系统认证

  对于操作系统认证,其实蛮简单的,只需要将该用户添加到dba(针对sysdba权限)或oper(针对sysoper权限)组中,就可以使用 "sqlplus / as sysdba"方式登陆

  在Linux环境下,可通过以下命令添加属组:usermod -g dba test -->>test是用户名

  能否使用操作系统身份认证,取决于$ORACLE_HOME/network/admin/sqlnet.ora中SQLNET.AUTHENTICATION_SERVICES的取值。

  SQLNET.AUTHENTICATION_SERVICES = none | all | ntf(windows)

  none : 表示关闭操作系统认证,只能密码认证。

  all : 操作系统认证和密码认证均可。

  nts : 用于windows平台。

  当 SQLNET.AUTHENTICATION_SERVICES = none时,会报以下错误:

  [oracle@node1 admin]$ sqlplus / as sysdba

  SQL*Plus: Release 11.2.0.4.0 Production on Fri Jan 9 23:14:18 2015

  Copyright (c) 1982, 2013, Oracle. All rights reserved.

  ERROR:

  ORA-01017: invalid username/password; logon denied

  若用密码登陆则没有问题

  [oracle@node1 admin]$ sqlplus sys/oracle as sysdba

  SQL*Plus: Release 11.2.0.4.0 Production on Fri Jan 9 23:17:31 2015

  Copyright (c) 1982, 2013, Oracle. All rights reserved.

  Connected to:

  Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - Production

  With the Partitioning, Automatic Storage Management, OLAP, Data Mining

  and Real Application Testing options

  SQL>

  密码文件认证

  这种方式在实际环境中较为普遍,利用的是orapwd工具创建密码文件。

  在密码文件认证中,有一个参数十分重要:remote_login_passwordfile,该参数有三个值,默认为exclusive

  none----不使用密码文件认证

  exclusive---需要密码文件认证 自己独占使用

  shared ---需要密码文件认证 不同实例dba用户可以共享密码文件

  密码文件的默认位置为:$ORACLE_HOME/dbs

  密码文件的查找顺序:orapw --> orapw --> Failure

  所以在创建密码文件时filename只能为orapw或者orapw

  外部认证(External Authentication)

  若对用户采用外部认证,则只有用户的账号由Oracle管理,密码和用户登录的认证则通过外部服务来管理。外部认证常见的有操作系统认证和网络认证。

  外部认证之操作系统身份验证

  此技术使用与操作系统用户同样的名称创建Oracle用户,但前面加上了os_authent_prefix参数指定的字符串,默认为ops$,下面我们来看看官档对该参数的说明:

  OS_AUTHENT_PREFIX specifies a prefix that Oracle uses to authenticate users attempting to connect to the server. Oracle concatenates the value of this parameter to the beginning of the user's operating system account name. When a connection request is attempted, Oracle compares the prefixed username with Oracle usernames in the database.

下页更精彩: 1 2 下一页 尾页
本文已影响861
+1
0