Deploying Oracle 10G RAC with Linux and ASM on ESXi Platform
Oracle 10G RAC+Linux+ASM Installation Guide
1. Software Preparation
10201_database_linux_x86_64.cpio - Oracle 10.2.0.1 database software
10201_clusterware_linux_x86_64.cpio.gz - Oracle 10.2.0.1 clusterware software
p8202632_10205_Linux-x86-64.zip - Oracle 10.2.0.5 upgrade package
2. System Environment Setup
Hostname
IP Addresses
Operating ...
Posted on Fri, 21 Aug 2026 16:14:57 +0000 by jamey
Configuring Oracle Data Guard for 11g RAC with ASM Storage
Environment Overview
The following infrastructure details apply to the Primary and Standby sites. Note that the Standby instance requires only the database software installation; the database itself is created logically during recovery.
# /etc/hosts Configuration
# Public IPs
192.168.10.10 prod-prm-1
192.168.10.11 prod-prm-2
192.168.10.12 d ...
Posted on Mon, 11 May 2026 00:15:54 +0000 by JohnnyBlaze
How Java Debuggers Dynamically Modify Running Code
Java debuggers like those in IntelliJ IDEA support powerful features such as evaluating arbitrary expressions at breakpoints. This capability—modifying behavior of a running JVM without restarting—relies on several advanced JVM technologies working in concert.
The core mechanism involves dynamically altering bytecode of already-loaded classes. ...
Posted on Fri, 08 May 2026 10:12:03 +0000 by Silverado_NL