在aix上安装10g crs"SPECIFY CLUSTER CONFIGURATION"界面没有列出节点

在AIX系统中安装Oracle 10g CRS遇到Specify Cluster Configuration界面未列出节点的问题。通过检查HACMP状态并安装缺失文件集,确保集群配置正确。

aix上安装10g crs"SPECIFY CLUSTER CONFIGURATION"界面没有列出节点,如下图所示并没有列出要安装rac的节点信息。下面列出了三种方法,因为我装的rac使用的是asm并不使用hacmp(而这个系统被集成商提前装好了hacmp的),所以我写在hacmp即可:

# smitty install_removeà勾选所有的含有cluster# lssrc –g cluster 检验是否卸载干净,然后可以看到节点信息。

bb

下面是参考的三种解决方法(方法2没有验证过)

1)如果用ASM,不用concurrent vg可以删除hacmp的包来解决。
2)
或者使用use cluster configuration file来添加节点,毕竟有了crs之后hacmporacle没有作用
3)
第三种方法就是这个文档,找出真正原因

CANNOT ADD NODE DETAILS IN "SPECIFY CLUSTER CONFIGURATION" OUI SCREEN [ID 754906.1]

In this Document
  Symptoms
  
Cause
  
Solution
  
References

Applies to:

Oracle Server - Enterprise Edition - Version: 10.1 to 11.1
IBM AIX Based Systems (64-bit)
CRS
RAC
HACMP

Symptoms

Installing the Oracle clusterware on top of HACMP clusterware in AIX.

In the "Specify Cluster Configuration" screen during Oracle Clusterware installation,no nodes appear in the list and the Add button icon is disabled. When HACMP is installed, the node selection screen should be predefined with the nodes of the HACMP cluster and be updatable for the network setup (vip, etc..)

cd /tmp/OraInstall2008-04-22_01-45-01PM/oui/bin/lsnodes also failing with following error.

# ./lsnodes
exec(): 0509-036 Cannot load program /tmp/OraInstall2008-04-22_01-45-01PM/oui/bin/lsnodes.bin because of the following errors:
0509-150 Dependent module libskgxn2.a(shr_skgxn2.o) could not be loaded.
0509-022 Cannot load module libskgxn2.a(shr_skgxn2.o).
0509-026 System error: A file or directory in the path name does not exist.

Cause

HACMP clusterware is already installed and configured properly.while installing the Oracle clusterware ,it does not detect the vendor clusterware present.

Run the rootpre.sh script. to check the HACMP present or not.but the output shows.

Checking if group services should be configured....
ODMDIR=/etc/objrepos, isSP= 0, isHACMP= 0
Nothing to configure.


This is not expected output if the HACMP is present.


The rootpre.sh script. tries to determine if HACMP is on with the following check:

isHACMP=`${ODMGET} -q name=cluster.es.clvm.rte lpp 2>/dev/null | wc -l`



When this check fails, the "/opt/ORCLcluster" directory never gets created since, there's no cluster detected. So when the installer tries to run lsnodes, it's missing lib files from the "/opt/ORCLcluster" directory.

Solution

Install the missing fileset ie cluster.es.clvm.rte lpp on all the nodes.

Run the below command to check the fileset is installed

lslpp -l cluster.es.clvm.rte

and re-run the rootpre.sh to check the HACMP is detecting

Oracle provides Cluster Verification Utility (CVU) to perform. system checks in preparation for installation, patch updates, or other system changes.


This will ensure that you have completed the required system configuration and preinstallation steps so that your installation, update, or patch operation completes successfully

Run the cluvfy to check all prerequisites are configured properly

./runcluvfy.sh stage -pre crsinst -n , -verbose

Make sure all OS patchsets are installed for HACMP to support Oracle Clusterware.

Please go through the below Note for Prerequisites and ceritification details for Installing Oracle clusterware on IBM AIX systems.

Note 282036.1 Minimum Software Versions and Patches Required to Support Oracle Products on IBM pSeries

For HACMP 5.4,you need to download the below patch before Installing the CRS.

i) Download the Patch 6718715

Steps to apply the patch
------------------------
1--&gt Login as root user
2--&gt Unpack the files shipped in this patch in a temporary directory
3--&gt Run the rootpre.sh script.
./rootpre.sh

http://hi.baidu.com/wa0362/blog/item/f53ea9db8791e261d1164e0d.html

http://www.loveunix.net/thread-108093-1-1.html

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/14710393/viewspace-754379/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/14710393/viewspace-754379/

内容概要:本文详细介绍了一个基于Java和Vue的联邦学习隐私保护推荐系统的设计与实现。系统采用联邦学习架构,使用户数据在本地完成模型训练,仅上传加密后的模型参数或梯度,通过中心服务器进行联邦平均聚合,从而实现数据隐私保护与协同建模的双重目标。项目涵盖完整的系统架构设计,包括本地模型训练、中心参数聚合、安全通信、前后端解耦、推荐算法插件化等模块,并结合差分隐私与同态加密等技术强化安全性。同时,系统通过Vue前端实现用户行为采集与个性化推荐展示,Java后端支撑高并发服务与日志处理,形成“本地训练—参数上传—全局聚合—模型下发—个性化微调”的完整闭环。文中还提供了关键模块的代码示例,如特征提取、模型聚合、加密上传等,增强了项目的可实施性与工程参考价值。 适合人群:具备一定Java和Vue开发基础,熟悉Spring Boot、RESTful API、分布式系统或机器学习相关技术,从事推荐系统、隐私计算或全栈开发方向的研发人员。 使用场景及目标:①学习联邦学习在推荐系统中的工程落地方法;②掌握隐私保护机制(如加密传输、差分隐私)与模型聚合技术的集成;③构建高安全、可扩展的分布式推荐系统原型;④实现前后端协同的个性化推荐闭环系统。 阅读建议:建议结合代码示例深入理解联邦学习流程,重点关注本地训练与全局聚合的协同逻辑,同时可基于项目架构进行算法替换与功能扩展,适用于科研验证与工业级系统原型开发。
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符  | 博主筛选后可见
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值