Close Menu
  • Home
  • Oracle
    • ASM
    • Data Guard
    • OEM
    • RAC
  • MongoDB
  • Performance
  • Python
  • Shell Script
  • Tools
  • Troubleshooting
Search

Oracle RAC 12.2 on VMware Workstation — Post 5: Final Validation and Quick Reference

2026-05-11 Oracle By Henrique

Oracle RAC 12.2 on VMware Workstation – Post 4: Oracle Database Installation and DBCA

2026-05-11 Oracle By Henrique

Oracle RAC 12.2 on VMware Workstation — Post 2: Oracle Linux Configuration and iSCSI

2026-05-11 Oracle By Henrique
YouTube LinkedIn RSS
  • Home
  • About
  • Contact
  • Legal
    • Cookie Policy
    • Disclaimer
    • Privacy Policy
    • Terms of Use
  • RSS
  • English
    • Portuguese (Brazil)
Execute StepExecute Step
YouTube LinkedIn RSS
  • Home
  • Oracle
    • ASM
    • Data Guard
    • OEM
    • RAC
  • MongoDB
  • Performance
  • Python
  • Shell Script
  • Tools
  • Troubleshooting
Execute StepExecute Step
Home » Oracle RAC 12.2 on VMware Workstation — Series Overview
Oracle RAC

Oracle RAC 12.2 on VMware Workstation — Series Overview

HenriqueBy Henrique2026-05-11Updated:2026-05-195 Comments3 Mins Read
Share
Facebook Twitter LinkedIn Pinterest Email Telegram WhatsApp

This post is also available in: Português (Portuguese (Brazil))

Series: Oracle RAC 12.2 — Complete Installation on VMware Workstation


📌 A note before we start Yes, it’s 2026 and Oracle RAC 12c is already out of support. The goal of this series is not to recommend this version for production — it’s to share what’s part of my daily life as a DBA: learning, revisiting concepts, and documenting the process. If it helps someone else along the way, even better.

📋 This series — Oracle RAC 12.2 on VMware Workstation:

Series posts
Series Overview — RAC architecture, environment, and software ← this post
Post 1 — VMware Setup and targetcli iSCSI Storage
Post 2 — Oracle Linux Configuration and iSCSI Initiator
Post 3 — Grid Infrastructure 12.2 Installation
Post 4 — Oracle Database Installation and DBCA
Post 5 — Final Validation and Quick Reference

What Is Oracle RAC?

RAC works by having multiple servers (nodes) access the same datafiles stored on shared storage. What makes this possible is Oracle Clusterware — the software that coordinates nodes, manages resources, and guarantees data consistency.

Core Components

Oracle Clusterware (Grid Infrastructure): manages cluster resources, VIPs, OCR, and Voting Disks. It’s installed before the database and is the heart of RAC.

Oracle ASM (Automatic Storage Management): a filesystem and volume manager dedicated to Oracle. It manages shared disks transparently across nodes.

Cache Fusion: the mechanism that allows nodes to share data blocks in memory over the interconnect, without hitting disk. This is what sets RAC apart from a simple cluster.

SCAN (Single Client Access Name): a single entry point for clients. Three IPs in round-robin provide load balancing and failover transparency — the application doesn’t need to know which node the instance is running on.

OCR (Oracle Cluster Registry): stores cluster configuration — resources, nodes, VIPs, and services.

Voting Disks: used by Clusterware to determine which nodes are active. In a split-brain scenario, the voting disk decides which node survives and which gets evicted.

Network Topology

NetworkPurposeInterface
PublicClient access, VIPs, SCANeth0
InterconnectCache Fusion between nodeseth1
iSCSIStorage trafficeth2

💡 In practice: In this lab, eth0 and eth2 share the same vmnet0 (Bridged) — VMware doesn’t allow two Bridged vmnets on the same physical NIC. Separation is done by IP: eth0 uses 192.168.15.170/171 and eth2 uses 192.168.15.130/131.


Reference Environment

ItemValue
HypervisorVMware Workstation
HostLinux
Guest OSOracle Linux 7.9
Oracle Grid Infrastructure12.2.0.1
Oracle Database12c Release 2 (12.2.0.1)
Storagetargetcli (Linux-IO) — iSCSI

IP Mapping

