目录
DBT-10317&DBT-10328&DBT-10331
CRS-6706
DBT-10317&DBT-10328&DBT-10331
场景:安装数据库时报错(包括图形化安装)
[FATAL] [DBT-10317] Specified GDB Name (orcl) already exists.
ACTION: Specify a different GDB Name that does not already exist.
[WARNING] [DBT-10328] Specified GDB Name (orcl) may have a potential conflict with an already existing database on the system.
ACTION: Specify a different GDB Name that does not conflict with existing databases on the system.
[WARNING] [DBT-10331] Specified SID Prefix (orcl) may have a potential conflict with an already existing database on the system.
CAUSE: The specified SID Prefix without the trailing numeric characters (orcl) may have a potential conflict with an already existing database on the system.
ACTION: Specify a different SID Prefix that does not conflict with existing databases on the system.
原因:数据库没有清理干净
解决方案:
[oracle@rac1 ~]$ srvctl config database
orcl
[oracle@rac1 ~]$ srvctl remove database -d orcl
Remove the database orcl? (y/[n]) yes
CRS-6706
场景:打补丁打到一半断网了,然后启动crs报错
CRS-6706: Oracle Clusterware Release patch level ('4143651057') does not match Software patch level ('0'). Oracle Clusterware cannot be started.
CRS-4000: Command Start failed, or completed with errors.
原因:本地patch level与集群patch level不一样
crsctl query crs releasepatch
crsctl query crs softwarepatch
解决方案:继续手动应用补丁
1.以root用户运行,完成后台的补丁设置
#GI_HOME/bin:>./clscfg -localpatch
2.以root用户运行,锁定GI_HOME
#GI_HOME/crs/install:>./rootcrs.sh -lock
3.以root用户启动crs
#GI_HOME/bin:>./crsctl start crs
发布评论