我们以vitrualbox为例,给12c的RAC添加一个节点。主要步骤是:
1 2 3 4 |
1.检查新加节点物理需求 2.用$GRID_HOME/addnode/addnode.sh添加grid软件和配置grid 3.用$ORACLE_HOME/addnode/addnode.sh添加database软件 4.添加database到grid中。 |
我们先关闭虚拟机中的2节点RAC,对其中一个节点反击右键,复制一份。
复制完成后,清除一下原有的grid和database的信息,包括软件目录,inventory,/var下面的一下目录,oratab,/etc/init.d下的一些关于gi随机启动的服务等等(关键字,crs,ohas,tfa)。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
清理复制出来的共享盘(注,不是原来节点1和节点2的共享盘!!): dd if=/dev/zero of=/dev/sdb bs=1024k count=50 dd if=/dev/zero of=/dev/sdb1 bs=1024k count=50 dd if=/dev/zero of=/dev/sdc bs=1024k count=50 dd if=/dev/zero of=/dev/sdc1 bs=1024k count=50 dd if=/dev/zero of=/dev/sdd bs=1024k count=50 dd if=/dev/zero of=/dev/sdd1 bs=1024k count=50 dd if=/dev/zero of=/dev/sde bs=1024k count=50 dd if=/dev/zero of=/dev/sde1 bs=1024k count=50 清理软件目录和其他信息: rm -rf /etc/oracle rm -rf /var/tmp/.oracle rm -rf /etc/oraInst.loc rm -rf /etc/init/oracle-ohasd.conf rm -rf /etc/oratab rm -rf /etc/udev/rules.d/99-oracle-asmdevices.rules rm -rf /etc/init.d/ohasd 清除随机启动的服务: rm -rf /etc/rc.d/rc1.d/K15ohasd rm -rf /etc/rc.d/rc0.d/K15ohasd rm -rf /etc/rc.d/rc6.d/K15ohasd rm -rf /etc/rc.d/rc4.d/K15ohasd rm -rf /etc/rc.d/init.d/init.ohasd rm -rf /etc/rc.d/init.d/ohasd rm -rf /etc/rc.d/rc2.d/K15ohasd rm -rf /etc/rc.d/rc5.d/S96ohasd rm -rf /etc/rc.d/rc3.d/S96ohasd |
检查共享存储:
1 2 3 4 5 6 |
Z:\Oralce_Virtual_Box\ol6-12102-rac>ls -l total 41959424 -rwxrwxrwa 1 Administrators None 5370806272 Aug 10 18:06 12102_rac1-disk2.vdi -rwxrwxrwa 1 Administrators None 5370806272 Aug 10 18:06 12102_rac1-disk3.vdi -rwxrwxrwa 1 Administrators None 5370806272 Aug 10 18:06 12102_rac1-disk4.vdi -rwxrwxrwa 1 Administrators None 5370806272 Aug 10 18:06 12102_rac1-disk5.vdi |
attach共享存储到rac3节点:
1 2 3 4 5 |
Z:\Oralce_Virtual_Box\ol6-12102-rac>VBoxManage storageattach 12102-rac3 --storagectl "SATA" --port 1 --device 0 --type hdd --medium 12102_rac1-disk2.vdi --mtype shareable Z:\Oralce_Virtual_Box\ol6-12102-rac>VBoxManage storageattach 12102-rac3 --storagectl "SATA" --port 2 --device 0 --type hdd --medium 12102_rac1-disk3.vdi --mtype shareable Z:\Oralce_Virtual_Box\ol6-12102-rac>VBoxManage storageattach 12102-rac3 --storagectl "SATA" --port 3 --device 0 --type hdd --medium 12102_rac1-disk4.vdi --mtype shareable Z:\Oralce_Virtual_Box\ol6-12102-rac>VBoxManage storageattach 12102-rac3 --storagectl "SATA" --port 4 --device 0 --type hdd --medium 12102_rac1-disk5.vdi --mtype shareable Z:\Oralce_Virtual_Box\ol6-12102-rac> |
打开主机,将这些共享盘以udev的方式加入到随机启动中:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
[root@12102-rac3 ~]# /sbin/scsi_id -g -u -d /dev/sdb 1ATA_VBOX_HARDDISK_VBe3484a98-a77aaec1 [root@12102-rac3 ~]# /sbin/scsi_id -g -u -d /dev/sdc 1ATA_VBOX_HARDDISK_VB9d897555-1b30e790 [root@12102-rac3 ~]# /sbin/scsi_id -g -u -d /dev/sdd 1ATA_VBOX_HARDDISK_VB2a6662eb-b04f8b6b [root@12102-rac3 ~]# /sbin/scsi_id -g -u -d /dev/sde 1ATA_VBOX_HARDDISK_VBcbeec833-3107d8f3 [root@12102-rac3 ~]# [root@12102-rac3 ~]# [root@12102-rac3 ~]# [root@12102-rac3 ~]# cd /etc/udev [root@12102-rac3 udev]# cd ru* [root@12102-rac3 rules.d]# ls 55-usm.rules 60-vboxadd.rules 90-alsa.rules 99-fuse.rules 60-fprint-autosuspend.rules 70-persistent-cd.rules 90-hal.rules 99-oracle-asmdevices.rules 60-pcmcia.rules 70-persistent-net.rules 97-bluetooth-serial.rules 60-raw.rules 70-persistent-net.rules.bak 98-kexec.rules [root@12102-rac3 rules.d]# [root@12102-rac3 rules.d]# [root@12102-rac3 rules.d]# cat 99-oracle-asmdevices.rules KERNEL=="sd?1", BUS=="scsi", PROGRAM=="/sbin/scsi_id -g -u -d /dev/$parent", RESULT=="1ATA_VBOX_HARDDISK_VBe3484a98-a77aaec1", NAME="asm-disk1", OWNER="oracle", GROUP="dba", MODE="0660" KERNEL=="sd?1", BUS=="scsi", PROGRAM=="/sbin/scsi_id -g -u -d /dev/$parent", RESULT=="1ATA_VBOX_HARDDISK_VB9d897555-1b30e790", NAME="asm-disk2", OWNER="oracle", GROUP="dba", MODE="0660" KERNEL=="sd?1", BUS=="scsi", PROGRAM=="/sbin/scsi_id -g -u -d /dev/$parent", RESULT=="1ATA_VBOX_HARDDISK_VB2a6662eb-b04f8b6b", NAME="asm-disk3", OWNER="oracle", GROUP="dba", MODE="0660" KERNEL=="sd?1", BUS=="scsi", PROGRAM=="/sbin/scsi_id -g -u -d /dev/$parent", RESULT=="1ATA_VBOX_HARDDISK_VBcbeec833-3107d8f3", NAME="asm-disk4", OWNER="oracle", GROUP="dba", MODE="0660" [root@12102-rac3 rules.d]# /sbin/udevadm control --reload-rules [root@12102-rac3 rules.d]# /sbin/start_udev Starting udev: [ OK ] [root@12102-rac3 rules.d]# [root@12102-rac3 rules.d]# ls -al /dev/asm* brw-rw----. 1 oracle dba 8, 17 Aug 10 17:19 /dev/asm-disk1 brw-rw----. 1 oracle dba 8, 33 Aug 10 17:19 /dev/asm-disk2 brw-rw----. 1 oracle dba 8, 49 Aug 10 17:19 /dev/asm-disk3 brw-rw----. 1 oracle dba 8, 65 Aug 10 17:19 /dev/asm-disk4 [root@12102-rac3 rules.d]# |
检查hosts文件,添加第三个节点:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
[root@12102-rac3 rules.d]# cat /etc/hosts ::1 localhost localhost.localdomain localhost6 localhost6.localdomain6 127.0.0.1 localhost.localdomain localhost # Public 192.168.56.124 12102-rac1.localdomain 12102-rac1 192.168.56.125 12102-rac2.localdomain 12102-rac2 192.168.56.127 12102-rac3.localdomain 12102-rac3 # Private 192.168.57.34 12102-rac1-priv.localdomain 12102-rac1-priv 192.168.57.35 12102-rac2-priv.localdomain 12102-rac2-priv 192.168.57.37 12102-rac3-priv.localdomain 12102-rac3-priv #Because use GNS, so vip and scanvip is provide by GNS # Virtual #192.168.56.103 12102-rac1-vip.localdomain 12102-rac1-vip #192.168.56.104 12102-rac2-vip.localdomain 12102-rac2-vip #192.168.56.109 12102-rac3-vip.localdomain 12102-rac3-vip # SCAN #192.168.56.105 12102-scan.localdomain 12102-scan #192.168.56.106 12102-scan.localdomain 12102-scan #192.168.56.107 12102-scan.localdomain 12102-scan [root@12102-rac3 rules.d]# |
并且检查主机的互信机制:
1 2 3 4 5 6 7 8 9 10 11 |
ssh 12102-rac1 date ssh 12102-rac2 date ssh 12102-rac3 date ssh 12102-rac1-priv date ssh 12102-rac2-priv date ssh 12102-rac3-priv date ssh 12102-rac1-vip date ssh 12102-rac2-vip date ssh 12102-rac3-vip date |
给DNS server和dncp server也加上相关信息:
DNS我是用dnsmasq实现,参考这个文档。
我的hosts文件内容为:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
[root@dnsserver ~]# cat /etc/hosts ::1 localhost localhost.localdomain localhost6 localhost6.localdomain6 127.0.0.1 localhost.localdomain localhost # Public 192.168.56.124 12102-rac1.localdomain 12102-rac1 192.168.56.125 12102-rac2.localdomain 12102-rac2 # Private 192.168.57.34 12102-rac1-priv.localdomain 12102-rac1-priv 192.168.57.35 12102-rac2-priv.localdomain 12102-rac2-priv #Because use GNS, so vip and scanvip is provide by GNS # Virtual 192.168.56.103 12102-rac1-vip.localdomain 12102-rac1-vip 192.168.56.104 12102-rac2-vip.localdomain 12102-rac2-vip # SCAN 192.168.56.105 12102-scan.localdomain 12102-scan 192.168.56.106 12102-scan.localdomain 12102-scan 192.168.56.107 12102-scan.localdomain 12102-scan #GNS 192.168.56.108 gns.localdomain [root@dnsserver ~]# |
GNS的DHCP我是参考这个文章实现。
我的DHCP配置文件为:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
[root@dnsserver ~]# cat /etc/dhcpd.conf ddns-update-style interim; ignore client-updates; ## DHCP for public: subnet 192.168.56.0 netmask 255.255.255.0 { default-lease-time 43200; max-lease-time 86400; option subnet-mask 255.255.255.0; option broadcast-address 192.168.56.255; option routers 192.168.56.1; option domain-name-servers 192.168.56.3; option domain-name "grid.localdomain"; pool { range 192.168.56.10 192.168.56.29; } } ## DHCP for private subnet 192.168.57.0 netmask 255.255.255.0 { default-lease-time 43200; max-lease-time 86400; option subnet-mask 255.255.0.0; option broadcast-address 192.168.57.255; pool { range 192.168.57.30 192.168.57.49; } } [root@dnsserver ~]# |
运行cluster verify脚本,检查节点硬件和OS的情况:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 |
cluvfy stage -post hwos -n 12102-rac1,12102-rac2,12102-rac3 -verbose [oracle@12102-rac1 bin]$ ./cluvfy stage -post hwos -n 12102-rac1,12102-rac2,12102-rac3 -verbose Performing post-checks for hardware and operating system setup Checking node reachability... Check: Node reachability from node "12102-rac1" Destination Node Reachable? ------------------------------------ ------------------------ 12102-rac1 yes 12102-rac2 yes 12102-rac3 yes Result: Node reachability check passed from node "12102-rac1" Checking user equivalence... Check: User equivalence for user "oracle" Node Name Status ------------------------------------ ------------------------ 12102-rac3 passed 12102-rac2 passed 12102-rac1 passed Result: User equivalence check passed for user "oracle" Checking node connectivity... Checking hosts config file... Node Name Status ------------------------------------ ------------------------ 12102-rac1 passed 12102-rac3 passed 12102-rac2 passed Verification of the hosts config file successful Interface information for node "12102-rac1" Name IP Address Subnet Gateway Def. Gateway HW Address MTU ------ --------------- --------------- --------------- --------------- ----------------- ------ eth0 192.168.56.124 192.168.56.0 0.0.0.0 192.168.56.1 08:00:27:AD:B5:33 1500 eth0 192.168.56.26 192.168.56.0 0.0.0.0 192.168.56.1 08:00:27:AD:B5:33 1500 eth0 192.168.56.22 192.168.56.0 0.0.0.0 192.168.56.1 08:00:27:AD:B5:33 1500 eth1 192.168.57.34 192.168.57.0 0.0.0.0 192.168.56.1 08:00:27:35:04:BB 1500 eth1 169.254.161.44 169.254.0.0 0.0.0.0 192.168.56.1 08:00:27:35:04:BB 1500 Interface information for node "12102-rac3" Name IP Address Subnet Gateway Def. Gateway HW Address MTU ------ --------------- --------------- --------------- --------------- ----------------- ------ eth0 192.168.56.127 192.168.56.0 0.0.0.0 192.168.56.1 08:00:27:A6:B7:99 1500 eth1 192.168.57.37 192.168.57.0 0.0.0.0 192.168.56.1 08:00:27:2C:DC:8C 1500 Interface information for node "12102-rac2" Name IP Address Subnet Gateway Def. Gateway HW Address MTU ------ --------------- --------------- --------------- --------------- ----------------- ------ eth0 192.168.56.125 192.168.56.0 0.0.0.0 192.168.56.1 08:00:27:60:27:F9 1500 eth0 192.168.56.108 192.168.56.0 0.0.0.0 192.168.56.1 08:00:27:60:27:F9 1500 eth0 192.168.56.25 192.168.56.0 0.0.0.0 192.168.56.1 08:00:27:60:27:F9 1500 eth0 192.168.56.27 192.168.56.0 0.0.0.0 192.168.56.1 08:00:27:60:27:F9 1500 eth0 192.168.56.28 192.168.56.0 0.0.0.0 192.168.56.1 08:00:27:60:27:F9 1500 eth1 192.168.57.35 192.168.57.0 0.0.0.0 192.168.56.1 08:00:27:47:D4:A9 1500 eth1 169.254.7.3 169.254.0.0 0.0.0.0 192.168.56.1 08:00:27:47:D4:A9 1500 Check: Node connectivity using interfaces on subnet "192.168.57.0" Check: Node connectivity of subnet "192.168.57.0" Source Destination Connected? ------------------------------ ------------------------------ ---------------- 12102-rac1[192.168.57.34] 12102-rac3[192.168.57.37] yes 12102-rac1[192.168.57.34] 12102-rac2[192.168.57.35] yes 12102-rac3[192.168.57.37] 12102-rac2[192.168.57.35] yes Result: Node connectivity passed for subnet "192.168.57.0" with node(s) 12102-rac1,12102-rac3,12102-rac2 Check: TCP connectivity of subnet "192.168.57.0" Source Destination Connected? ------------------------------ ------------------------------ ---------------- 12102-rac1 : 192.168.57.34 12102-rac1 : 192.168.57.34 passed 12102-rac3 : 192.168.57.37 12102-rac1 : 192.168.57.34 passed 12102-rac2 : 192.168.57.35 12102-rac1 : 192.168.57.34 passed 12102-rac1 : 192.168.57.34 12102-rac3 : 192.168.57.37 passed 12102-rac3 : 192.168.57.37 12102-rac3 : 192.168.57.37 passed 12102-rac2 : 192.168.57.35 12102-rac3 : 192.168.57.37 passed 12102-rac1 : 192.168.57.34 12102-rac2 : 192.168.57.35 passed 12102-rac3 : 192.168.57.37 12102-rac2 : 192.168.57.35 passed 12102-rac2 : 192.168.57.35 12102-rac2 : 192.168.57.35 passed Result: TCP connectivity check passed for subnet "192.168.57.0" Check: Node connectivity using interfaces on subnet "192.168.56.0" Check: Node connectivity of subnet "192.168.56.0" Source Destination Connected? ------------------------------ ------------------------------ ---------------- 12102-rac1[192.168.56.22] 12102-rac1[192.168.56.26] yes 12102-rac1[192.168.56.22] 12102-rac2[192.168.56.108] yes 12102-rac1[192.168.56.22] 12102-rac2[192.168.56.125] yes 12102-rac1[192.168.56.22] 12102-rac2[192.168.56.28] yes 12102-rac1[192.168.56.22] 12102-rac1[192.168.56.124] yes 12102-rac1[192.168.56.22] 12102-rac3[192.168.56.127] yes 12102-rac1[192.168.56.22] 12102-rac2[192.168.56.25] yes 12102-rac1[192.168.56.22] 12102-rac2[192.168.56.27] yes 12102-rac1[192.168.56.26] 12102-rac2[192.168.56.108] yes 12102-rac1[192.168.56.26] 12102-rac2[192.168.56.125] yes 12102-rac1[192.168.56.26] 12102-rac2[192.168.56.28] yes 12102-rac1[192.168.56.26] 12102-rac1[192.168.56.124] yes 12102-rac1[192.168.56.26] 12102-rac3[192.168.56.127] yes 12102-rac1[192.168.56.26] 12102-rac2[192.168.56.25] yes 12102-rac1[192.168.56.26] 12102-rac2[192.168.56.27] yes 12102-rac2[192.168.56.108] 12102-rac2[192.168.56.125] yes 12102-rac2[192.168.56.108] 12102-rac2[192.168.56.28] yes 12102-rac2[192.168.56.108] 12102-rac1[192.168.56.124] yes 12102-rac2[192.168.56.108] 12102-rac3[192.168.56.127] yes 12102-rac2[192.168.56.108] 12102-rac2[192.168.56.25] yes 12102-rac2[192.168.56.108] 12102-rac2[192.168.56.27] yes 12102-rac2[192.168.56.125] 12102-rac2[192.168.56.28] yes 12102-rac2[192.168.56.125] 12102-rac1[192.168.56.124] yes 12102-rac2[192.168.56.125] 12102-rac3[192.168.56.127] yes 12102-rac2[192.168.56.125] 12102-rac2[192.168.56.25] yes 12102-rac2[192.168.56.125] 12102-rac2[192.168.56.27] yes 12102-rac2[192.168.56.28] 12102-rac1[192.168.56.124] yes 12102-rac2[192.168.56.28] 12102-rac3[192.168.56.127] yes 12102-rac2[192.168.56.28] 12102-rac2[192.168.56.25] yes 12102-rac2[192.168.56.28] 12102-rac2[192.168.56.27] yes 12102-rac1[192.168.56.124] 12102-rac3[192.168.56.127] yes 12102-rac1[192.168.56.124] 12102-rac2[192.168.56.25] yes 12102-rac1[192.168.56.124] 12102-rac2[192.168.56.27] yes 12102-rac3[192.168.56.127] 12102-rac2[192.168.56.25] yes 12102-rac3[192.168.56.127] 12102-rac2[192.168.56.27] yes 12102-rac2[192.168.56.25] 12102-rac2[192.168.56.27] yes Result: Node connectivity passed for subnet "192.168.56.0" with node(s) 12102-rac1,12102-rac2,12102-rac3 Check: TCP connectivity of subnet "192.168.56.0" Source Destination Connected? ------------------------------ ------------------------------ ---------------- 12102-rac1 : 192.168.56.22 12102-rac1 : 192.168.56.22 passed 12102-rac1 : 192.168.56.26 12102-rac1 : 192.168.56.22 passed 12102-rac2 : 192.168.56.108 12102-rac1 : 192.168.56.22 passed 12102-rac2 : 192.168.56.125 12102-rac1 : 192.168.56.22 passed 12102-rac2 : 192.168.56.28 12102-rac1 : 192.168.56.22 passed 12102-rac1 : 192.168.56.124 12102-rac1 : 192.168.56.22 passed 12102-rac3 : 192.168.56.127 12102-rac1 : 192.168.56.22 passed 12102-rac2 : 192.168.56.25 12102-rac1 : 192.168.56.22 passed 12102-rac2 : 192.168.56.27 12102-rac1 : 192.168.56.22 passed 12102-rac1 : 192.168.56.22 12102-rac1 : 192.168.56.26 passed 12102-rac1 : 192.168.56.26 12102-rac1 : 192.168.56.26 passed 12102-rac2 : 192.168.56.108 12102-rac1 : 192.168.56.26 passed 12102-rac2 : 192.168.56.125 12102-rac1 : 192.168.56.26 passed 12102-rac2 : 192.168.56.28 12102-rac1 : 192.168.56.26 passed 12102-rac1 : 192.168.56.124 12102-rac1 : 192.168.56.26 passed 12102-rac3 : 192.168.56.127 12102-rac1 : 192.168.56.26 passed 12102-rac2 : 192.168.56.25 12102-rac1 : 192.168.56.26 passed 12102-rac2 : 192.168.56.27 12102-rac1 : 192.168.56.26 passed 12102-rac1 : 192.168.56.22 12102-rac2 : 192.168.56.108 passed 12102-rac1 : 192.168.56.26 12102-rac2 : 192.168.56.108 passed 12102-rac2 : 192.168.56.108 12102-rac2 : 192.168.56.108 passed 12102-rac2 : 192.168.56.125 12102-rac2 : 192.168.56.108 passed 12102-rac2 : 192.168.56.28 12102-rac2 : 192.168.56.108 passed 12102-rac1 : 192.168.56.124 12102-rac2 : 192.168.56.108 passed 12102-rac3 : 192.168.56.127 12102-rac2 : 192.168.56.108 passed 12102-rac2 : 192.168.56.25 12102-rac2 : 192.168.56.108 passed 12102-rac2 : 192.168.56.27 12102-rac2 : 192.168.56.108 passed 12102-rac1 : 192.168.56.22 12102-rac2 : 192.168.56.125 passed 12102-rac1 : 192.168.56.26 12102-rac2 : 192.168.56.125 passed 12102-rac2 : 192.168.56.108 12102-rac2 : 192.168.56.125 passed 12102-rac2 : 192.168.56.125 12102-rac2 : 192.168.56.125 passed 12102-rac2 : 192.168.56.28 12102-rac2 : 192.168.56.125 passed 12102-rac1 : 192.168.56.124 12102-rac2 : 192.168.56.125 passed 12102-rac3 : 192.168.56.127 12102-rac2 : 192.168.56.125 passed 12102-rac2 : 192.168.56.25 12102-rac2 : 192.168.56.125 passed 12102-rac2 : 192.168.56.27 12102-rac2 : 192.168.56.125 passed 12102-rac1 : 192.168.56.22 12102-rac2 : 192.168.56.28 passed 12102-rac1 : 192.168.56.26 12102-rac2 : 192.168.56.28 passed 12102-rac2 : 192.168.56.108 12102-rac2 : 192.168.56.28 passed 12102-rac2 : 192.168.56.125 12102-rac2 : 192.168.56.28 passed 12102-rac2 : 192.168.56.28 12102-rac2 : 192.168.56.28 passed 12102-rac1 : 192.168.56.124 12102-rac2 : 192.168.56.28 passed 12102-rac3 : 192.168.56.127 12102-rac2 : 192.168.56.28 passed 12102-rac2 : 192.168.56.25 12102-rac2 : 192.168.56.28 passed 12102-rac2 : 192.168.56.27 12102-rac2 : 192.168.56.28 passed 12102-rac1 : 192.168.56.22 12102-rac1 : 192.168.56.124 passed 12102-rac1 : 192.168.56.26 12102-rac1 : 192.168.56.124 passed 12102-rac2 : 192.168.56.108 12102-rac1 : 192.168.56.124 passed 12102-rac2 : 192.168.56.125 12102-rac1 : 192.168.56.124 passed 12102-rac2 : 192.168.56.28 12102-rac1 : 192.168.56.124 passed 12102-rac1 : 192.168.56.124 12102-rac1 : 192.168.56.124 passed 12102-rac3 : 192.168.56.127 12102-rac1 : 192.168.56.124 passed 12102-rac2 : 192.168.56.25 12102-rac1 : 192.168.56.124 passed 12102-rac2 : 192.168.56.27 12102-rac1 : 192.168.56.124 passed 12102-rac1 : 192.168.56.22 12102-rac3 : 192.168.56.127 passed 12102-rac1 : 192.168.56.26 12102-rac3 : 192.168.56.127 passed 12102-rac2 : 192.168.56.108 12102-rac3 : 192.168.56.127 passed 12102-rac2 : 192.168.56.125 12102-rac3 : 192.168.56.127 passed 12102-rac2 : 192.168.56.28 12102-rac3 : 192.168.56.127 passed 12102-rac1 : 192.168.56.124 12102-rac3 : 192.168.56.127 passed 12102-rac3 : 192.168.56.127 12102-rac3 : 192.168.56.127 passed 12102-rac2 : 192.168.56.25 12102-rac3 : 192.168.56.127 passed 12102-rac2 : 192.168.56.27 12102-rac3 : 192.168.56.127 passed 12102-rac1 : 192.168.56.22 12102-rac2 : 192.168.56.25 passed 12102-rac1 : 192.168.56.26 12102-rac2 : 192.168.56.25 passed 12102-rac2 : 192.168.56.108 12102-rac2 : 192.168.56.25 passed 12102-rac2 : 192.168.56.125 12102-rac2 : 192.168.56.25 passed 12102-rac2 : 192.168.56.28 12102-rac2 : 192.168.56.25 passed 12102-rac1 : 192.168.56.124 12102-rac2 : 192.168.56.25 passed 12102-rac3 : 192.168.56.127 12102-rac2 : 192.168.56.25 passed 12102-rac2 : 192.168.56.25 12102-rac2 : 192.168.56.25 passed 12102-rac2 : 192.168.56.27 12102-rac2 : 192.168.56.25 passed 12102-rac1 : 192.168.56.22 12102-rac2 : 192.168.56.27 passed 12102-rac1 : 192.168.56.26 12102-rac2 : 192.168.56.27 passed 12102-rac2 : 192.168.56.108 12102-rac2 : 192.168.56.27 passed 12102-rac2 : 192.168.56.125 12102-rac2 : 192.168.56.27 passed 12102-rac2 : 192.168.56.28 12102-rac2 : 192.168.56.27 passed 12102-rac1 : 192.168.56.124 12102-rac2 : 192.168.56.27 passed 12102-rac3 : 192.168.56.127 12102-rac2 : 192.168.56.27 passed 12102-rac2 : 192.168.56.25 12102-rac2 : 192.168.56.27 passed 12102-rac2 : 192.168.56.27 12102-rac2 : 192.168.56.27 passed Result: TCP connectivity check passed for subnet "192.168.56.0" Checking subnet mask consistency... Subnet mask consistency check passed for subnet "192.168.56.0". Subnet mask consistency check passed for subnet "192.168.57.0". Subnet mask consistency check passed. Result: Node connectivity check passed Checking multicast communication... Checking subnet "192.168.57.0" for multicast communication with multicast group "224.0.0.251"... Check of subnet "192.168.57.0" for multicast communication with multicast group "224.0.0.251" passed. Check of multicast communication passed. Task ASM Integrity check started... Checking if connectivity exists across cluster nodes on the ASM network Checking node connectivity... Checking hosts config file... Node Name Status ------------------------------------ ------------------------ 12102-rac2 passed 12102-rac1 passed Verification of the hosts config file successful Interface information for node "12102-rac2" Name IP Address Subnet Gateway Def. Gateway HW Address MTU ------ --------------- --------------- --------------- --------------- ----------------- ------ eth1 192.168.57.35 192.168.57.0 0.0.0.0 192.168.56.1 08:00:27:47:D4:A9 1500 eth1 169.254.7.3 169.254.0.0 0.0.0.0 192.168.56.1 08:00:27:47:D4:A9 1500 Interface information for node "12102-rac1" Name IP Address Subnet Gateway Def. Gateway HW Address MTU ------ --------------- --------------- --------------- --------------- ----------------- ------ eth1 192.168.57.34 192.168.57.0 0.0.0.0 192.168.56.1 08:00:27:35:04:BB 1500 eth1 169.254.161.44 169.254.0.0 0.0.0.0 192.168.56.1 08:00:27:35:04:BB 1500 Check: Node connectivity using interfaces on subnet "192.168.57.0" Check: Node connectivity of subnet "192.168.57.0" Source Destination Connected? ------------------------------ ------------------------------ ---------------- 12102-rac2[192.168.57.35] 12102-rac1[192.168.57.34] yes Result: Node connectivity passed for subnet "192.168.57.0" with node(s) 12102-rac2,12102-rac1 Check: TCP connectivity of subnet "192.168.57.0" Source Destination Connected? ------------------------------ ------------------------------ ---------------- 12102-rac2 : 192.168.57.35 12102-rac2 : 192.168.57.35 passed 12102-rac1 : 192.168.57.34 12102-rac2 : 192.168.57.35 passed 12102-rac2 : 192.168.57.35 12102-rac1 : 192.168.57.34 passed 12102-rac1 : 192.168.57.34 12102-rac1 : 192.168.57.34 passed Result: TCP connectivity check passed for subnet "192.168.57.0" Checking subnet mask consistency... Subnet mask consistency check passed for subnet "192.168.57.0". Subnet mask consistency check passed. Result: Node connectivity check passed Network connectivity check across cluster nodes on the ASM network passed Task ASM Integrity check passed... Task ASM Integrity check started... Checking if connectivity exists across cluster nodes on the ASM network Checking node connectivity... Checking hosts config file... Node Name Status ------------------------------------ ------------------------ 12102-rac2 passed 12102-rac1 passed Verification of the hosts config file successful Interface information for node "12102-rac2" Name IP Address Subnet Gateway Def. Gateway HW Address MTU ------ --------------- --------------- --------------- --------------- ----------------- ------ eth1 192.168.57.35 192.168.57.0 0.0.0.0 192.168.56.1 08:00:27:47:D4:A9 1500 eth1 169.254.7.3 169.254.0.0 0.0.0.0 192.168.56.1 08:00:27:47:D4:A9 1500 Interface information for node "12102-rac1" Name IP Address Subnet Gateway Def. Gateway HW Address MTU ------ --------------- --------------- --------------- --------------- ----------------- ------ eth1 192.168.57.34 192.168.57.0 0.0.0.0 192.168.56.1 08:00:27:35:04:BB 1500 eth1 169.254.161.44 169.254.0.0 0.0.0.0 192.168.56.1 08:00:27:35:04:BB 1500 Check: Node connectivity using interfaces on subnet "192.168.57.0" Check: Node connectivity of subnet "192.168.57.0" Source Destination Connected? ------------------------------ ------------------------------ ---------------- 12102-rac1[192.168.57.34] 12102-rac2[192.168.57.35] yes Result: Node connectivity passed for subnet "192.168.57.0" with node(s) 12102-rac1,12102-rac2 Check: TCP connectivity of subnet "192.168.57.0" Source Destination Connected? ------------------------------ ------------------------------ ---------------- 12102-rac1 : 192.168.57.34 12102-rac1 : 192.168.57.34 passed 12102-rac2 : 192.168.57.35 12102-rac1 : 192.168.57.34 passed 12102-rac1 : 192.168.57.34 12102-rac2 : 192.168.57.35 passed 12102-rac2 : 192.168.57.35 12102-rac2 : 192.168.57.35 passed Result: TCP connectivity check passed for subnet "192.168.57.0" Checking subnet mask consistency... Subnet mask consistency check passed for subnet "192.168.57.0". Subnet mask consistency check passed. Result: Node connectivity check passed Network connectivity check across cluster nodes on the ASM network passed Task ASM Integrity check passed... Checking for multiple users with UID value 0 Result: Check for multiple users with UID value 0 passed Check: Time zone consistency Result: Time zone consistency check passed Checking shared storage accessibility... No shared storage found Shared storage check failed on nodes "12102-rac1,12102-rac3,12102-rac2" Checking integrity of name service switch configuration file "/etc/nsswitch.conf" ... Checking if "hosts" entry in file "/etc/nsswitch.conf" is consistent across nodes... Checking file "/etc/nsswitch.conf" to make sure that only one "hosts" entry is defined More than one "hosts" entry does not exist in any "/etc/nsswitch.conf" file All nodes have same "hosts" entry defined in file "/etc/nsswitch.conf" Check for integrity of name service switch configuration file "/etc/nsswitch.conf" passed Post-check for hardware and operating system setup was unsuccessful on all the nodes. [oracle@12102-rac1 bin]$ |
将需要加进来的12102-rac3节点和节点1对比一下,看看是否有不match的情况:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 |
[oracle@12102-rac1 bin]$ ./cluvfy comp peer -refnode 12102-rac1 -n 12102-rac3 -verbose Verifying peer compatibility Checking peer compatibility... Compatibility check: Physical memory [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 3.6476GB (3824748.0KB) 3.6476GB (3824748.0KB) matched Physical memory <null> Compatibility check: Available memory [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 3.4812GB (3650308.0KB) 2.1513GB (2255776.0KB) matched Available memory <null> Compatibility check: Swap space [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 1.9687GB (2064376.0KB) 1.9687GB (2064376.0KB) matched Swap space <null> Compatibility check: Free disk space for "/usr" [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 17.4385GB (1.8285568E7KB) 3.7285GB (3909632.0KB) matched Free disk space <null> Compatibility check: Free disk space for "/var" [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 17.4385GB (1.8285568E7KB) 3.7285GB (3909632.0KB) matched Free disk space <null> Compatibility check: Free disk space for "/etc" [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 17.4385GB (1.8285568E7KB) 3.7285GB (3909632.0KB) matched Free disk space <null> Compatibility check: Free disk space for "/u01/app/12.1.0.2/grid" [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 17.4385GB (1.8285568E7KB) 3.7285GB (3909632.0KB) matched Free disk space <null> Compatibility check: Free disk space for "/sbin" [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 17.4385GB (1.8285568E7KB) 3.7285GB (3909632.0KB) matched Free disk space <null> Compatibility check: Free disk space for "/tmp" [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 17.4385GB (1.8285568E7KB) 3.7285GB (3909632.0KB) matched Free disk space <null> Compatibility check: User existence for "oracle" [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 oracle(54321) oracle(54321) matched User existence for "oracle" check passed Compatibility check: Group existence for "oinstall" [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 oinstall(54321) oinstall(54321) matched Group existence for "oinstall" check passed Compatibility check: Group existence for "dba" [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 dba(54322) dba(54322) matched Group existence for "dba" check passed Compatibility check: Group membership for "oracle" in "oinstall (Primary)" [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 yes yes matched Group membership for "oracle" in "oinstall (Primary)" check passed Compatibility check: Group membership for "oracle" in "dba" [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 yes yes matched Group membership for "oracle" in "dba" check passed Compatibility check: Run level [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 5 5 matched Run level check passed Compatibility check: System architecture [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 x86_64 x86_64 matched System architecture check passed Compatibility check: Kernel version [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 2.6.32-358.el6.x86_64 2.6.32-358.el6.x86_64 matched Kernel version check passed Compatibility check: Kernel param "semmsl" [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 250 250 matched Kernel param "semmsl" check passed Compatibility check: Kernel param "semmns" [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 32000 32000 matched Kernel param "semmns" check passed Compatibility check: Kernel param "semopm" [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 100 100 matched Kernel param "semopm" check passed Compatibility check: Kernel param "semmni" [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 128 128 matched Kernel param "semmni" check passed Compatibility check: Kernel param "shmmax" [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 4398046511104 4398046511104 matched Kernel param "shmmax" check passed Compatibility check: Kernel param "shmmni" [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 4096 4096 matched Kernel param "shmmni" check passed Compatibility check: Kernel param "shmall" [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 0 0 matched Kernel param "shmall" check passed Compatibility check: Kernel param "file-max" [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 6815744 6815744 matched Kernel param "file-max" check passed Compatibility check: Kernel param "ip_local_port_range" [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 9000 65500 9000 65500 matched Kernel param "ip_local_port_range" check passed Compatibility check: Kernel param "rmem_default" [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 262144 262144 matched Kernel param "rmem_default" check passed Compatibility check: Kernel param "rmem_max" [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 4194304 4194304 matched Kernel param "rmem_max" check passed Compatibility check: Kernel param "wmem_default" [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 262144 262144 matched Kernel param "wmem_default" check passed Compatibility check: Kernel param "wmem_max" [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 1048576 1048576 matched Kernel param "wmem_max" check passed Compatibility check: Kernel param "aio-max-nr" [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 1048576 1048576 matched Kernel param "aio-max-nr" check passed Compatibility check: Kernel param "panic_on_oops" [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 1 1 matched Kernel param "panic_on_oops" check passed Compatibility check: Package existence for "binutils" [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 binutils-2.20.51.0.2-5.36.el6 binutils-2.20.51.0.2-5.36.el6 matched Package existence for "binutils" check passed Compatibility check: Package existence for "compat-libcap1" [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 compat-libcap1-1.10-1 compat-libcap1-1.10-1 matched Package existence for "compat-libcap1" check passed Compatibility check: Package existence for "compat-libstdc++-33 (x86_64)" [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 compat-libstdc++-33-3.2.3-69.el6 (x86_64),compat-libstdc++-33-3.2.3-69.el6 (i686) compat-libstdc++-33-3.2.3-69.el6 (x86_64),compat-libstdc++-33-3.2.3-69.el6 (i686) matched Package existence for "compat-libstdc++-33 (x86_64)" check passed Compatibility check: Package existence for "libgcc (x86_64)" [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 libgcc-4.4.7-3.el6 (x86_64),libgcc-4.4.7-3.el6 (i686) libgcc-4.4.7-3.el6 (x86_64),libgcc-4.4.7-3.el6 (i686) matched Package existence for "libgcc (x86_64)" check passed Compatibility check: Package existence for "libstdc++ (x86_64)" [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 libstdc++-4.4.7-3.el6 (x86_64),libstdc++-4.4.7-3.el6 (i686) libstdc++-4.4.7-3.el6 (x86_64),libstdc++-4.4.7-3.el6 (i686) matched Package existence for "libstdc++ (x86_64)" check passed Compatibility check: Package existence for "libstdc++-devel (x86_64)" [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 libstdc++-devel-4.4.7-3.el6 (x86_64),libstdc++-devel-4.4.7-3.el6 (i686) libstdc++-devel-4.4.7-3.el6 (x86_64),libstdc++-devel-4.4.7-3.el6 (i686) matched Package existence for "libstdc++-devel (x86_64)" check passed Compatibility check: Package existence for "sysstat" [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 sysstat-9.0.4-20.el6 sysstat-9.0.4-20.el6 matched Package existence for "sysstat" check passed Compatibility check: Package existence for "gcc" [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 gcc-4.4.7-3.el6 gcc-4.4.7-3.el6 matched Package existence for "gcc" check passed Compatibility check: Package existence for "gcc-c++" [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 gcc-c++-4.4.7-3.el6 gcc-c++-4.4.7-3.el6 matched Package existence for "gcc-c++" check passed Compatibility check: Package existence for "ksh" [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 ksh-20100621-19.el6 ksh-20100621-19.el6 matched Package existence for "ksh" check passed Compatibility check: Package existence for "make" [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 make-3.81-20.el6 make-3.81-20.el6 matched Package existence for "make" check passed Compatibility check: Package existence for "glibc (x86_64)" [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 glibc-2.12-1.107.el6 (x86_64),glibc-2.12-1.107.el6 (i686) glibc-2.12-1.107.el6 (x86_64),glibc-2.12-1.107.el6 (i686) matched Package existence for "glibc (x86_64)" check passed Compatibility check: Package existence for "glibc-devel (x86_64)" [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 glibc-devel-2.12-1.107.el6 (x86_64),glibc-devel-2.12-1.107.el6 (i686) glibc-devel-2.12-1.107.el6 (x86_64),glibc-devel-2.12-1.107.el6 (i686) matched Package existence for "glibc-devel (x86_64)" check passed Compatibility check: Package existence for "libaio (x86_64)" [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 libaio-0.3.107-10.el6 (x86_64),libaio-0.3.107-10.el6 (i686) libaio-0.3.107-10.el6 (x86_64),libaio-0.3.107-10.el6 (i686) matched Package existence for "libaio (x86_64)" check passed Compatibility check: Package existence for "libaio-devel (x86_64)" [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 libaio-devel-0.3.107-10.el6 (i686),libaio-devel-0.3.107-10.el6 (x86_64) libaio-devel-0.3.107-10.el6 (i686),libaio-devel-0.3.107-10.el6 (x86_64) matched Package existence for "libaio-devel (x86_64)" check passed Compatibility check: Package existence for "nfs-utils" [reference node: 12102-rac1] Node Name Status Ref. node status Comment ------------ ------------------------ ------------------------ ---------- 12102-rac3 nfs-utils-1.2.3-36.el6 nfs-utils-1.2.3-36.el6 matched Package existence for "nfs-utils" check passed Verification of peer compatibility was successful. [oracle@12102-rac1 bin]$ |
要求Grid Infrastructure Management Repository 的大小至少500M。(下面显示单位是Seconds是不对的,应该是M)
1 2 3 4 5 |
[oracle@12102-rac1 ~]$ [oracle@12102-rac1 ~]$ oclumon manage -get repsize CHM Repository Size = 136320 seconds [oracle@12102-rac1 ~]$ |
检查一下,准备add node:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 |
[oracle@12102-rac1 bin]$ ./cluvfy stage -pre nodeadd -n 12102-rac3 -verbose Performing pre-checks for node addition Checking node reachability... Check: Node reachability from node "12102-rac1" Destination Node Reachable? ------------------------------------ ------------------------ 12102-rac3 yes Result: Node reachability check passed from node "12102-rac1" Checking user equivalence... Check: User equivalence for user "oracle" Node Name Status ------------------------------------ ------------------------ 12102-rac3 passed Result: User equivalence check passed for user "oracle" Checking CRS integrity... The Oracle Clusterware is healthy on node "12102-rac1" CRS integrity check passed Clusterware version consistency passed. Checking shared resources... Checking CRS home location... Location check passed for: "/u01/app/12.1.0.2/grid" Result: Shared resources check for node addition passed Checking node connectivity... Checking hosts config file... Node Name Status ------------------------------------ ------------------------ 12102-rac1 passed 12102-rac2 passed 12102-rac3 passed Verification of the hosts config file successful Interface information for node "12102-rac1" Name IP Address Subnet Gateway Def. Gateway HW Address MTU ------ --------------- --------------- --------------- --------------- ----------------- ------ eth0 192.168.56.124 192.168.56.0 0.0.0.0 192.168.56.1 08:00:27:AD:B5:33 1500 eth0 192.168.56.26 192.168.56.0 0.0.0.0 192.168.56.1 08:00:27:AD:B5:33 1500 eth0 192.168.56.22 192.168.56.0 0.0.0.0 192.168.56.1 08:00:27:AD:B5:33 1500 eth1 192.168.57.34 192.168.57.0 0.0.0.0 192.168.56.1 08:00:27:35:04:BB 1500 eth1 169.254.161.44 169.254.0.0 0.0.0.0 192.168.56.1 08:00:27:35:04:BB 1500 Interface information for node "12102-rac2" Name IP Address Subnet Gateway Def. Gateway HW Address MTU ------ --------------- --------------- --------------- --------------- ----------------- ------ eth0 192.168.56.125 192.168.56.0 0.0.0.0 192.168.56.1 08:00:27:60:27:F9 1500 eth0 192.168.56.108 192.168.56.0 0.0.0.0 192.168.56.1 08:00:27:60:27:F9 1500 eth0 192.168.56.25 192.168.56.0 0.0.0.0 192.168.56.1 08:00:27:60:27:F9 1500 eth0 192.168.56.27 192.168.56.0 0.0.0.0 192.168.56.1 08:00:27:60:27:F9 1500 eth0 192.168.56.28 192.168.56.0 0.0.0.0 192.168.56.1 08:00:27:60:27:F9 1500 eth1 192.168.57.35 192.168.57.0 0.0.0.0 192.168.56.1 08:00:27:47:D4:A9 1500 eth1 169.254.7.3 169.254.0.0 0.0.0.0 192.168.56.1 08:00:27:47:D4:A9 1500 Interface information for node "12102-rac3" Name IP Address Subnet Gateway Def. Gateway HW Address MTU ------ --------------- --------------- --------------- --------------- ----------------- ------ eth0 192.168.56.127 192.168.56.0 0.0.0.0 192.168.56.1 08:00:27:A6:B7:99 1500 eth1 192.168.57.37 192.168.57.0 0.0.0.0 192.168.56.1 08:00:27:2C:DC:8C 1500 Check: Node connectivity using interfaces on subnet "192.168.57.0" Check: Node connectivity of subnet "192.168.57.0" Source Destination Connected? ------------------------------ ------------------------------ ---------------- 12102-rac2[192.168.57.35] 12102-rac3[192.168.57.37] yes 12102-rac2[192.168.57.35] 12102-rac1[192.168.57.34] yes 12102-rac3[192.168.57.37] 12102-rac1[192.168.57.34] yes Result: Node connectivity passed for subnet "192.168.57.0" with node(s) 12102-rac2,12102-rac3,12102-rac1 Check: TCP connectivity of subnet "192.168.57.0" Source Destination Connected? ------------------------------ ------------------------------ ---------------- 12102-rac2 : 192.168.57.35 12102-rac2 : 192.168.57.35 passed 12102-rac3 : 192.168.57.37 12102-rac2 : 192.168.57.35 passed 12102-rac1 : 192.168.57.34 12102-rac2 : 192.168.57.35 passed 12102-rac2 : 192.168.57.35 12102-rac3 : 192.168.57.37 passed 12102-rac3 : 192.168.57.37 12102-rac3 : 192.168.57.37 passed 12102-rac1 : 192.168.57.34 12102-rac3 : 192.168.57.37 passed 12102-rac2 : 192.168.57.35 12102-rac1 : 192.168.57.34 passed 12102-rac3 : 192.168.57.37 12102-rac1 : 192.168.57.34 passed 12102-rac1 : 192.168.57.34 12102-rac1 : 192.168.57.34 passed Result: TCP connectivity check passed for subnet "192.168.57.0" Check: Node connectivity using interfaces on subnet "192.168.56.0" Check: Node connectivity of subnet "192.168.56.0" Source Destination Connected? ------------------------------ ------------------------------ ---------------- 12102-rac2[192.168.56.28] 12102-rac3[192.168.56.127] yes 12102-rac2[192.168.56.28] 12102-rac1[192.168.56.124] yes 12102-rac2[192.168.56.28] 12102-rac2[192.168.56.25] yes 12102-rac2[192.168.56.28] 12102-rac2[192.168.56.27] yes 12102-rac2[192.168.56.28] 12102-rac2[192.168.56.108] yes 12102-rac2[192.168.56.28] 12102-rac2[192.168.56.125] yes 12102-rac2[192.168.56.28] 12102-rac1[192.168.56.22] yes 12102-rac2[192.168.56.28] 12102-rac1[192.168.56.26] yes 12102-rac3[192.168.56.127] 12102-rac1[192.168.56.124] yes 12102-rac3[192.168.56.127] 12102-rac2[192.168.56.25] yes 12102-rac3[192.168.56.127] 12102-rac2[192.168.56.27] yes 12102-rac3[192.168.56.127] 12102-rac2[192.168.56.108] yes 12102-rac3[192.168.56.127] 12102-rac2[192.168.56.125] yes 12102-rac3[192.168.56.127] 12102-rac1[192.168.56.22] yes 12102-rac3[192.168.56.127] 12102-rac1[192.168.56.26] yes 12102-rac1[192.168.56.124] 12102-rac2[192.168.56.25] yes 12102-rac1[192.168.56.124] 12102-rac2[192.168.56.27] yes 12102-rac1[192.168.56.124] 12102-rac2[192.168.56.108] yes 12102-rac1[192.168.56.124] 12102-rac2[192.168.56.125] yes 12102-rac1[192.168.56.124] 12102-rac1[192.168.56.22] yes 12102-rac1[192.168.56.124] 12102-rac1[192.168.56.26] yes 12102-rac2[192.168.56.25] 12102-rac2[192.168.56.27] yes 12102-rac2[192.168.56.25] 12102-rac2[192.168.56.108] yes 12102-rac2[192.168.56.25] 12102-rac2[192.168.56.125] yes 12102-rac2[192.168.56.25] 12102-rac1[192.168.56.22] yes 12102-rac2[192.168.56.25] 12102-rac1[192.168.56.26] yes 12102-rac2[192.168.56.27] 12102-rac2[192.168.56.108] yes 12102-rac2[192.168.56.27] 12102-rac2[192.168.56.125] yes 12102-rac2[192.168.56.27] 12102-rac1[192.168.56.22] yes 12102-rac2[192.168.56.27] 12102-rac1[192.168.56.26] yes 12102-rac2[192.168.56.108] 12102-rac2[192.168.56.125] yes 12102-rac2[192.168.56.108] 12102-rac1[192.168.56.22] yes 12102-rac2[192.168.56.108] 12102-rac1[192.168.56.26] yes 12102-rac2[192.168.56.125] 12102-rac1[192.168.56.22] yes 12102-rac2[192.168.56.125] 12102-rac1[192.168.56.26] yes 12102-rac1[192.168.56.22] 12102-rac1[192.168.56.26] yes Result: Node connectivity passed for subnet "192.168.56.0" with node(s) 12102-rac2,12102-rac3,12102-rac1 Check: TCP connectivity of subnet "192.168.56.0" Source Destination Connected? ------------------------------ ------------------------------ ---------------- 12102-rac2 : 192.168.56.28 12102-rac2 : 192.168.56.28 passed 12102-rac3 : 192.168.56.127 12102-rac2 : 192.168.56.28 passed 12102-rac1 : 192.168.56.124 12102-rac2 : 192.168.56.28 passed 12102-rac2 : 192.168.56.25 12102-rac2 : 192.168.56.28 passed 12102-rac2 : 192.168.56.27 12102-rac2 : 192.168.56.28 passed 12102-rac2 : 192.168.56.108 12102-rac2 : 192.168.56.28 passed 12102-rac2 : 192.168.56.125 12102-rac2 : 192.168.56.28 passed 12102-rac1 : 192.168.56.22 12102-rac2 : 192.168.56.28 passed 12102-rac1 : 192.168.56.26 12102-rac2 : 192.168.56.28 passed 12102-rac2 : 192.168.56.28 12102-rac3 : 192.168.56.127 passed 12102-rac3 : 192.168.56.127 12102-rac3 : 192.168.56.127 passed 12102-rac1 : 192.168.56.124 12102-rac3 : 192.168.56.127 passed 12102-rac2 : 192.168.56.25 12102-rac3 : 192.168.56.127 passed 12102-rac2 : 192.168.56.27 12102-rac3 : 192.168.56.127 passed 12102-rac2 : 192.168.56.108 12102-rac3 : 192.168.56.127 passed 12102-rac2 : 192.168.56.125 12102-rac3 : 192.168.56.127 passed 12102-rac1 : 192.168.56.22 12102-rac3 : 192.168.56.127 passed 12102-rac1 : 192.168.56.26 12102-rac3 : 192.168.56.127 passed 12102-rac2 : 192.168.56.28 12102-rac1 : 192.168.56.124 passed 12102-rac3 : 192.168.56.127 12102-rac1 : 192.168.56.124 passed 12102-rac1 : 192.168.56.124 12102-rac1 : 192.168.56.124 passed 12102-rac2 : 192.168.56.25 12102-rac1 : 192.168.56.124 passed 12102-rac2 : 192.168.56.27 12102-rac1 : 192.168.56.124 passed 12102-rac2 : 192.168.56.108 12102-rac1 : 192.168.56.124 passed 12102-rac2 : 192.168.56.125 12102-rac1 : 192.168.56.124 passed 12102-rac1 : 192.168.56.22 12102-rac1 : 192.168.56.124 passed 12102-rac1 : 192.168.56.26 12102-rac1 : 192.168.56.124 passed 12102-rac2 : 192.168.56.28 12102-rac2 : 192.168.56.25 passed 12102-rac3 : 192.168.56.127 12102-rac2 : 192.168.56.25 passed 12102-rac1 : 192.168.56.124 12102-rac2 : 192.168.56.25 passed 12102-rac2 : 192.168.56.25 12102-rac2 : 192.168.56.25 passed 12102-rac2 : 192.168.56.27 12102-rac2 : 192.168.56.25 passed 12102-rac2 : 192.168.56.108 12102-rac2 : 192.168.56.25 passed 12102-rac2 : 192.168.56.125 12102-rac2 : 192.168.56.25 passed 12102-rac1 : 192.168.56.22 12102-rac2 : 192.168.56.25 passed 12102-rac1 : 192.168.56.26 12102-rac2 : 192.168.56.25 passed 12102-rac2 : 192.168.56.28 12102-rac2 : 192.168.56.27 passed 12102-rac3 : 192.168.56.127 12102-rac2 : 192.168.56.27 passed 12102-rac1 : 192.168.56.124 12102-rac2 : 192.168.56.27 passed 12102-rac2 : 192.168.56.25 12102-rac2 : 192.168.56.27 passed 12102-rac2 : 192.168.56.27 12102-rac2 : 192.168.56.27 passed 12102-rac2 : 192.168.56.108 12102-rac2 : 192.168.56.27 passed 12102-rac2 : 192.168.56.125 12102-rac2 : 192.168.56.27 passed 12102-rac1 : 192.168.56.22 12102-rac2 : 192.168.56.27 passed 12102-rac1 : 192.168.56.26 12102-rac2 : 192.168.56.27 passed 12102-rac2 : 192.168.56.28 12102-rac2 : 192.168.56.108 passed 12102-rac3 : 192.168.56.127 12102-rac2 : 192.168.56.108 passed 12102-rac1 : 192.168.56.124 12102-rac2 : 192.168.56.108 passed 12102-rac2 : 192.168.56.25 12102-rac2 : 192.168.56.108 passed 12102-rac2 : 192.168.56.27 12102-rac2 : 192.168.56.108 passed 12102-rac2 : 192.168.56.108 12102-rac2 : 192.168.56.108 passed 12102-rac2 : 192.168.56.125 12102-rac2 : 192.168.56.108 passed 12102-rac1 : 192.168.56.22 12102-rac2 : 192.168.56.108 passed 12102-rac1 : 192.168.56.26 12102-rac2 : 192.168.56.108 passed 12102-rac2 : 192.168.56.28 12102-rac2 : 192.168.56.125 passed 12102-rac3 : 192.168.56.127 12102-rac2 : 192.168.56.125 passed 12102-rac1 : 192.168.56.124 12102-rac2 : 192.168.56.125 passed 12102-rac2 : 192.168.56.25 12102-rac2 : 192.168.56.125 passed 12102-rac2 : 192.168.56.27 12102-rac2 : 192.168.56.125 passed 12102-rac2 : 192.168.56.108 12102-rac2 : 192.168.56.125 passed 12102-rac2 : 192.168.56.125 12102-rac2 : 192.168.56.125 passed 12102-rac1 : 192.168.56.22 12102-rac2 : 192.168.56.125 passed 12102-rac1 : 192.168.56.26 12102-rac2 : 192.168.56.125 passed 12102-rac2 : 192.168.56.28 12102-rac1 : 192.168.56.22 passed 12102-rac3 : 192.168.56.127 12102-rac1 : 192.168.56.22 passed 12102-rac1 : 192.168.56.124 12102-rac1 : 192.168.56.22 passed 12102-rac2 : 192.168.56.25 12102-rac1 : 192.168.56.22 passed 12102-rac2 : 192.168.56.27 12102-rac1 : 192.168.56.22 passed 12102-rac2 : 192.168.56.108 12102-rac1 : 192.168.56.22 passed 12102-rac2 : 192.168.56.125 12102-rac1 : 192.168.56.22 passed 12102-rac1 : 192.168.56.22 12102-rac1 : 192.168.56.22 passed 12102-rac1 : 192.168.56.26 12102-rac1 : 192.168.56.22 passed 12102-rac2 : 192.168.56.28 12102-rac1 : 192.168.56.26 passed 12102-rac3 : 192.168.56.127 12102-rac1 : 192.168.56.26 passed 12102-rac1 : 192.168.56.124 12102-rac1 : 192.168.56.26 passed 12102-rac2 : 192.168.56.25 12102-rac1 : 192.168.56.26 passed 12102-rac2 : 192.168.56.27 12102-rac1 : 192.168.56.26 passed 12102-rac2 : 192.168.56.108 12102-rac1 : 192.168.56.26 passed 12102-rac2 : 192.168.56.125 12102-rac1 : 192.168.56.26 passed 12102-rac1 : 192.168.56.22 12102-rac1 : 192.168.56.26 passed 12102-rac1 : 192.168.56.26 12102-rac1 : 192.168.56.26 passed Result: TCP connectivity check passed for subnet "192.168.56.0" Checking subnet mask consistency... Subnet mask consistency check passed for subnet "192.168.56.0". Subnet mask consistency check passed for subnet "192.168.57.0". Subnet mask consistency check passed. Result: Node connectivity check passed Checking multicast communication... Checking subnet "192.168.57.0" for multicast communication with multicast group "224.0.0.251"... Check of subnet "192.168.57.0" for multicast communication with multicast group "224.0.0.251" passed. Check of multicast communication passed. Task ASM Integrity check started... Checking if connectivity exists across cluster nodes on the ASM network Checking node connectivity... Checking hosts config file... Node Name Status ------------------------------------ ------------------------ 12102-rac3 passed Verification of the hosts config file successful Interface information for node "12102-rac3" Name IP Address Subnet Gateway Def. Gateway HW Address MTU ------ --------------- --------------- --------------- --------------- ----------------- ------ eth1 192.168.57.37 192.168.57.0 0.0.0.0 192.168.56.1 08:00:27:2C:DC:8C 1500 Check: Node connectivity using interfaces on subnet "192.168.57.0" Check: Node connectivity of subnet "192.168.57.0" Result: Node connectivity passed for subnet "192.168.57.0" with node(s) 12102-rac3 Check: TCP connectivity of subnet "192.168.57.0" Source Destination Connected? ------------------------------ ------------------------------ ---------------- 12102-rac3 : 192.168.57.37 12102-rac3 : 192.168.57.37 passed Result: TCP connectivity check passed for subnet "192.168.57.0" Result: Node connectivity check passed Network connectivity check across cluster nodes on the ASM network passed Task ASM Integrity check passed... Checking the policy managed database home availability PRVG-11751 : File "/u01/app/oracle/product/12.1.0.2/db_1/bin/oracle" does not exist on all the nodes. PRVG-11885 : Oracle Home "/u01/app/oracle/product/12.1.0.2/db_1" for policy managed database "cdbrac" does not exist on nodes "12102-rac3" Policy managed database home availability check failed Check: Total memory Node Name Available Required Status ------------ ------------------------ ------------------------ ---------- 12102-rac3 3.6476GB (3824748.0KB) 4GB (4194304.0KB) failed 12102-rac1 3.6476GB (3824748.0KB) 4GB (4194304.0KB) failed Result: Total memory check failed Check: Available memory Node Name Available Required Status ------------ ------------------------ ------------------------ ---------- 12102-rac3 3.4806GB (3649632.0KB) 50MB (51200.0KB) passed 12102-rac1 2.1512GB (2255680.0KB) 50MB (51200.0KB) passed Result: Available memory check passed Check: Swap space Node Name Available Required Status ------------ ------------------------ ------------------------ ---------- 12102-rac3 1.9687GB (2064376.0KB) 3.6476GB (3824748.0KB) failed 12102-rac1 1.9687GB (2064376.0KB) 3.6476GB (3824748.0KB) failed Result: Swap space check failed Check: Free disk space for "12102-rac3:/usr,12102-rac3:/var,12102-rac3:/etc,12102-rac3:/u01/app/12.1.0.2/grid,12102-rac3:/sbin,12102-rac3:/tmp" Path Node Name Mount point Available Required Status ---------------- ------------ ------------ ------------ ------------ ------------ /usr 12102-rac3 / 17.4375GB 7.9635GB passed /var 12102-rac3 / 17.4375GB 7.9635GB passed /etc 12102-rac3 / 17.4375GB 7.9635GB passed /u01/app/12.1.0.2/grid 12102-rac3 / 17.4375GB 7.9635GB passed /sbin 12102-rac3 / 17.4375GB 7.9635GB passed /tmp 12102-rac3 / 17.4375GB 7.9635GB passed Result: Free disk space check passed for "12102-rac3:/usr,12102-rac3:/var,12102-rac3:/etc,12102-rac3:/u01/app/12.1.0.2/grid,12102-rac3:/sbin,12102-rac3:/tmp" Check: Free disk space for "12102-rac1:/usr,12102-rac1:/var,12102-rac1:/etc,12102-rac1:/u01/app/12.1.0.2/grid,12102-rac1:/sbin,12102-rac1:/tmp" Path Node Name Mount point Available Required Status ---------------- ------------ ------------ ------------ ------------ ------------ /usr 12102-rac1 / 3.7168GB 7.9635GB failed /var 12102-rac1 / 3.7168GB 7.9635GB failed /etc 12102-rac1 / 3.7168GB 7.9635GB failed /u01/app/12.1.0.2/grid 12102-rac1 / 3.7168GB 7.9635GB failed /sbin 12102-rac1 / 3.7168GB 7.9635GB failed /tmp 12102-rac1 / 3.7168GB 7.9635GB failed Result: Free disk space check failed for "12102-rac1:/usr,12102-rac1:/var,12102-rac1:/etc,12102-rac1:/u01/app/12.1.0.2/grid,12102-rac1:/sbin,12102-rac1:/tmp" Check: User existence for "oracle" Node Name Status Comment ------------ ------------------------ ------------------------ 12102-rac3 passed exists(54321) 12102-rac1 passed exists(54321) Checking for multiple users with UID value 54321 Result: Check for multiple users with UID value 54321 passed Result: User existence check passed for "oracle" Check: Run level Node Name run level Required Status ------------ ------------------------ ------------------------ ---------- 12102-rac3 5 3,5 passed 12102-rac1 5 3,5 passed Result: Run level check passed Check: Hard limits for "maximum open file descriptors" Node Name Type Available Required Status ---------------- ------------ ------------ ------------ ---------------- 12102-rac3 hard 65536 65536 passed 12102-rac1 hard 65536 65536 passed Result: Hard limits check passed for "maximum open file descriptors" Check: Soft limits for "maximum open file descriptors" Node Name Type &nb |