http://hunt1574.blog.51cto.com/1390776/857841

1、官方说明:
SQLNET.AUTHENTICATION_SERVICES
Purpose
Use the parameter SQLNET.AUTHENTICATION_SERVICES to enable one or more authentication services. If authentication has been installed, it is recommended that this parameter be set to either none or to one of the authentication methods.
Default
None
Values
Authentication Methods Available with Oracle Net Services:
·         none for no authentication methods. A valid username and password can be used to access the database.
·         all for all authentication methods
·         nts for Windows NT native authentication
2、测试:
可以通过对SQLNET.AUTHENTICATION_SERVICES值进行修改查看其影响。
WINDOWNS:
A. 无sqlnet.ora文件:
 
E:\oracle\product\10.2.0\db_1\NETWORK\ADMIN>dir sqlnet.ora
 驱动器 E 中的卷没有标签。
 卷的序列号是 1CF8-89BB
E:\oracle\product\10.2.0\db_1\NETWORK\ADMIN 的目录
找不到文件
E:\oracle\product\10.2.0\db_1\NETWORK\ADMIN>
                             E:\oracle\product\10.2.0\db_1\NETWORK\ADMIN>sqlplus "/ as sysdba"
SQL*Plus: Release 10.2.0.1.0 - Production on 星期二 5月 8 20:45:35 2012
Copyright (c) 1982, 2005, Oracle. All rights reserved.
ERROR:
ORA-01031: 权限不足
请输入用户名:
B.    SQLNET.AUTHENTICATION_SERVICES=(NONE)
 
E:\oracle\product\10.2.0\db_1\NETWORK\ADMIN>dir sqlnet.ora
 驱动器 E 中的卷没有标签。
 卷的序列号是 1CF8-89BB
 E:\oracle\product\10.2.0\db_1\NETWORK\ADMIN 的目录
2012-05-08 20:48               266 sqlnet.ora
               1 个文件            266 字节
               0 个目录 1,969,827,840 可用字节
E:\oracle\product\10.2.0\db_1\NETWORK\ADMIN>type sqlnet.ora
# This file is actually generated by netca. But if customers choose to
# install "Software Only", this file wont exist and without the native
# authentication, they will not be able to connect to the database on NT.
SQLNET.AUTHENTICATION_SERVICES = (NONE)
E:\oracle\product\10.2.0\db_1\NETWORK\ADMIN>sqlplus "/ as sysdba"
SQL*Plus: Release 10.2.0.1.0 - Production on 星期二 5月 8 20:48:53 2012
Copyright (c) 1982, 2005, Oracle. All rights reserved.
ERROR:
ORA-01031: 权限不足
请输入用户名:
C.    SQLNET.AUTHENTICATION_SERVICES=(ALL)
 
E:\oracle\product\10.2.0\db_1\NETWORK\ADMIN>type sqlnet.ora
# This file is actually generated by netca. But if customers choose to
# install "Software Only", this file wont exist and without the native
# authentication, they will not be able to connect to the database on NT.
SQLNET.AUTHENTICATION_SERVICES = (ALL)
E:\oracle\product\10.2.0\db_1\NETWORK\ADMIN>sqlplus "/ as sysdba"
SQL*Plus: Release 10.2.0.1.0 - Production on 星期二 5月 8 20:51:28 2012
Copyright (c) 1982, 2005, Oracle. All rights reserved.
ERROR:
ORA-12641: 验证服务无法初始化
请输入用户名:
D.    SQLNET.AUTHENTICATION_SERVICES=(NTS)
 
E:\oracle\product\10.2.0\db_1\NETWORK\ADMIN>type sqlnet.ora
# This file is actually generated by netca. But if customers choose to
# install "Software Only", this file wont exist and without the native
# authentication, they will not be able to connect to the database on NT.
SQLNET.AUTHENTICATION_SERVICES = (NTS)
E:\oracle\product\10.2.0\db_1\NETWORK\ADMIN>sqlplus "/ as sysdba"
SQL*Plus: Release 10.2.0.1.0 - Production on 星期二 5月 8 20:53:49 2012
Copyright (c) 1982, 2005, Oracle. All rights reserved.
连接到:
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
With the Partitioning, OLAP and Data Mining options
SQL>

转载于:https://www.cnblogs.com/sumsen/archive/2012/11/20/2778530.html

