博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
oracle rman.exe 文件丢失 拷贝rman.exe 报 ora-01031错误
阅读量:6212 次
发布时间:2019-06-21

本文共 1440 字,大约阅读时间需要 4 分钟。

今天启动数据库发现本机数据库无法启动。

打开alter日志文件,发现flash_recovery_area 文件已满,发现使用率是100%,

于是决定删除过期的归档日志

>rman 

rman 不是内部命令,

到oracle文件目录里找bin文件夹下的rman.exe ,发现rman.exe文件丢失,

于是从另一台好使的oracle文件里拷贝rman.exe文件到本机。

>rman 

>connect target/

报错误:rman-00571

           rman-00569 

           rman-00571

           ora-01031

原因分析,查了一下ORACLE的原文(来源于网上)

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

Windows NT native authentication

An authentication method that enables a client single login access to a Windows NT server and a database running on the server.

原来这个认证方法是WINDOWS系列操作系统特有的,UNIX/LINUX不需要,或者根本不能设为NTS,仔细看ORACLE的配置手册,总结几点如下

1.在windows下,SQLNET.AUTHENTICATION_SERVICES必须设置为NTS或者ALL才能使用OS认证;

2.windows下不设置或者设置为其他任何值都不能使用OS认证。
3.在unix/linux下,在SQLNET.AUTHENTICATION_SERVICES的值设置为ALL,或者不设置的情况下,OS验证才能成功;
4.在unix/linux下设置为其他任何值都不能使用OS认证。

发现本机的sqlnet.ora 的认证方式是 NONE

于是注销修改为

SQLNET.AUTHENTICATION_SERVICES=(NTS) 

>rman

>connect target/

已连接到目标数据库(未启动)

 

 

转载于:https://www.cnblogs.com/umlzhang/archive/2012/12/28/2836771.html

你可能感兴趣的文章
java 8 学习二(Lambda表达式)
查看>>
java 的守护进程脚本
查看>>
第三回 基础才是重中之重——派生类集合与基类集合可以相互转换吗?
查看>>
苹果推荐代码习惯
查看>>
Linux tcpdump命令详解
查看>>
nginx多tomcat负载均衡
查看>>
poj 1330
查看>>
python GUI编程 (一) (基于PyQt5)
查看>>
ORB
查看>>
link和@import的区别
查看>>
webservice调试时遇 soap缓存问题
查看>>
嘛,怎么说。
查看>>
互联网世界的“人工智能”——探秘“深度学习”的前世今生
查看>>
《go语言程序设计》学习(九)
查看>>
改变RadioButton的文字位置以及距离
查看>>
选择客栈 NOIP2011提高组D1T2 单调队列 前缀和
查看>>
Python struct
查看>>
11/5/2018模拟 Problem C
查看>>
zabbix 监控iptables
查看>>
c# 迭代
查看>>