问题描述:在Grid环境中,如果修改了主机名,启动Grid时会出现如下错误:[grid@sztest ~]$ sqlplus / as sysasm SQL*Plus: Release 12.1.0.2.0 Production on Wed Apr 15 20:42:27 2020 Copyright (c) 1982, 2014, Oracle. All rights reserv
转载 2021-04-27 18:52:09
2024阅读
2评论
/*一个he都没有和有一个he结果是12个he 是23个he 34个he 55个he 8。。。。。把每段的结果相乘取余*/#include#include#define N 10007int f[11000];int main() {int t,i,j,k,n,m,sum,count=0,le...
转载 2013-11-04 19:47:00
17阅读
HeheTime Limit: 2000/1000 MS (Java/Others)Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 355Accepted Submission(s): 202Problem DescriptionAs we all know, Fat Brother likes MeiZi every much, he always find some topic to talk with her. But as Fat Brother is so low profile that no one kn
转载 2013-08-01 23:44:00
26阅读
2评论
http://acm.hdu.edu.cn/showproblem.php?pid=4639统计连续he的数量恰为斐波序列 不同块进行相乘 1 #include 2 #include 3 #include 4 #include 5 #include 6 #define mod 10007 7 using namespace std; 8 char ss[11000]; 9 int f[11000];10 int main()11 {12 int t,i,k,kk=0;13 cin>>t;14 f[1] = 1;f[2] = 2;15 for(i = 3; i ...
转载 2013-08-04 12:38:00
41阅读
2评论
题意:每一个“hehe”子串都可以看成另一个意思,问一个句子最多能有多少个意思 解题思路:dp,如果有连续的hehe  把每个hehe当成一个石头,那么就可以抽象成从n个连续的时候中抽出k个石头,且两两不相邻,对于从第二个石头开始的石头,他的结果取决于 取或不取 它前面那个石头的结果  所以    dp[1][i] = d[2][i-1] ; dp[2][i] = d[1][i-1]  所以 dp
转载 2013-08-02 17:45:00
43阅读
2评论
今天在安装rac是报错,按照下面方法解决了vip问题察看crs/bin/racgvip文件[root@inth-rac02 oracle]# /opt/crs/product/10.2.0.1/crs_1/bin/racgvipThere is no VIP name[root@inth-rac02 oracle]# /opt/crs/product/10.2.0.1/crs_1/bin/oifc
转载 精选 2013-07-02 16:04:21
793阅读
I was installing Clusterware using ASM on VMware shared disks.  When I created the independent persistent virtual disks, I left the “allocate all disk space now” option unselected. Oracleasm
原创 2016-03-10 22:53:31
3703阅读
安装GRID 执行root脚本报错 CRS-2672: Attempting to start 'ora.evmd' on 'terdb'CRS-2672: Attempting to start 'ora.mdnsd' on 'terdb'CRS-2676: Start of 'ora.mdnsd
原创 2022-07-16 01:43:37
583阅读
    上周有机会去培训了cisco的CRS和IOS XR,讲师还是cisco的,感觉还不错,只可惜试验台才用了一周就被关闭了,只能等着公司的2+2上加电的时候再搞了。有兴趣的兄弟可以交流交流。
原创 2010-10-16 16:52:03
1013阅读
RAC root.sh Oracle CRS stack is already configured and will be running under init(1M) 的解决方法 2011-04-11 14:53:18| 分类: Linux | 标签: |字号大中小 订阅     RAC 在安装时意外中断, 重新安装clusterware 软件, 安装过程中没有
转载 2011-12-18 15:39:13
533阅读
对于unknown的进程要crs_stop -f 加进程名杀掉,后在star1   删除机器上的/etc/oracle/scls_scr/rac1/oracle/cssfatal 文件  如果不删这个文件,运行root.sh 脚本时会报错。  然后重新运行下$ORA_CRS_HOME/root.sh脚本2 有时候开机启不起来 可以先杀了这个进程试下/etc/init.
crs
原创 2014-09-02 09:03:38
1448阅读
CRS-0184错误与CRS初始化bash-2.05$ iduid=101(oracle) gid=101(dba)bash-2.05$ crs_start -allCRS-0184: Cannot c
原创 2022-09-16 16:12:34
349阅读
在node1节点发现如下问题[grid@node1 ~]$ crs_stat -tCRS-0184: Cannot communicate with the CRS daemon.而在node2节点,运行正常。[grid@node2 ~]$ crs_stat -tName Type Target State Host ...
crs
原创 2021-07-28 10:41:00
1179阅读
 安装好sles 10 sp3 + Oracle 10g RAC之后,在配置监听器时,总是提示主机bo2dbp上的监听服务已经在运行,忽略错误之后手动在bo2dbp节点上启,总是收到TNS-12545: Connect failed because target host or object does not exist错误信息。后来发现节点bo2dbp的vip总是漂移到另一节点bo2
原创 2013-09-11 10:29:35
546阅读
1、启动crs报错问题处理 [root@msrkzyk2 ~]# /u01/grid/11.2/bin/crsctl start crs CRS-4640: Oracle High Availability Services is already active CRS-4000: Command S ...
转载 2021-09-07 17:16:00
1934阅读
2评论
# 如何实现 CRS RAC 架构:新手指南 在现代数据库系统中,CRS (Cluster Ready Services) 和 RAC (Real Application Clusters) 能够提供高可用性和负载均衡的能力。对于刚入行的开发者来说,实现 CRS RAC 架构可能听起来有些复杂。本文将为你详细介绍实现的流程,并提供逐步说明,确保你能够掌握这一技能。 ## 实现流程概览 为帮助
原创 8月前
60阅读
 早上过来,启动rac ,节点1出现了CRS-0184的错误; [grid@node1 ~]$ crs_stat -t -vCRS-0184: Cannot communicate with the CRS daemon.而节点2都是正常的 网上找到一个比较简单的方法在/tmp/和/var/tmp 下面有个.oracle 的目录,删除掉或许能解决问题;登录节点1 ,在 /
原创 2013-05-09 08:59:09
10000+阅读
<br /> <br />Oracle 11gR2 下RAC 安装后,启动CRS. 错误如下:<br /> <br /
原创 2022-09-01 22:29:13
238阅读
 Top 5 Grid Infrastructure Startup Issues (文档 ID 1368382.1)  In this Document  PurposeScopeDetails Issue #1: CRS-4639: Could not contact Oracle High Availability Services, ohasd.bin not running or
MOS
原创 2021-04-10 19:05:23
689阅读
Oracle 11gR2 下RAC 安装后,启动CRS. 错误如下:[root@rac1 bin]# ./crsctl check crsCRS-4638: Oracle High Availability Services is onlineCRS-4535: Cannot communicate with Cluster Ready ServicesCRS-4529: Cluster Syn
转载 2010-11-18 17:10:00
125阅读
2评论
  • 1
  • 2
  • 3
  • 4
  • 5