理解SQLNET.AUTHENTICATION_SERVICES参数|转|相关推荐

  1. 理解SQLNET.AUTHENTICATION_SERVICES参数

    理解SQLNET.AUTHENTICATION_SERVICES参数 1.官方说明: SQLNET.AUTHENTICATION_SERVICES Purpose Use the parameter ...

  2. oracle authentication_services,理解SQLNET.AUTHENTICATION_SERVICES参数

    理解SQLNET.AUTHENTICATION_SERVICES参数 1.官方说明: SQLNET.AUTHENTICATION_SERVICES Purpose Use the parameter ...

  3. [20180123]测试SQLNET.EXPIRE_TIME参数.txt

    [20180123]测试SQLNET.EXPIRE_TIME参数.txt --//曾经写过一篇linux内核网络参数测试tcp_keepalive,链接http://blog.itpub.net/26 ...

  4. [20180124]测试SQLNET.EXPIRE_TIME参数3

    [20180124]测试SQLNET.EXPIRE_TIME参数3.txt --//昨天测试SQLNET.EXPIRE_TIME参数时,链接如下: http://blog.itpub.net/2672 ...

  5. oracle authentication_services,SQLNET.AUTHENTICATION_SERVICES= (NTS) 解释

    标题所代表的意思为 使用操作系统本地验证,一般不用,有安全问题.通常需要改成下面的值: SQLNET.AUTHENTICATION_SERVICES= (NONE) 1. 这样就不允许使用操作系统本地 ...

  6. 【转载】SQLNET.AUTHENTICATION_SERVICES

    $ORACLE_HOME/network/admin/sqlnet.ora 如果使用了SQLNET.AUTHENTICATION_SERVICES=(NTS) 则说明可以使用OS认证就,只要conn ...

  7. jvm内存参数配置_idea中设置JVM参数,简单理解JVM常见参数,JVM调优简单入门

    前面学习了JVM的内存分布,今天就来验证下.顺便通过测试学习一下JVM的几个参数,不过测试是在idea中,所以先要在idea上设置JVM参数. 一.idea设置全局的JVM参数 一共三步,第一步在菜单 ...

  8. 从像素坐标到相机坐标_多视图几何基础——深入理解相机内外参数

    上一篇:前言(comming soon) 关键词:相机模型,多视图几何,相机内参数,相机外参数,skew畸变 1. 针孔相机模型 Figure 1 针孔相机模型是一种理想化的简单相机模型,也是成像的最 ...

  9. 再理解公用colorbar参数

    关于共用colorbar的设置 纠正 之前写过一篇关于公用colorbar的博文,虽说当时已经觉得没问题,但后再次遇见同样的问题,深入思考之后,发现确实有误,希望不要误导他人才好. [原文地址] ht ...

最新文章

  1. 求求你别再用 System.out.println 了!!
  2. ASP中的工具类函数收集
  3. Python 技术篇-基于PyHook3+threading多线程实现鼠标单击事件和双击事件的识别实例演示
  4. mysql @变量和变量的区别及怎么判断记录唯一性
  5. vue.js 删除指定元素_vue.js删除动态绑定的radio的指定项
  6. 谷歌SEO和百度SEO的区别
  7. 衡量时间序列相似度的方法:从欧氏距离到DTW及其变种
  8. 征战蓝桥 —— 题解目录
  9. [FAQ]VC读取数据源列表和驱动程序列表
  10. 在ECR上推送Spring Boot Docker映像
  11. android 访问服务器sql_一次服务器被传webshell事件溯源
  12. R语言中识别和去除重复行
  13. 幸运的袋子(深度优先遍历(Depth First Search,DFS))
  14. 转:python命令行解析工具Argparse
  15. 麻省理工计算机相关网络课程,麻省理工MIT计算机课程表
  16. 在Ubuntu中搭建KMS服务器
  17. 基于node搭建前端服务器,nodejs做微信小程序后端
  18. couldn‘t find “libijkffmpeg.so“
  19. 各Linux发行版的比较
  20. OC8051内部逻辑分析(1)

热门文章

  1. QT串口2--控制GSM模块的使用
  2. SQLite自增关键字报错(near “AUTO_INCREMENT“: syntax error)
  3. aba会导致问题_护发素会导致掉发?这个纠结多年的问题,真相原来是这回事
  4. 发表论文的十条金玉良言
  5. CVPR 2018 DEDT:《Efficient Diverse Ensemble for Discriminative Co-Tracking》论文笔记
  6. uvalive5096(积分题)
  7. 阿里云MySQL按流量计费吗_阿里云服务器按使用流量计费带宽峰值1M和100M费用方面有区别吗?...
  8. 两种解法-树形dp+二分+单调队列(或RMQ)-hdu-4123-Bob’s Race
  9. ThreadLocal的意义和实现
  10. Flask入门flask-script 蓝本 钩子函数(三)