|
下面这个命令我只看到了前两个检查结果。
[oracle@rac1 cluvfy]$ ./runcluvfy.sh stage -pre crsinst -n rac1,rac2 -verbose
Performing pre-checks for cluster services setup
Checking node reachability...
Check: Node reachability from node "rac1"
Destination Node Reachable?
------------------------------------ ------------------------
rac2 yes
rac1 yes
Result: Node reachability check passed from node "rac1".
Checking user equivalence...
Check: User equivalence for user "oracle"
Node Name Comment
------------------------------------ ------------------------
rac2 passed
rac1 passed
Result: User equivalence check passed for user "oracle".
Pre-check for cluster service setup was unsuccessful on all the nodes.
执照文档,后来是该显示:
Checking administrative privileges...
Check: Existence of user "oracle"
Node Name User Exists Comment
------------ ------------------------ ------------------------
rac2 yes passed
rac1 yes passed
Result: User existence check passed for "oracle".
Check: Existence of group "oinstall"
Node Name Status Group ID
------------ ------------------------ ------------------------
rac2 exists 500
rac1 exists 500
Result: Group existence check passed for "oinstall".
。。。
我后面这些检查看来都没有检查通过啊。
可我这些用户和组都存在啊:
[root@rac1 ~]# id nobody
uid=99(nobody) gid=99(nobody) groups=99(nobody)
Rac中,所有节点的oracle相关组和用户保持一致,包括名称、ID、密码。
在rac1执行id –a oracle,把oracle的相关信息打印出来:
[root@rac1 ~]# id -a oracle
uid=200(oracle) gid=500(oinstall) groups=500(oinstall),501(dba)
问题会在哪呢? |
|