HostInterfaceIPPurpose
orclrac1eth0192.168.15.170Public network
orclrac1eth110.10.10.1Interconnect
orclrac1eth2192.168.15.130iSCSI
orclrac1-vip—192.168.15.180VIP
orclrac2eth0192.168.15.171Public network
orclrac2eth110.10.10.2Interconnect
orclrac2eth2192.168.15.131iSCSI
orclrac2-vip—192.168.15.181VIP
orclrac-scan—192.168.15.190/191/192SCAN
vpslab—192.168.15.3iSCSI Target (targetcli)

Disk Layout

LUNFileSizeDeviceOracle Disk Group
lun-0lun-ocr-vote1.img10 GB/dev/sdc+OCR (voting)
lun-1lun-ocr-vote2.img10 GB/dev/sdh+OCR (voting)
lun-2lun-ocr-vote3.img10 GB/dev/sdg+OCR (voting)
lun-3lun-gimr.img40 GB/dev/sdf+MGMT (GIMR)
lun-4lun-data1.img60 GB/dev/sde+DATA
lun-5lun-fra1.img40 GB/dev/sdd+FRA

lsblk may show devices out of order — the kernel assigns names in discovery order. Always use ls -la /dev/disk/by-path/ | grep iscsi to correctly identify each LUN.


Required Software

SoftwareVersionSource
VMware WorkstationCurrentvmware.com
Oracle Linux7.9edelivery.oracle.com
Oracle Grid Infrastructure12.2.0.1edelivery.oracle.com
Oracle Database12c R2 (12.2.0.1)edelivery.oracle.com
targetcli-fb—apt install -y targetcli-fb (vpslab Ubuntu)

Oracle binaries require a free account on Oracle eDelivery. Search for Oracle Grid Infrastructure 12.2 and Oracle Database 12c Release 2, selecting Linux x86-64.


asm grid-infrastructure installation lab oracle-database oracle-linux oracle-rac
Share. Facebook Twitter Pinterest LinkedIn Tumblr Email WhatsApp
Previous ArticleMongoDB 8.0 + MongoShake on Oracle Linux 8 — From Scratch to Cutover
Next Article Oracle RAC 12.2 on VMware Workstation – Post 1: VMware Setup and iSCSI Target with targetcli

Related Posts

Oracle

Oracle RAC 12.2 on VMware Workstation — Post 5: Final Validation and Quick Reference

2026-05-11
Read More
Oracle

Oracle RAC 12.2 on VMware Workstation – Post 4: Oracle Database Installation and DBCA

2026-05-11
Read More
Oracle

Oracle RAC 12.2 on VMware Workstation — Post 2: Oracle Linux Configuration and iSCSI

2026-05-11
Read More
View 5 Comments

5 Comments

  1. Pingback: Oracle RAC 12.2 on VMware Workstation — Post 1: VMware Setup and iSCSI Target with targetcli | Execute Step

  2. Pingback: Oracle RAC 12.2 on VMware Workstation — Post 2: Oracle Linux Configuration and iSCSI | Execute Step

  3. Pingback: Oracle RAC 12.2 on VMware Workstation — Post 3: Grid Infrastructure Installation | Execute Step

  4. Pingback: Oracle RAC 12.2 on VMware Workstation — Post 4: Oracle Database Installation and DBCA | Execute Step

  5. Pingback: Oracle RAC 12.2 on VMware Workstation — Post 5: Final Validation and Quick Reference | Execute Step

Leave A Reply Cancel Reply

Demo
Follow Me
  • Email
  • GitHub
  • LinkedIn
  • RSS
  • YouTube

INS-06006 – Passwordless SSH Connectivity Not Set Up

2026-02-2614 Views

ORA-29548 — How to Fix “Java System Class Reported” in Oracle Database

2026-03-0510 Views

PRVG-2002 — How to Fix “Encountered Error in Copying File” in Oracle RAC

2026-03-078 Views
Demo
Blogroll
  • oravirt
Execute Step
YouTube LinkedIn RSS
  • Home
  • About
  • Contact
  • RSS
  • English
    • Português (Portuguese (Brazil))
© 2026 ExecuteStep. Designed by ThemeSphere.

Type above and press Enter to search. Press Esc to cancel.

Ad Blocker Enabled!
Ad Blocker Enabled!
Our website is made possible by displaying online advertisements to our visitors. Please support us by disabling your Ad Blocker.