mandatory argument 'crshome' is missing

1. 错误信息

在oracle  10.2.0.4 to 11.1.0.6 的各个版本中,尽管变量ORA_CRS_HOME设置正确,也会遇到如下错误:

# ./diagcollection.pl -collect
Production Copyright 2004, 2005, Oracle. All rights reserved
Cluster Ready Services (CRS) diagnostic collection tool
Mandatory argument ‘crshome’ is missing.

2. 问题确认

This is a known bug:
Bug 6899547 – DIAGCOLLECTION.PL FAILS WITH MANDATORY ARGUMENT ‘CRSHOME’ IS MISSING

3. 解决方案

Workaround:
The workaround is simply to add the crs home to the command as follows:

#export ORACLE_HOME=/u01/oracle/app/oracle/product/10.2.0/db
#export ORA_CRS_HOME=/u01/oracle/app/oracle/product/10.2.0/crs
#./diagcollection.pl --collect --all --crshome $ORA_CRS_HOME

This bug affects 10.2.0.4 and 11.1.0.6 releases for all platforms. This bug has been fixed in 11.1.0.7.

mandatory argument 'crshome' is missing

原文地址:https://www.cnblogs.com/halberd-lee/p/11069935.html

时间: 2024-10-12 03:21:24

mandatory argument 'crshome' is missing的相关文章

Python更多控制流工具(二)

4.6. Defining Functions We can create a function that writes the Fibonacci series to an arbitrary boundary: 我们创建一个斐波那契数列的函数: >>> def fib(n): # write Fibonacci series up to n ... """Print a Fibonacci series up to n."""

使用Spring Security和OAuth2实现RESTful服务安全认证

这篇教程是展示如何设置一个OAuth2服务来保护REST资源. 源代码下载github. (https://github.com/iainporter/oauth2-provider)你能下载这个源码就开始编写一个被OAuth方法保护的服务.该源码包含功能: * 用户注册和登录* Email验证* Password 丢失 采取的技术有以下: * OAuth2 Protocol * spring Security * Spring Integration * Spring Data * Jerse

Android source目录添加编译工程脚本(含ccache)

将此脚本置于android 工程源码根目录,即可用此脚本起build,且取名为compile.sh #!/bin/bash # # Copyright (c) 2012, The Linux Foundation. All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the fo

openssl生成证书链多级证书

环境centos6.5 初始化 /etc/pki/tls/openssl.cnf rm -rf /etc/pki/CA/*.old touch /etc/pki/CA/index.txt echo 01 > /etc/pki/CA/serial echo 02 > /etc/pki/CA/serial rm -rf keys mkdir keys 生成根CA并自签(Common Name填RootCA) openssl genrsa -des3 -out keys/RootCA.key 204

Javascript常用的简写技术有哪些?

本文和大家分享的主要是javascript 中常用的 19 个简写技术,一起来看看吧吗,希望对大家 学习javascript有所帮助. 1.三元操作符 当想写  if...else  语句时,使用三元操作符来代替. const x = 20; let answer; if (x > 10) { answer = 'is greater'; }  else { answer = 'is lesser'; } 简写: const answer = x > 10 ? 'is greater' : '

使用linux自建证书(ios强制https 微信小程序强制https 本地开发环境)

前言:  作为一个运维人员不背锅,谁背呢! 正文: 现在都要https了,很多童鞋也痛苦本地该如何搭建https环境,网上一搜 一搜一大把,但是使用就...... 今天在这里笔者就教大家一步一步使用linux搭建本地的https环境...因我司使用的nginx 所以接口相关的服务端配置 也只列出nginx 的配置接下来看笔者如何一步一步弄好https.(可以调用openssl命令雷同!) 假设我司有alp环境,bet环境 我司线上域名为test.com 对应的则为 test.alp test.b

ORACLE PL/SQL异常处理(Exception)学习笔记

1.PL/SQL错误类型 错误类型 报告者 处理方法 编译时错误 PL/SQL编译器 交互式地处理:编译器报告错误,你必须更正这些错误 运行时错误 PL/SQL运行时引擎 程序化地处理:异常由异常处理子程序引发并进行捕获 2.异常的声明 有两种异常:用户自定义异常和预定义异常 用户自定义异常就是由程序员自己定义的一个错误.该错误还不是非常重要,所以并没有将整个错误包含在Oracle的错误中.例如,它可能是一个与数据有关的错误.而预定义异常则对应于一般的SQL和PL/SQL错误. 用户自定义异常是

JavaScript 常用的简写技巧

1. 三元运算符 当你想用一行代码来写if...else语句的时候,使用三元操作符是非常好的选择,例如: const x = 20; let answer; if (x > 10) { answer = 'is greater'; } else { answer = 'is lesser'; } 1 2 3 4 5 6 7 1 2 3 4 5 6 7 可以简写为: const answer = x > 10 ? 'is greater' : 'is lesser'; 1 1 也可以嵌套if语句

19 个 JavaScript 常用的简写技术

1.三元操作符 当想写if...else语句时,使用三元操作符来代替. const x = 20;let answer;if (x > 10) { answer = 'is greater';} else { answer = 'is lesser';} 简写: const answer = x > 10 ? 'is greater' : 'is lesser'; 也可以嵌套if语句: const big = x > 10 ? " greater 10" : x 2.