STEP BY STEP ORACLE RAC 12C (FLEX ASM) INSTALLATION ON LINUX X86_64 (VM)

Size: px
Start display at page:

Download "STEP BY STEP ORACLE RAC 12C (FLEX ASM) INSTALLATION ON LINUX X86_64 (VM)"

Transcription

1 STEP BY STEP ORACLE RAC 12C (FLEX ASM) INSTALLATION ON LINUX X86_64 (VM) V1.0 Contents 1. Prepare Operating System 2. GRID Infrastructure Installation 3. RDBMS Installation 4. Container Database Creation Erman Ibrisim

2 STEP BY STEP ORACLE 12C (FLEX ASM) INSTALLATION ON LINUX X86_64 (VM) - Summary Node 1 Node 2 Operating System OEL 6.5 OEL 6.5 Hostname rac12c1.gantek.com rac12c2.gantek.com Puclic IP Address VIP IP Address PRIV IP Address Scan IP Addresses Scan name rac12c-scan Cluster Name rac12c-cluster GNS VIP Address ASM Home /u01/app/12.1.0/grid ASM Version DB Home /u02/app/oracle/product/12.1.0/db DB Version

3 1. Prepare Operating System - Edit /etc/hosts file. $ cat /etc/hosts localhost localhost.localdomain rac12c1.gantek.com rac12c rac12c2.gantek.com rac12c2 #VIP IP rac12c1-vip.gantek.com rac12c1-vip rac12c2-vip.gantek.com rac12c2-vip #PRIV rac12c1-priv.gantek.com rac12c1-priv rac12c2-priv.gantek.com rac12c2-priv - Disable selinux. $ vi /etc/selunix/config... SELINUX = disabled - Install oracle-rdbms-server-12cr1-preinstall rpm yum install oracle-rdbms-server-12cr1-preinstall or download the rpm from and install. rpm ivh oracle-rdbms-server-12cr1-preinstall - Enter DNS records to DNS server. To configure DNS server refer my post. rac12c-scan Set DNS server to all nodes. [oracle@rac12c1 ~]$ cat /etc/resolv.conf search gantek.com nameserver [oracle@rac12c2 ~]$ cat /etc/resolv.conf search gantek.com nameserver

4 - Test the DNS records. ~]$ nslookup rac12c-scan Server: Address: #53 Name: rac12c-scan.gantek.com Address: Name: rac12c-scan.gantek.com Address: Name: rac12c-scan.gantek.com Address: Start ntpd service with -x option. [root@rac12c1 ~]$ cat /etc/sysconfig/ntpd # Drop root to id 'ntp:ntp' by default. OPTIONS="-x -u ntp:ntp -p /var/run/ntpd.pid" [root@rac12c1 ~]$ service ntpd start [root@rac12c1 ~]$ chkconfig ntpd on [root@rac12c2 ~]$ cat /etc/sysconfig/ntpd # Drop root to id 'ntp:ntp' by default. OPTIONS="-x -u ntp:ntp -p /var/run/ntpd.pid" [root@rac12c2 ~]$ service ntpd start [root@rac12c2 ~]$ chkconfig ntpd on - Create 2 shared disk on vm for ASM disks.

5

6

7 - Add shared disks to other nodes. Note: You should add disk with same order to all nodes.

8 - Format shared disks on node1. ~]# fdisk /dev/sdd Command (m for help): n Command action e extended p primary partition (1-4) p Partition number (1-4): 1 First sector ( , default 61): 2048 Last sector or +size or +sizem or +sizek ( , default ): Using default value Command (m for help): w The partition table has been altered! [root@rac12c1 ~]# fdisk /dev/sde Command (m for help): n Command action e extended p primary partition (1-4) p Partition number (1-4): 1 First sector ( , default 61): 2048 Last sector or +size or +sizem or +sizek ( , default ): Using default value Command (m for help): w The partition table has been altered! [root@rac12c1 ~]# fdisk -l /dev/sdd Disk /dev/sdd: 12.9 GB, bytes 255 heads, 63 sectors/track, 1566 cylinders Units = cylinders of * 512 = bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0x385d52f9 Device Boot Start End Blocks Id System /dev/sdd Linux [root@rac12c1 ~]# fdisk -l /dev/sde Disk /dev/sde: 12.9 GB, bytes 255 heads, 63 sectors/track, 1566 cylinders Units = cylinders of * 512 = bytes Sector size (logical/physical): 512 bytes / 512 bytes I/O size (minimum/optimal): 512 bytes / 512 bytes Disk identifier: 0x302b6a29 Device Boot Start End Blocks Id System /dev/sde Linux

9 - İssue partprobe commad on other nodes. ~]# partprobe - Change owner of the asm disks. [root@rac12c1 ~]# chown oracle:oinstall /dev/sdd1 [root@rac12c1 ~]# chown oracle:oinstall /dev/sde1 [root@rac12c2 ~]# chown oracle:oinstall /dev/sdd1 [root@rac12c2 ~]# chown oracle:oinstall /dev/sde1 - Add Internal Network adapter to all nodes for interconnect. - Configure interconnect interfaces. [root@rac12c1 ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth1 DEVICE=eth1 TYPE=Ethernet ONBOOT=yes BOOTPROTO=none IPADDR= PREFIX=24 GATEWAY= DEFROUTE=yes IPV4_FAILURE_FATAL=yes

10 IPV6INIT=no NAME="System eth1" ARPCHECK=no ~]# service network restart ~]# cat /etc/sysconfig/network-scripts/ifcfg-eth1 DEVICE=eth1 TYPE=Ethernet ONBOOT=yes BOOTPROTO=none IPADDR= PREFIX=24 GATEWAY= DEFROUTE=yes IPV4_FAILURE_FATAL=yes IPV6INIT=no NAME="System eth1" ARPCHECK=no ~]# service network restart 2. GRID Infrastructure Installation - Install oracleasm RPMs. [root@rac12c1 ~]# rpm -ivh oracleasm-support el6.x86_64 [root@rac12c1 ~]# rpm -ivh oracleasmlib el6.x86_64 [root@rac12c1 ~]# rpm -qa grep oracleasm oracleasm-support el6.x86_64 oracleasmlib el6.x86_64 [root@rac12c2 ~]# rpm -ivh oracleasm-support el6.x86_64 [root@rac12c2 ~]# rpm -ivh oracleasmlib el6.x86_64 [root@rac12c2 ~]# rpm -qa grep oracleasm oracleasm-support el6.x86_64 oracleasmlib el6.x86_64 - Configure oracleasm. [root@rac12c1 ~]# oracleasm configure -i Configuring the Oracle ASM library driver. This will configure the on-boot properties of the Oracle ASM library driver. The following questions will determine whether the driver is loaded on boot and what permissions it will have. The current values will be shown in brackets ('[]'). Hitting <ENTER> without typing an answer will keep that current value. Ctrl-C will abort. Default user to own the driver interface [oracle]:

11 Default group to own the driver interface [oinstall]: Start Oracle ASM library driver on boot (y/n) [y]: Scan for Oracle ASM disks on boot (y/n) [y]: Writing Oracle ASM library driver configuration: done ~]# oracleasm configure -i Configuring the Oracle ASM library driver. This will configure the on-boot properties of the Oracle ASM library driver. The following questions will determine whether the driver is loaded on boot and what permissions it will have. The current values will be shown in brackets ('[]'). Hitting <ENTER> without typing an answer will keep that current value. Ctrl-C will abort. Default user to own the driver interface [oracle]: Default group to own the driver interface [oinstall]: Start Oracle ASM library driver on boot (y/n) [y]: Scan for Oracle ASM disks on boot (y/n) [y]: Writing Oracle ASM library driver configuration: done - Create ASM disks. [root@rac12c1 ~]# oracleasm createdisk DATA /dev/sdd1 [root@rac12c1 ~]# oracleasm createdisk FRA /dev/sde1 - Issue oracleasm scandisks on other nodes. [root@rac12c2 ~]# oracleasm scandisks Reloading disk partitions: done Cleaning any stale ASM disks... Scanning system for ASM disks... [root@rac12c2 ~]# oracleasm listdisks DATA FRA - Unzip the binaries and change the owner of grid folder. [root@rac12c1 ~]# unzip p _112040_linux-x86-64_3of7.zip [root@rac12c1 ~]# unzip p _112040_linux-x86-64_4of7.zip [root@rac12c1 ~]# chown R oracle:oinstall grid/ - Start the installer. [oracle@rac12c1 ~]$ cd grid [oracle@rac12c1 ~]$./runinstaller

12

13

14 - If passwordless ssh failed, refer my post to configure manually.

15

16

17

18

19

20

21 - Here is the root.sh outputs. ~]# /u01/app/12.1.0/grid/root.sh Performing root user operation. The following environment variables are set as: ORACLE_OWNER= oracle ORACLE_HOME= /u01/app/12.1.0/grid Enter the full pathname of the local bin directory: [/usr/local/bin]: The file "dbhome" already exists in /usr/local/bin. Overwrite it? (y/n) [n]: The file "oraenv" already exists in /usr/local/bin. Overwrite it? (y/n) [n]: The file "coraenv" already exists in /usr/local/bin. Overwrite it? (y/n) [n]: Entries will be added to the /etc/oratab file as needed by Database Configuration Assistant when a database is created Finished running generic part of root script. Now product-specific root actions will be performed. Using configuration parameter file: /u01/app/12.1.0/grid/crs/install/crsconfig_params 2016/08/15 11:35:36 CLSRSC-4001: Installing Oracle Trace File Analyzer (TFA) Collector. 2016/08/15 11:36:02 CLSRSC-4002: Successfully installed Oracle Trace File Analyzer (TFA) Collector. 2016/08/15 11:36:03 CLSRSC-363: User ignored prerequisites during installation OLR initialization - successful root wallet root wallet cert root cert export peer wallet profile reader wallet pa wallet peer wallet keys pa wallet keys peer cert request pa cert request peer cert pa cert peer root cert TP profile reader root cert TP pa root cert TP peer pa cert TP pa peer cert TP profile reader pa cert TP profile reader peer cert TP peer user cert pa user cert 2016/08/15 11:36:49 CLSRSC-330: Adding Clusterware entries to file 'oracle-ohasd.conf' CRS-4133: Oracle High Availability Services has been stopped. CRS-4123: Oracle High Availability Services has been started. CRS-4133: Oracle High Availability Services has been stopped. CRS-4123: Oracle High Availability Services has been started. CRS-2672: Attempting to start 'ora.evmd' on 'rac12c1' CRS-2672: Attempting to start 'ora.mdnsd' on 'rac12c1' CRS-2676: Start of 'ora.evmd' on 'rac12c1' succeeded CRS-2676: Start of 'ora.mdnsd' on 'rac12c1' succeeded CRS-2672: Attempting to start 'ora.gpnpd' on 'rac12c1' CRS-2676: Start of 'ora.gpnpd' on 'rac12c1' succeeded CRS-2672: Attempting to start 'ora.cssdmonitor' on 'rac12c1' CRS-2672: Attempting to start 'ora.gipcd' on 'rac12c1' CRS-2676: Start of 'ora.cssdmonitor' on 'rac12c1' succeeded CRS-2676: Start of 'ora.gipcd' on 'rac12c1' succeeded CRS-2672: Attempting to start 'ora.cssd' on 'rac12c1' CRS-2672: Attempting to start 'ora.diskmon' on 'rac12c1' CRS-2676: Start of 'ora.diskmon' on 'rac12c1' succeeded CRS-2676: Start of 'ora.cssd' on 'rac12c1' succeeded ASM created and started successfully. Disk Group DATA created successfully. CRS-2672: Attempting to start 'ora.crf' on 'rac12c1' CRS-2672: Attempting to start 'ora.storage' on 'rac12c1' CRS-2676: Start of 'ora.storage' on 'rac12c1' succeeded CRS-2676: Start of 'ora.crf' on 'rac12c1' succeeded CRS-2672: Attempting to start 'ora.crsd' on 'rac12c1' CRS-2676: Start of 'ora.crsd' on 'rac12c1' succeeded CRS-4256: Updating the profile Successful addition of voting disk 6919a759fed34f3ebf0f39778f0b6032. Successfully replaced voting disk group with +DATA.

22 CRS-4256: Updating the profile CRS-4266: Voting file(s) successfully replaced ## STATE File Universal Id File Name Disk group ONLINE 6919a759fed34f3ebf0f39778f0b6032 (ORCL:DATA) [DATA] Located 1 voting disk(s). CRS-2791: Starting shutdown of Oracle High Availability Services-managed resources on 'rac12c1' CRS-2673: Attempting to stop 'ora.crsd' on 'rac12c1' CRS-2677: Stop of 'ora.crsd' on 'rac12c1' succeeded CRS-2673: Attempting to stop 'ora.storage' on 'rac12c1' CRS-2673: Attempting to stop 'ora.mdnsd' on 'rac12c1' CRS-2673: Attempting to stop 'ora.gpnpd' on 'rac12c1' CRS-2673: Attempting to stop 'ora.drivers.acfs' on 'rac12c1' CRS-2677: Stop of 'ora.storage' on 'rac12c1' succeeded CRS-2677: Stop of 'ora.drivers.acfs' on 'rac12c1' succeeded CRS-2673: Attempting to stop 'ora.crf' on 'rac12c1' CRS-2673: Attempting to stop 'ora.ctssd' on 'rac12c1' CRS-2673: Attempting to stop 'ora.evmd' on 'rac12c1' CRS-2673: Attempting to stop 'ora.asm' on 'rac12c1' CRS-2677: Stop of 'ora.mdnsd' on 'rac12c1' succeeded CRS-2677: Stop of 'ora.gpnpd' on 'rac12c1' succeeded CRS-2677: Stop of 'ora.ctssd' on 'rac12c1' succeeded CRS-2677: Stop of 'ora.crf' on 'rac12c1' succeeded CRS-2677: Stop of 'ora.evmd' on 'rac12c1' succeeded CRS-2677: Stop of 'ora.asm' on 'rac12c1' succeeded CRS-2673: Attempting to stop 'ora.cluster_interconnect.haip' on 'rac12c1' CRS-2677: Stop of 'ora.cluster_interconnect.haip' on 'rac12c1' succeeded CRS-2673: Attempting to stop 'ora.cssd' on 'rac12c1' CRS-2677: Stop of 'ora.cssd' on 'rac12c1' succeeded CRS-2673: Attempting to stop 'ora.gipcd' on 'rac12c1' CRS-2677: Stop of 'ora.gipcd' on 'rac12c1' succeeded CRS-2793: Shutdown of Oracle High Availability Services-managed resources on 'rac12c1' has completed CRS-4133: Oracle High Availability Services has been stopped. CRS-4123: Starting Oracle High Availability Services-managed resources CRS-2672: Attempting to start 'ora.mdnsd' on 'rac12c1' CRS-2672: Attempting to start 'ora.evmd' on 'rac12c1' CRS-2676: Start of 'ora.mdnsd' on 'rac12c1' succeeded CRS-2676: Start of 'ora.evmd' on 'rac12c1' succeeded CRS-2672: Attempting to start 'ora.gpnpd' on 'rac12c1' CRS-2676: Start of 'ora.gpnpd' on 'rac12c1' succeeded CRS-2672: Attempting to start 'ora.gipcd' on 'rac12c1' CRS-2676: Start of 'ora.gipcd' on 'rac12c1' succeeded CRS-2672: Attempting to start 'ora.cssdmonitor' on 'rac12c1' CRS-2676: Start of 'ora.cssdmonitor' on 'rac12c1' succeeded CRS-2672: Attempting to start 'ora.cssd' on 'rac12c1' CRS-2672: Attempting to start 'ora.diskmon' on 'rac12c1' CRS-2676: Start of 'ora.diskmon' on 'rac12c1' succeeded CRS-2676: Start of 'ora.cssd' on 'rac12c1' succeeded CRS-2672: Attempting to start 'ora.cluster_interconnect.haip' on 'rac12c1' CRS-2672: Attempting to start 'ora.ctssd' on 'rac12c1' CRS-2676: Start of 'ora.ctssd' on 'rac12c1' succeeded CRS-2676: Start of 'ora.cluster_interconnect.haip' on 'rac12c1' succeeded CRS-2672: Attempting to start 'ora.asm' on 'rac12c1' CRS-2676: Start of 'ora.asm' on 'rac12c1' succeeded CRS-2672: Attempting to start 'ora.storage' on 'rac12c1' CRS-2676: Start of 'ora.storage' on 'rac12c1' succeeded CRS-2672: Attempting to start 'ora.crf' on 'rac12c1' CRS-2676: Start of 'ora.crf' on 'rac12c1' succeeded CRS-2672: Attempting to start 'ora.crsd' on 'rac12c1' CRS-2676: Start of 'ora.crsd' on 'rac12c1' succeeded CRS-6023: Starting Oracle Cluster Ready Services-managed resources CRS-6017: Processing resource auto-start for servers: rac12c1 CRS-6016: Resource auto-start has completed for server rac12c1 CRS-6024: Completed start of Oracle Cluster Ready Services-managed resources CRS-4123: Oracle High Availability Services has been started. 2016/08/15 11:42:05 CLSRSC-343: Successfully started Oracle Clusterware stack CRS-2672: Attempting to start 'ora.net1.network' on 'rac12c1' CRS-2676: Start of 'ora.net1.network' on 'rac12c1' succeeded CRS-2672: Attempting to start 'ora.gns.vip' on 'rac12c1' CRS-2676: Start of 'ora.gns.vip' on 'rac12c1' succeeded CRS-2672: Attempting to start 'ora.gns' on 'rac12c1' CRS-2676: Start of 'ora.gns' on 'rac12c1' succeeded CRS-2672: Attempting to start 'ora.asmnet1lsnr_asm.lsnr' on 'rac12c1' CRS-2676: Start of 'ora.asmnet1lsnr_asm.lsnr' on 'rac12c1' succeeded CRS-2672: Attempting to start 'ora.asm' on 'rac12c1' CRS-2676: Start of 'ora.asm' on 'rac12c1' succeeded CRS-2672: Attempting to start 'ora.data.dg' on 'rac12c1' CRS-2676: Start of 'ora.data.dg' on 'rac12c1' succeeded CRS-2791: Starting shutdown of Oracle High Availability Services-managed resources on 'rac12c1' CRS-2673: Attempting to stop 'ora.crsd' on 'rac12c1' CRS-2790: Starting shutdown of Cluster Ready Services-managed resources on 'rac12c1' CRS-2673: Attempting to stop 'ora.cvu' on 'rac12c1' CRS-2673: Attempting to stop 'ora.data.dg' on 'rac12c1' CRS-2673: Attempting to stop 'ora.oc4j' on 'rac12c1'

23 CRS-2673: Attempting to stop 'ora.listener_scan3.lsnr' on 'rac12c1' CRS-2673: Attempting to stop 'ora.listener_scan2.lsnr' on 'rac12c1' CRS-2673: Attempting to stop 'ora.gns' on 'rac12c1' CRS-2673: Attempting to stop 'ora.listener_scan1.lsnr' on 'rac12c1' CRS-2673: Attempting to stop 'ora.rac12c1.vip' on 'rac12c1' CRS-2677: Stop of 'ora.cvu' on 'rac12c1' succeeded CRS-2677: Stop of 'ora.data.dg' on 'rac12c1' succeeded CRS-2673: Attempting to stop 'ora.asm' on 'rac12c1' CRS-2677: Stop of 'ora.listener_scan3.lsnr' on 'rac12c1' succeeded CRS-2673: Attempting to stop 'ora.scan3.vip' on 'rac12c1' CRS-2677: Stop of 'ora.listener_scan1.lsnr' on 'rac12c1' succeeded CRS-2673: Attempting to stop 'ora.scan1.vip' on 'rac12c1' CRS-2677: Stop of 'ora.listener_scan2.lsnr' on 'rac12c1' succeeded CRS-2673: Attempting to stop 'ora.scan2.vip' on 'rac12c1' CRS-2677: Stop of 'ora.asm' on 'rac12c1' succeeded CRS-2673: Attempting to stop 'ora.asmnet1lsnr_asm.lsnr' on 'rac12c1' CRS-2677: Stop of 'ora.asmnet1lsnr_asm.lsnr' on 'rac12c1' succeeded CRS-2677: Stop of 'ora.rac12c1.vip' on 'rac12c1' succeeded CRS-2677: Stop of 'ora.scan3.vip' on 'rac12c1' succeeded CRS-2677: Stop of 'ora.scan1.vip' on 'rac12c1' succeeded CRS-2677: Stop of 'ora.gns' on 'rac12c1' succeeded CRS-2673: Attempting to stop 'ora.gns.vip' on 'rac12c1' CRS-2677: Stop of 'ora.scan2.vip' on 'rac12c1' succeeded CRS-2677: Stop of 'ora.gns.vip' on 'rac12c1' succeeded CRS-2677: Stop of 'ora.oc4j' on 'rac12c1' succeeded CRS-2673: Attempting to stop 'ora.ons' on 'rac12c1' CRS-2677: Stop of 'ora.ons' on 'rac12c1' succeeded CRS-2673: Attempting to stop 'ora.net1.network' on 'rac12c1' CRS-2677: Stop of 'ora.net1.network' on 'rac12c1' succeeded CRS-2792: Shutdown of Cluster Ready Services-managed resources on 'rac12c1' has completed CRS-2677: Stop of 'ora.crsd' on 'rac12c1' succeeded CRS-2673: Attempting to stop 'ora.ctssd' on 'rac12c1' CRS-2673: Attempting to stop 'ora.gpnpd' on 'rac12c1' CRS-2673: Attempting to stop 'ora.mdnsd' on 'rac12c1' CRS-2673: Attempting to stop 'ora.drivers.acfs' on 'rac12c1' CRS-2677: Stop of 'ora.drivers.acfs' on 'rac12c1' succeeded CRS-2677: Stop of 'ora.ctssd' on 'rac12c1' succeeded CRS-2673: Attempting to stop 'ora.evmd' on 'rac12c1' CRS-2673: Attempting to stop 'ora.storage' on 'rac12c1' CRS-2677: Stop of 'ora.gpnpd' on 'rac12c1' succeeded CRS-2677: Stop of 'ora.mdnsd' on 'rac12c1' succeeded CRS-2677: Stop of 'ora.storage' on 'rac12c1' succeeded CRS-2673: Attempting to stop 'ora.asm' on 'rac12c1' CRS-2677: Stop of 'ora.evmd' on 'rac12c1' succeeded CRS-2677: Stop of 'ora.asm' on 'rac12c1' succeeded CRS-2673: Attempting to stop 'ora.cluster_interconnect.haip' on 'rac12c1' CRS-2677: Stop of 'ora.cluster_interconnect.haip' on 'rac12c1' succeeded CRS-2673: Attempting to stop 'ora.cssd' on 'rac12c1' CRS-2677: Stop of 'ora.cssd' on 'rac12c1' succeeded CRS-2673: Attempting to stop 'ora.crf' on 'rac12c1' CRS-2677: Stop of 'ora.crf' on 'rac12c1' succeeded CRS-2673: Attempting to stop 'ora.gipcd' on 'rac12c1' CRS-2677: Stop of 'ora.gipcd' on 'rac12c1' succeeded CRS-2793: Shutdown of Oracle High Availability Services-managed resources on 'rac12c1' has completed CRS-4133: Oracle High Availability Services has been stopped. CRS-4123: Starting Oracle High Availability Services-managed resources CRS-2672: Attempting to start 'ora.mdnsd' on 'rac12c1' CRS-2672: Attempting to start 'ora.evmd' on 'rac12c1' CRS-2676: Start of 'ora.mdnsd' on 'rac12c1' succeeded CRS-2676: Start of 'ora.evmd' on 'rac12c1' succeeded CRS-2672: Attempting to start 'ora.gpnpd' on 'rac12c1' CRS-2676: Start of 'ora.gpnpd' on 'rac12c1' succeeded CRS-2672: Attempting to start 'ora.gipcd' on 'rac12c1' CRS-2676: Start of 'ora.gipcd' on 'rac12c1' succeeded CRS-2672: Attempting to start 'ora.cssdmonitor' on 'rac12c1' CRS-2676: Start of 'ora.cssdmonitor' on 'rac12c1' succeeded CRS-2672: Attempting to start 'ora.cssd' on 'rac12c1' CRS-2672: Attempting to start 'ora.diskmon' on 'rac12c1' CRS-2676: Start of 'ora.diskmon' on 'rac12c1' succeeded CRS-2676: Start of 'ora.cssd' on 'rac12c1' succeeded CRS-2672: Attempting to start 'ora.cluster_interconnect.haip' on 'rac12c1' CRS-2672: Attempting to start 'ora.ctssd' on 'rac12c1' CRS-2676: Start of 'ora.ctssd' on 'rac12c1' succeeded CRS-2676: Start of 'ora.cluster_interconnect.haip' on 'rac12c1' succeeded CRS-2672: Attempting to start 'ora.asm' on 'rac12c1' CRS-2676: Start of 'ora.asm' on 'rac12c1' succeeded CRS-2672: Attempting to start 'ora.storage' on 'rac12c1' CRS-2676: Start of 'ora.storage' on 'rac12c1' succeeded CRS-2672: Attempting to start 'ora.crf' on 'rac12c1' CRS-2676: Start of 'ora.crf' on 'rac12c1' succeeded CRS-2672: Attempting to start 'ora.crsd' on 'rac12c1' CRS-2676: Start of 'ora.crsd' on 'rac12c1' succeeded CRS-6023: Starting Oracle Cluster Ready Services-managed resources CRS-2664: Resource 'ora.data.dg' is already running on 'rac12c1' CRS-6017: Processing resource auto-start for servers: rac12c1

24 CRS-2672: Attempting to start 'ora.oc4j' on 'rac12c1' CRS-2672: Attempting to start 'ora.listener_scan1.lsnr' on 'rac12c1' CRS-2672: Attempting to start 'ora.listener_scan2.lsnr' on 'rac12c1' CRS-2672: Attempting to start 'ora.listener_scan3.lsnr' on 'rac12c1' CRS-2676: Start of 'ora.listener_scan1.lsnr' on 'rac12c1' succeeded CRS-2676: Start of 'ora.listener_scan2.lsnr' on 'rac12c1' succeeded CRS-2676: Start of 'ora.listener_scan3.lsnr' on 'rac12c1' succeeded CRS-2676: Start of 'ora.oc4j' on 'rac12c1' succeeded CRS-6016: Resource auto-start has completed for server rac12c1 CRS-6024: Completed start of Oracle Cluster Ready Services-managed resources CRS-4123: Oracle High Availability Services has been started. 2016/08/15 11:45:46 CLSRSC-325: Configure Oracle Grid Infrastructure for a Cluster... succeeded [root@rac12c2 ~]# /u01/app/12.1.0/grid/root.sh Performing root user operation. The following environment variables are set as: ORACLE_OWNER= oracle ORACLE_HOME= /u01/app/12.1.0/grid Enter the full pathname of the local bin directory: [/usr/local/bin]: The file "dbhome" already exists in /usr/local/bin. Overwrite it? (y/n) [n]: The file "oraenv" already exists in /usr/local/bin. Overwrite it? (y/n) [n]: The file "coraenv" already exists in /usr/local/bin. Overwrite it? (y/n) [n]: Entries will be added to the /etc/oratab file as needed by Database Configuration Assistant when a database is created Finished running generic part of root script. Now product-specific root actions will be performed. Using configuration parameter file: /u01/app/12.1.0/grid/crs/install/crsconfig_params 2016/08/15 11:46:13 CLSRSC-4001: Installing Oracle Trace File Analyzer (TFA) Collector. 2016/08/15 11:46:37 CLSRSC-4002: Successfully installed Oracle Trace File Analyzer (TFA) Collector. 2016/08/15 11:46:38 CLSRSC-363: User ignored prerequisites during installation OLR initialization - successful 2016/08/15 11:47:55 CLSRSC-330: Adding Clusterware entries to file 'oracle-ohasd.conf' CRS-4133: Oracle High Availability Services has been stopped. CRS-4123: Oracle High Availability Services has been started. CRS-4133: Oracle High Availability Services has been stopped. CRS-4123: Oracle High Availability Services has been started. CRS-2791: Starting shutdown of Oracle High Availability Services-managed resources on 'rac12c2' CRS-2673: Attempting to stop 'ora.drivers.acfs' on 'rac12c2' CRS-2677: Stop of 'ora.drivers.acfs' on 'rac12c2' succeeded CRS-2793: Shutdown of Oracle High Availability Services-managed resources on 'rac12c2' has completed CRS-4133: Oracle High Availability Services has been stopped. CRS-4123: Starting Oracle High Availability Services-managed resources CRS-2672: Attempting to start 'ora.mdnsd' on 'rac12c2' CRS-2672: Attempting to start 'ora.evmd' on 'rac12c2' CRS-2676: Start of 'ora.mdnsd' on 'rac12c2' succeeded CRS-2676: Start of 'ora.evmd' on 'rac12c2' succeeded CRS-2672: Attempting to start 'ora.gpnpd' on 'rac12c2' CRS-2676: Start of 'ora.gpnpd' on 'rac12c2' succeeded CRS-2672: Attempting to start 'ora.gipcd' on 'rac12c2' CRS-2676: Start of 'ora.gipcd' on 'rac12c2' succeeded CRS-2672: Attempting to start 'ora.cssdmonitor' on 'rac12c2' CRS-2676: Start of 'ora.cssdmonitor' on 'rac12c2' succeeded CRS-2672: Attempting to start 'ora.cssd' on 'rac12c2' CRS-2672: Attempting to start 'ora.diskmon' on 'rac12c2' CRS-2676: Start of 'ora.diskmon' on 'rac12c2' succeeded CRS-2676: Start of 'ora.cssd' on 'rac12c2' succeeded CRS-2672: Attempting to start 'ora.cluster_interconnect.haip' on 'rac12c2' CRS-2672: Attempting to start 'ora.ctssd' on 'rac12c2' CRS-2676: Start of 'ora.ctssd' on 'rac12c2' succeeded CRS-2676: Start of 'ora.cluster_interconnect.haip' on 'rac12c2' succeeded CRS-2672: Attempting to start 'ora.asm' on 'rac12c2' CRS-2676: Start of 'ora.asm' on 'rac12c2' succeeded CRS-2672: Attempting to start 'ora.storage' on 'rac12c2' CRS-2676: Start of 'ora.storage' on 'rac12c2' succeeded CRS-2672: Attempting to start 'ora.crf' on 'rac12c2' CRS-2676: Start of 'ora.crf' on 'rac12c2' succeeded CRS-2672: Attempting to start 'ora.crsd' on 'rac12c2' CRS-2676: Start of 'ora.crsd' on 'rac12c2' succeeded CRS-6017: Processing resource auto-start for servers: rac12c2 CRS-2673: Attempting to stop 'ora.listener_scan1.lsnr' on 'rac12c1' CRS-2672: Attempting to start 'ora.net1.network' on 'rac12c2' CRS-2672: Attempting to start 'ora.asmnet1lsnr_asm.lsnr' on 'rac12c2' CRS-2677: Stop of 'ora.listener_scan1.lsnr' on 'rac12c1' succeeded

25 CRS-2676: Start of 'ora.net1.network' on 'rac12c2' succeeded CRS-2673: Attempting to stop 'ora.scan1.vip' on 'rac12c1' CRS-2672: Attempting to start 'ora.ons' on 'rac12c2' CRS-2677: Stop of 'ora.scan1.vip' on 'rac12c1' succeeded CRS-2672: Attempting to start 'ora.scan1.vip' on 'rac12c2' CRS-2676: Start of 'ora.scan1.vip' on 'rac12c2' succeeded CRS-2672: Attempting to start 'ora.listener_scan1.lsnr' on 'rac12c2' CRS-2676: Start of 'ora.asmnet1lsnr_asm.lsnr' on 'rac12c2' succeeded CRS-2672: Attempting to start 'ora.asm' on 'rac12c2' CRS-2676: Start of 'ora.ons' on 'rac12c2' succeeded CRS-2676: Start of 'ora.listener_scan1.lsnr' on 'rac12c2' succeeded CRS-2676: Start of 'ora.asm' on 'rac12c2' succeeded CRS-6016: Resource auto-start has completed for server rac12c2 CRS-6024: Completed start of Oracle Cluster Ready Services-managed resources CRS-4123: Oracle High Availability Services has been started. 2016/08/15 11:51:23 CLSRSC-343: Successfully started Oracle Clusterware stack 2016/08/15 11:51:39 CLSRSC-325: Configure Oracle Grid Infrastructure for a Cluster... succeeded - ifconfig a outputs after installation complete. [root@rac12c1 ~]# ifconfig -a eth0 Link encap:ethernet HWaddr 08:00:27:33:36:D3 inet addr: Bcast: Mask: inet6 addr: fe80::a00:27ff:fe33:36d3/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets: errors:0 dropped:0 overruns:0 frame:0 TX packets: errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes: (22.2 MiB) TX bytes: (12.4 GiB) eth0:1 eth0:2 eth0:4 eth0:5 eth1 eth1:1 lo Link encap:ethernet HWaddr 08:00:27:33:36:D3 inet addr: Bcast: Mask: UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 Link encap:ethernet HWaddr 08:00:27:33:36:D3 inet addr: Bcast: Mask: UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 Link encap:ethernet HWaddr 08:00:27:33:36:D3 inet addr: Bcast: Mask: UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 Link encap:ethernet HWaddr 08:00:27:33:36:D3 inet addr: Bcast: Mask: UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 Link encap:ethernet HWaddr 08:00:27:BC:0B:C5 inet addr: Bcast: Mask: inet6 addr: fe80::a00:27ff:febc:bc5/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:7842 errors:0 dropped:0 overruns:0 frame:0 TX packets:9611 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes: (5.9 MiB) TX bytes: (8.2 MiB) Link encap:ethernet HWaddr 08:00:27:BC:0B:C5 inet addr: Bcast: Mask: UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 Link encap:local Loopback inet addr: Mask: inet6 addr: ::1/128 Scope:Host UP LOOPBACK RUNNING MTU:65536 Metric:1 RX packets:5818 errors:0 dropped:0 overruns:0 frame:0 TX packets:5818 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes: (17.0 MiB) TX bytes: (17.0 MiB) [root@rac12c2 ~]# ifconfig -a eth0 Link encap:ethernet HWaddr 08:00:27:33:36:D3 inet addr: Bcast: Mask: inet6 addr: fe80::a00:27ff:fe33:36d3/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets: errors:0 dropped:0 overruns:0 frame:0 TX packets: errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes: (7.2 GiB) TX bytes: (22.1 MiB)

26 eth0:1 eth0:2 eth1 eth1:1 lo Link encap:ethernet HWaddr 08:00:27:33:36:D3 inet addr: Bcast: Mask: UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 Link encap:ethernet HWaddr 08:00:27:33:36:D3 inet addr: Bcast: Mask: UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 Link encap:ethernet HWaddr 08:00:27:BC:0B:C5 inet addr: Bcast: Mask: inet6 addr: fe80::a00:27ff:febc:bc5/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:9864 errors:0 dropped:0 overruns:0 frame:0 TX packets:8918 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:1000 RX bytes: (8.4 MiB) TX bytes: (7.4 MiB) Link encap:ethernet HWaddr 08:00:27:BC:0B:C5 inet addr: Bcast: Mask: UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 Link encap:local Loopback inet addr: Mask: inet6 addr: ::1/128 Scope:Host UP LOOPBACK RUNNING MTU:65536 Metric:1 RX packets:1523 errors:0 dropped:0 overruns:0 frame:0 TX packets:1523 errors:0 dropped:0 overruns:0 carrier:0 collisions:0 txqueuelen:0 RX bytes: (1.5 MiB) TX bytes: (1.5 MiB) - crsctl stat res t output. [root@rac12c1 u01]# /u01/app/12.1.0/grid/bin/crsctl stat res -t Name Target State Server State details Local Resources ora.asmnet1lsnr_asm.lsnr ONLINE ONLINE rac12c1 STABLE ONLINE ONLINE rac12c2 STABLE ora.data.dg ONLINE ONLINE rac12c1 STABLE ONLINE ONLINE rac12c2 STABLE ora.listener.lsnr ONLINE ONLINE rac12c1 STABLE ONLINE ONLINE rac12c2 STABLE ora.net1.network ONLINE ONLINE rac12c1 STABLE ONLINE ONLINE rac12c2 STABLE ora.ons ONLINE ONLINE rac12c1 STABLE ONLINE ONLINE rac12c2 STABLE Cluster Resources ora.listener_scan1.lsnr 1 ONLINE ONLINE rac12c2 STABLE ora.listener_scan2.lsnr 1 ONLINE ONLINE rac12c1 STABLE ora.listener_scan3.lsnr 1 ONLINE ONLINE rac12c1 STABLE ora.mgmtlsnr 1 ONLINE ONLINE rac12c ,STABLE ora.asm 1 ONLINE ONLINE rac12c1 Started,STABLE 2 ONLINE ONLINE rac12c2 Started,STABLE 3 OFFLINE OFFLINE STABLE ora.cvu 1 ONLINE ONLINE rac12c1 STABLE ora.gns 1 ONLINE ONLINE rac12c1 STABLE ora.gns.vip 1 ONLINE ONLINE rac12c1 STABLE ora.mgmtdb 1 ONLINE ONLINE rac12c1 Open,STABLE ora.oc4j 1 ONLINE ONLINE rac12c1 STABLE ora.rac12c1.vip 1 ONLINE ONLINE rac12c1 STABLE

27 ora.rac12c2.vip 1 ONLINE ONLINE rac12c2 STABLE ora.scan1.vip 1 ONLINE ONLINE rac12c2 STABLE ora.scan2.vip 1 ONLINE ONLINE rac12c1 STABLE ora.scan3.vip 1 ONLINE ONLINE rac12c1 STABLE RDBMS Installation - Unzip the binaries and change owner of the database folder. [root@rac12c1 ~]# unzip p _112040_linux-x86-64_1of7.zip [root@rac12c1 ~]# unzip p _112040_linux-x86-64_2of7.zip [root@rac12c1 ~]# chown -R oracle:oinstall database/ - Start the installer. [oracle@rac12c1 ~]$ cd database [oracle@rac12c1 ~]$./runinstaller

28

29

30

31

32

33

34 - Root.sh outputs. ~]# /u02/app/oracle/product/12.1.0/db/root.sh Performing root user operation. The following environment variables are set as: ORACLE_OWNER= oracle ORACLE_HOME= /u02/app/oracle/product/12.1.0/db Enter the full pathname of the local bin directory: [/usr/local/bin]: The contents of "dbhome" have not changed. No need to overwrite. The contents of "oraenv" have not changed. No need to overwrite. The contents of "coraenv" have not changed. No need to overwrite. Entries will be added to the /etc/oratab file as needed by Database Configuration Assistant when a database is created Finished running generic part of root script. Now product-specific root actions will be performed. [root@rac12c2 ~]# /u02/app/oracle/product/12.1.0/db/root.sh Performing root user operation. The following environment variables are set as: ORACLE_OWNER= oracle ORACLE_HOME= /u02/app/oracle/product/12.1.0/db Enter the full pathname of the local bin directory: [/usr/local/bin]: The contents of "dbhome" have not changed. No need to overwrite. The contents of "oraenv" have not changed. No need to overwrite. The contents of "coraenv" have not changed. No need to overwrite. Entries will be added to the /etc/oratab file as needed by

35 Database Configuration Assistant when a database is created Finished running generic part of root script. Now product-specific root actions will be performed. 4. Container Database Creation - Start database configuration assistant (DBCA). [oracle@rac12c1 ~]# /u02/app/oracle/product/12.1.0/db/bin/dbca

36

37

38

39

40

41

42

43 - Connect Enterprise Manager Express - Connect container database [root@rac12c1 ~]# su - oracle [oracle@rac12c1 ~]$. oraenv ORACLE_SID = [beetle]? contdb The Oracle base has been set to /u01/app/oracle [oracle@rac12c1 ~]$ sqlplus sys/oracle123@contdb as sysdba SQL*Plus: Release Production on Thu Aug 18 15:08: Copyright (c) 1982, 2014, Oracle. All rights reserved. Connected to: Oracle Database 12c Enterprise Edition Release bit Production With the Partitioning, Real Application Clusters, Automatic Storage Management, OLAP,

44 Advanced Analytics and Real Application Testing options SQL> sho parameter name NAME TYPE VALUE cell_offloadgroup_name string db_file_name_convert string db_name string contdb db_unique_name string contdb global_names boolean FALSE instance_name string contdb2 lock_name_space string log_file_name_convert string pdb_file_name_convert string processor_group_name string service_names string contdb References; Grid Infrastructure Installation Guide for Linux Real Application Clusters Installation Guide for Linux and UNIX

Build Your Own Oracle RAC 11g Release 2 Cluster on Red Hat 4 and iscsi

Build Your Own Oracle RAC 11g Release 2 Cluster on Red Hat 4 and iscsi Build Your Own Oracle RAC 11g Release 2 Cluster on Red Hat 4 and iscsi Here is my setup which I have used for Installing Oracle RAC 11gR2 OpenFiler To access linux1 and linux2 Linux1 4 GB 250 GB Linux2

More information

raw]$ uname -a Linux laguna el6.x86_64 #1 SMP Tue Jan 29 11:47:41 EST 2013 x86_64 x86_64 x86_64 GNU/Linux

raw]$ uname -a Linux laguna el6.x86_64 #1 SMP Tue Jan 29 11:47:41 EST 2013 x86_64 x86_64 x86_64 GNU/Linux PART 1 of 4 - GRID INFRASTRUCTURE INSTALLATION Environment details: Red Hat Enterprise Linux Server release 6.4 (Santiago) Oracle 11.2.0.3 PSU4 Preinstallation Steps ## Information provided by OS admin:

More information

Oracle RAC 12C ohsdba

Oracle RAC 12C ohsdba Step by Step Install Oracle RAC 12.1.0.2 On OEL7.2 Oracle RAC 12C ohsdba 1 Prerequisites... 1 Hardware... 1 Software... 1 Install Summary... 1 Oracle Certification information... 2 Oracle Clusterware 12.1.0.2.0

More information

Build two node Oracle RAC 12c ( ) cluster on OEL 6.5 using Oracle VM Virtual Box

Build two node Oracle RAC 12c ( ) cluster on OEL 6.5 using Oracle VM Virtual Box Build two node Oracle RAC 12c (12.1.0.1) cluster on OEL 6.5 using Oracle VM Virtual Box In the article you will have a look at how to use some Oracle Virtual Box features to build two node Oracle 12c (12.1.0.1)

More information

Author A.Kishore Introduction Oracle RAC Software Oracle VirtualBox Software... 4

Author A.Kishore   Introduction Oracle RAC Software Oracle VirtualBox Software... 4 CONTENTS Introduction... 2 Oracle RAC Software... 3 Oracle VirtualBox Software... 4 Oracle Enterprise Linux 6.7 software... 4 Oracle VirtualBox Installation... 8 Virtual Machine Setup... 8 Guest Operating

More information

Upgrade Grid Infrastructure from to on Linux

Upgrade Grid Infrastructure from to on Linux Upgrade Grid Infrastructure from 11.2.0.2 to 11.2.0.3 on Linux Created by : Hans Camu Date : 29 August 2012 http://camoraict.wordpress.com In this article I will describe the steps to upgrade an Oracle

More information

RG-MACC_2.0 Installation Manual

RG-MACC_2.0 Installation Manual RG-MACC_2.0 Installation Manual Ruijie Networks Co., Ltd all rights reserved 1 Copyright Clarify Copyright ownership belongs to Ruijie, shall not be reproduced, copied, or used in other ways without permission.

More information

Build Your Own Oracle RAC 11g Release 2 Cluster on Red Hat 4 and iscsi

Build Your Own Oracle RAC 11g Release 2 Cluster on Red Hat 4 and iscsi Build Your Own Oracle RAC 11g Release 2 Cluster on Red Hat 4 and iscsi Here is my setup which I have used for Installing Oracle RAC 11gR2 Laptop windows XP To access linux1 and linux2 There are 2 operating

More information

Network Configuration for Cisco UCS Director Baremetal Agent

Network Configuration for Cisco UCS Director Baremetal Agent Network Configuration for Cisco UCS Director Baremetal Agent This chapter contains the following sections: About the Network Configuration Options, page 1 Single Network for Management and PXE, page 1

More information

RG-MACC-BASE_v2.01. Installation Guide

RG-MACC-BASE_v2.01. Installation Guide RG-MACC-BASE_v2.01 Preface Thank you for using our products. Audience This manual is intended for: Network engineers Technical support and servicing engineers Network administrators Symbols Important information.

More information

Oracle 11gR2 Two Node Real Application Cluster installation step by step guide on Linux using Vmware Server 2.0

Oracle 11gR2 Two Node Real Application Cluster installation step by step guide on Linux using Vmware Server 2.0 Oracle 11gR2 Two Node Real Application Cluster installation step by step guide on Linux using Vmware Server 2.0 Mohamed Azar. Database Administrator, Blogger, Contributor,Book Reviewer. http://mohamedazar.wordpress.com

More information

Oracle 11g RAC on Linux- CRS Inderpal S. Johal. Inderpal S. Johal

Oracle 11g RAC on Linux- CRS   Inderpal S. Johal. Inderpal S. Johal ORACLE CRS INSTALLATION : INSTALLATION AND CONFIGURATION GUIDE Inderpal S. Johal INTRODUCTION This document will gives details of Oracle Clusterware installation on RHEL 4. CRS INSTALLATION STEPS 1. Cluster

More information

IP over IB Protocol. Introduction CHAPTER

IP over IB Protocol. Introduction CHAPTER CHAPTER 3 The following sections appear in this chapter: Introduction, page 3-1 Manually Configure IPoIB for Default IB Partition, page 3-2 Subinterfaces, page 3-2 Verify IPoIB Functionality, page 3-5

More information

XE2000/XE3000 IP-PBX: Getting Started Guide Package Contents

XE2000/XE3000 IP-PBX: Getting Started Guide Package Contents XE2000/XE3000 IP-PBX: Getting Started Guide Package Contents XE2000/XE3000 (2U 19'' width unit) Power cord Support hardware for 19'' cabinet Prerequisites You need a computer equipped with Internet browser.

More information

05. 5GB 7. cmd. VM E:\. ASM1.vdi 5GB Fixed / Shareable Data (shareable) Fixed Size. ASM2.vdi 5GB Fixed / Shareable. ASM3.vdi 5GB Fixed / Shareable

05. 5GB 7. cmd. VM E:\. ASM1.vdi 5GB Fixed / Shareable Data (shareable) Fixed Size. ASM2.vdi 5GB Fixed / Shareable. ASM3.vdi 5GB Fixed / Shareable 05. 5GB 7. ASM1.vdi 5GB Fixed / Shareable Data (shareable) Fixed Size. ASM2.vdi 5GB Fixed / Shareable ASM3.vdi 5GB Fixed / Shareable ASM4.vdi 5GB Fixed / Shareable ASM5.vdi 5GB Fixed / Shareable FRA1.vdi

More information

by guotao zhong August 2006

by guotao zhong August 2006 The installation of Oracle RAC 10g Release 2 on Asianux 2.0(x86-64) by guotao zhong August 2006 1. Introduction One Oracle RAC is a cluster database with a shared cache architecture that provides highly

More information

Let us ping! First we will learn the Hello World of a networked machine.

Let us ping! First we will learn the Hello World of a networked machine. AN INTRODUCTION TO LINUX NETWORKING In this article, we ll explore networking under GNU/Linux. You ll find it interesting to manage the entire network through certain valid keystrokes known as commands.

More information

Create Test Environment

Create Test Environment Create Test Environment Describes how to set up the Trafodion test environment used by developers and testers Prerequisites Python Passwordless ssh If you already have an existing set of ssh keys If you

More information

Newsreader virtual machines Technical Report NWR

Newsreader virtual machines Technical Report NWR Newsreader virtual machines Technical Report NWR-2014-4 Version FINAL Aitor Soroa 1, Enrique Fernández 2 1 University of Basque Country Donostia, Basque Country a.soroa@ehu.es 2 University of Basque Country

More information

Hostname and IP Address

Hostname and IP Address 1/19 IP Addressing Surasak Sanguanpong nguan@ku.ac.th http://www.cpe.ku.ac.th/~nguan Last updated: 27 June 2002 Hostname and IP Address 2/19 browser What is the IP address of www.isoc.org? www.isoc.org

More information

Configuration of SAP NetWeaver for Oracle Grid Infrastructure and Oracle Real Application Clusters 11g Release 2: A Best Practices Guide

Configuration of SAP NetWeaver for Oracle Grid Infrastructure and Oracle Real Application Clusters 11g Release 2: A Best Practices Guide An Oracle White Paper March 2011 Configuration of SAP NetWeaver for Oracle Grid Infrastructure 11.2.0.2 and Oracle Real Application Clusters 11g Release 2: A Best Practices Guide Configuration of SAP NetWeaver

More information

JD Edwards EnterpriseOne High Availability Architecture ORACLE WHITE PAPER MAY 2017

JD Edwards EnterpriseOne High Availability Architecture ORACLE WHITE PAPER MAY 2017 JD Edwards EnterpriseOne High Availability Architecture ORACLE WHITE PAPER MAY 2017 Disclaimer The following is intended to outline our general product direction. It is intended for information purposes

More information

The article performs the following task:-

The article performs the following task:- This RAC installation article is based on RAC Attack hands-on learning lab https://en.wikibooks.org/wiki/rac_attack_-_oracle_cluster_database_at_home/rac_attack_12c The article performs the following task:-

More information

HOL6749: Deploy Oracle RAC in Minutes on Oracle OpenStack for Oracle Solaris

HOL6749: Deploy Oracle RAC in Minutes on Oracle OpenStack for Oracle Solaris HOL6749: Deploy Oracle RAC in Minutes on Oracle OpenStack for Oracle Solaris Bruno Philippe Sales Consultant, Oracle France Christophe Pauliat Sales Consultant, EMEA Solution Center, Oracle Eric Bezille

More information

Using Juju with a Local Provider with KVM and LXC in Ubuntu LTS

Using Juju with a Local Provider with KVM and LXC in Ubuntu LTS Using Juju with a Local Provider with KVM and LXC in Ubuntu 14.04 LTS A Dell and Canonical Technical White Paper Mark Wenning Canonical Field Engineer Jose De la Rosa Dell Software Engineer 2 THIS WHITE

More information

Blueprints. Quick Start Guide for installing and running KVM

Blueprints. Quick Start Guide for installing and running KVM Blueprints Quick Start Guide for installing and running KVM Blueprints Quick Start Guide for installing and running KVM Note Before using this information and the product it supports, read the information

More information

Installation von Oracle Real Application Cluster 10gR1 auf CentOS 4.2 mit Raw-Devices

Installation von Oracle Real Application Cluster 10gR1 auf CentOS 4.2 mit Raw-Devices Installation von Oracle Real Application Cluster 10gR1 auf CentOS 4.2 mit Raw-Devices Inhaltsverzeichnis Installation von Oracle Real Application Cluster 10gR1 auf CentOS 4.2 mit Raw-Devices... 1 1. Installation

More information

FUJITSU Server PRIMEQUEST 2000 Series. Basic Installation Guide for Linux/KVM

FUJITSU Server PRIMEQUEST 2000 Series. Basic Installation Guide for Linux/KVM CA92344-0706-01 FUJITSU Server PRIMEQUEST 2000 Series Basic Installation Guide for Linux/KVM FUJITSU LIMITED Preface This manual is a guide to assist in the configuration and installation of the PRIMEQUEST

More information

Oracle Database 12c R1

Oracle Database 12c R1 Oracle Database 12c R1 I. II. III. 1. Software 2. A) B) C) 3. 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. A) B) C) D) 1. VirtualBox Guest Addition 2. 3. 4. IV. DB V. VI. Database I. Click here to expand...

More information

HP Services zl Module ngenius Integrated Agent Installation and Getting Started Guide

HP Services zl Module ngenius Integrated Agent Installation and Getting Started Guide HP Services zl Module ngenius Integrated Agent Installation and Getting Started Guide Part Number 733-0207 www.hp.com/networking Revision A www.netscout.com September 28, 2010 Copyright 2008 Hewlett-Packard

More information

Enabling CDC-ETHER Connection for Skywire CAT1

Enabling CDC-ETHER Connection for Skywire CAT1 Enabling CDC-ETHER Connection for Skywire CAT1 NimbeLink Corp Updated: May 2017 PN 30111 rev 5 NimbeLink Corp. 2017. All rights reserved. 1 Table of Contents Table of Contents 2 1. Introduction 2 1.1 Orderable

More information

Deploying Oracle 11g RAC Release 2 with IBM Storwize V7000 on Red Hat Enterprise Linux

Deploying Oracle 11g RAC Release 2 with IBM Storwize V7000 on Red Hat Enterprise Linux Deploying Oracle 11g RAC Release 2 with IBM Storwize V7000 on Red Hat Enterprise Linux IBM Systems and Technology Group ISV Enablement October 2010 Copyright IBM Corporation, 2010. All Rights Reserved.

More information

Hosting Applications Using Configuration Management Tools

Hosting Applications Using Configuration Management Tools Hosting Applications Using Configuration Management Tools Configuration management tools are used to automate manual tasks, such as setting up servers and network devices. As application delivery requirements

More information

Configuring a Standalone VCL Environment using VMware Server 2.0

Configuring a Standalone VCL Environment using VMware Server 2.0 Configuring a Standalone VCL Environment using VMware Server 2.0 DISCLAIMER! This document provides instuctions for configuring a standalone VCL environment running on a single computer which is able to

More information

Linux. Computer networks - Administration 1DV202. fredag 30 mars 12

Linux. Computer networks - Administration 1DV202. fredag 30 mars 12 Linux Computer networks - Administration 1DV202 Configuration files /etc/hosts /etc/resolv.conf /etc/network/interfaces /etc/hosts 127.0.0.1 localhost.localdomain localhost 127.0.1.1 lokal.kalmar.se lokal

More information

Wi-Fi Guide: Edimax USB Adapter on BBG

Wi-Fi Guide: Edimax USB Adapter on BBG Wi-Fi Guide: Edimax USB Adapter on BBG August 3 rd 2017 Table of Contents: Page 1: Page 2: Page 3: Page 4: Page 5: Introduction & Hardware requirements Getting Started Connecting to a network using Network

More information

SuMegha Cloud Lab Kit

SuMegha Cloud Lab Kit SuMegha Cloud Lab Kit Version 1.3 User Manual 10 th Oct 2013 System Software Development for HPC C-DAC KP Bangalore 1 SuMegha Cloud Lab Kit Version 1.3 User Manual Project No: CDACB/SSDH/CSC/2013/ Document

More information

UNIVERSITY OF BOLTON CREATIVE TECHNOLOGIES. BSc (Hons) COMPUTER NETWORKS AND SECURITY SEMESTER ONE EXAMINATION 2014/2015 UNIX MODULE NO: CPU5003

UNIVERSITY OF BOLTON CREATIVE TECHNOLOGIES. BSc (Hons) COMPUTER NETWORKS AND SECURITY SEMESTER ONE EXAMINATION 2014/2015 UNIX MODULE NO: CPU5003 [CRT09] UNIVERSITY OF BOLTON CREATIVE TECHNOLOGIES BSc (Hons) COMPUTER NETWORKS AND SECURITY SEMESTER ONE EXAMINATION 2014/2015 MODULE NO: CPU5003 Date: Wednesday 21 st January 2015 Time: 10:00 13:00 INSTRUCTIONS

More information

Install Oracle RAC 12c R1 on Oracle Linux 6.4 using VirtualBox ) VirtualBox setup and Linux 6.4 Installation for Oracle RAC 12c R1

Install Oracle RAC 12c R1 on Oracle Linux 6.4 using VirtualBox ) VirtualBox setup and Linux 6.4 Installation for Oracle RAC 12c R1 Install Oracle RAC 12c R1 on Oracle Linux 6.4 using VirtualBox 4.2.16 The following documents are a step by step guide to install Oracle Real Application Clusters 12c on Oracle Linux 6 using VirtualBox.

More information

CIS Test 1- Practice - Fall 2011

CIS Test 1- Practice - Fall 2011 CIS 192 - Test 1- Practice - Fall 2011 Name Each question worth 2 points: Tip: When not logged in as root, you can still use many of the network commands but you must preface them with /sbin/ because you

More information

NVIDIA Professional Application Center

NVIDIA Professional Application Center NVIDIA Professional Application Center Network Licensing Guide 5 May 2017 Document version 2.0 Copyright Information 2017 NVIDIA Corporation. All rights reserved. This document is protected under copyright

More information

Oracle Communication WebRTC Session Controller. Preparation Guide

Oracle Communication WebRTC Session Controller. Preparation Guide Oracle Communication WebRTC Session Controller Preparation Guide Edition 1.0 January 2014 Disclaimer This document contains proprietary information and is protected by copyright and other intellectual

More information

Using Shell Commands

Using Shell Commands This chapter contains the following sections: General Administration, page 1 Working with Databases, page 9 Importing Certificates, page 13 Accessing Root Privileges, page 14 Using a Multi-Node Setup,

More information

This document guides the user through: 1. Setting up and configuring networking for the BeagleBone black or green with the host.

This document guides the user through: 1. Setting up and configuring networking for the BeagleBone black or green with the host. Networking Guide for BeagleBone (Black or Green) by Brian Fraser Last update: Nov 17, 2017 This document guides the user through: 1. Setting up and configuring networking for the BeagleBone black or green

More information

TABLE OF CONTENTS. ACI Solutions Team by Tomas de Leon 2

TABLE OF CONTENTS. ACI Solutions Team by Tomas de Leon 2 TABLE OF CONTENTS 1 INTRODUCTION... 3 2 LAB REFERENCE & TOPOLOGY INFORMATION... 3 3 DELETE THE EXISTING OUT OF BAND NODE MANAGEMENT ADDRESSES CONFIGURATION FOR YOUR DESIGNATED ACI FABRIC... 4 4 CONFIGURE

More information

GM8126 MAC DRIVER. User Guide Rev.: 1.0 Issue Date: December 2010

GM8126 MAC DRIVER. User Guide Rev.: 1.0 Issue Date: December 2010 GM8126 MAC DRIVER User Guide Rev.: 1.0 Issue Date: December 2010 REVISION HISTORY Date Rev. From To Dec. 2010 1.0 - Original Copyright 2010 Grain Media, Inc. All Rights Reserved. Printed in Taiwan 2010

More information

Accessing the Networking Stack

Accessing the Networking Stack The Cisco IOS XR Software serves as a networking stack for communication. This section explains how applications on IOS XR can communicate with internal processes, and with servers or outside devices.

More information

Oracle Grid Infrastructure RAC Provisioning - Using OEM GC 11.1

Oracle Grid Infrastructure RAC Provisioning - Using OEM GC 11.1 Oracle Grid Infrastructure RAC Provisioning - Using OEM GC 11.1 Author: Rob Zoeteweij Date: July 14 2010 http://oemgc.wordpress.com Using the OEM GC Provisioning and Automated Patching Pack, you are able

More information

Networking Approaches in. a Container World. Flavio Castelli Engineering Manager

Networking Approaches in. a Container World. Flavio Castelli Engineering Manager Networking Approaches in a Container World Flavio Castelli Engineering Manager fcastelli@suse.com Rossella Sblendido Engineering Manager rsblendido@suse.com Disclaimer There a many container engines, I

More information

Oracle Communications WebRTC Session Controller. Preparation Guide

Oracle Communications WebRTC Session Controller. Preparation Guide Oracle Communications WebRTC Session Controller Preparation Guide Edition 1.0 February 2015 Copyright 2015, Oracle and/or its affiliates. All rights reserved. Disclaimer This document contains proprietary

More information

Clustered Data ONTAP 8.3 Update 2, IPspaces. Self-paced Lab NETAPP UNIVERSITY. NetApp University - Do Not Distribute

Clustered Data ONTAP 8.3 Update 2, IPspaces. Self-paced Lab NETAPP UNIVERSITY. NetApp University - Do Not Distribute NETAPP UNIVERSITY Clustered Data ONTAP 8.3 Update 2, IPspaces Self-paced Lab Course ID: STRSW-SPL-CDOT83UPD2 Content Version: 1.0 ATTENTION The information contained in this course is intended only for

More information

UCS IPv6 Management Configuration Example

UCS IPv6 Management Configuration Example UCS IPv6 Management Configuration Example Document ID: 118784 Contributed by Padmanabhan Ramaswamy and Shankar Prasath, Cisco TAC Engineers. Mar 06, 2015 Contents Introduction Prerequisites Requirements

More information

Oracle Database 10g R2. Installation Guide for OEL5(x86) Writer : 이경호

Oracle Database 10g R2. Installation Guide for OEL5(x86) Writer : 이경호 Oracle Database 10g R2 Installation Guide for OEL5(x86) Writer : 이경호 목차 1. 시스템구성... - 2-1.1. 개요... - 2-1.1.1. 정의... - 2-1.1.2. 목적... - 2-1.1.3. 환경... - 2-2. 준비사항... - 2-3. Oracle Install configuration...

More information

Installing and Patching Oracle

Installing and Patching Oracle CHAPTER 4 The Oracle procedures described in this section should be performed only as directed in the checklist provided in 1.3.1 Installation Scenarios and Checklists, page 1-3 for the installation setup

More information

Enabling CDC_ETHER Connection for Skywire GSM CAT1

Enabling CDC_ETHER Connection for Skywire GSM CAT1 Enabling CDC_ETHER Connection for Skywire GSM CAT1 NimbeLink Corp Updated: February 2018 PN 30262 rev 4 NimbeLink Corp. 2018. All rights reserved. 1 Table of Contents Table of Contents 2 1. Introduction

More information

Getting Started with PetaLinux SDK

Getting Started with PetaLinux SDK Getting Started with PetaLinux SDK November 26, 2009 Table of Contents Table of Contents...2 About This Guide...3 Related PetaLinux Documents...3 Getting Started...3 Prerequisites...3 Installation...4

More information

An Oracle Technical White Paper October Installing Oracle Real Application Clusters 11g Release 2 on Oracle Solaris 10 Containers

An Oracle Technical White Paper October Installing Oracle Real Application Clusters 11g Release 2 on Oracle Solaris 10 Containers An Oracle Technical White Paper October 2011 Installing Oracle Real Application Clusters 11g Release 2 on Oracle Solaris 10 Containers Overview... 2 Prerequisites... 2 Servers... 2 Network... 3 Storage...

More information

Access Server: User's and Developer's Guide <<< Previous Next >>>

Access Server: User's and Developer's Guide <<< Previous Next >>> 1 of 14 12/9/2008 10:18 AM Access Server: User's and Developer's Guide > Chapter 2. Getting Started with Access Server Access Server can be controlled in three ways: by using the WWW

More information

These documents and software are covered under the terms and conditions of the fp Technologies, Inc. Program License Agreement

These documents and software are covered under the terms and conditions of the fp Technologies, Inc. Program License Agreement Copyright 2017, fp Technologies, Inc. All Rights Reserved These documents and software are covered under the terms and conditions of the fp Technologies, Inc. Program License Agreement You will need to

More information

Oracle 12c Flex ASM & Flex Cluster

Oracle 12c Flex ASM & Flex Cluster Oracle 12c Flex ASM & Flex Cluster PRESENTER Yenugula Venkata Ravikumar OCM, Head-Database Practice, 8th NOVEMBER 2014 BENGALURU, INDIA 1 2 ABOUT ME AGENDA The History of ASM Benefits Of ASM Automatic

More information

ASMLib. Hakim Benameurlaine. Janvier Hakim Benameurlaine 1

ASMLib. Hakim Benameurlaine. Janvier Hakim Benameurlaine 1 ASMLib Hakim Benameurlaine Janvier 2014 2014 Hakim Benameurlaine 1 Table of Contents 1 ASMLib... 3 1.1 Installer ASMLib... 3 1.2 Configurer ASMlib... 5 1.3 Créer les disques ASM... 7 2014 Hakim Benameurlaine

More information

VisibleThread - Server Configuration Help

VisibleThread - Server Configuration Help VisibleThread - Server Configuration Help Version 2.13 (November 2016) Copyright 2017 VisibleThread Limited. This document is the copyright of VisibleThread Limited and may not be reproduced in whole or

More information

Oracle Database 10g Linux Deployment Guide Version 2.0

Oracle Database 10g Linux Deployment Guide Version 2.0 Dell PowerEdge Systems Oracle Database 10g Linux Deployment Guide Version 2.0 www.dell.com support.dell.com Notes and Notices NOTE: A NOTE indicates important information that helps you make better use

More information

MIGRATION FROM RAW DEVICES TO ASMLib, STEP BY STEP EXAMPLE

MIGRATION FROM RAW DEVICES TO ASMLib, STEP BY STEP EXAMPLE MIGRATION FROM RAW DEVICES TO ASMLib, STEP BY STEP EXAMPLE Alejandro Vargas Oracle Israel PRE MIGRATION STEPS... 1 Install and configure ASMLib on both servers... 1 MIGRATION STEPS... 4 REMOVE RAW DEVICES

More information

Deploying Oracle Real Application Clusters 11g R2 on Red Hat Linux 6.x

Deploying Oracle Real Application Clusters 11g R2 on Red Hat Linux 6.x Deploying Oracle Real Application Clusters 11g R2 on Red Hat Linux 6.x Application Note Version: 1.0 Abstract: This application note covers key operations in detail to help you better understand how to

More information

GMSplus Customer Connection Test Procedure

GMSplus Customer Connection Test Procedure GMS-xx Customer Connection Test Procedure Page 1/14 GMSplus Customer Connection Test Procedure Company: Author: Checked: Approved: Distribution: GeoSIG Ltd Wiesenstrasse 39, 8952 Schlieren, Switzerland,

More information

CHAPTER 7 DEMONSTRATE THE PAN IN LINUX

CHAPTER 7 DEMONSTRATE THE PAN IN LINUX CHAPTER 7 DEMONSTRATE THE PAN IN LINUX SYSTEM The new model - Network Access Point Group Network 7.1 DEMONSTRATION Software: All machines are installed with Linux Redhat 8.0 Hardware list:- There are two

More information

installing Linux Paul Cobbaut

installing Linux Paul Cobbaut installing Linux Paul Cobbaut installing Linux Paul Cobbaut lt-2.0 Publication date Wed 12 Nov 2014 03:59:02 PM CET Table of Contents 1. installing Debian 8... 1 1.1. Debian... 2 1.2. Downloading... 2

More information

Installing and Patching Oracle

Installing and Patching Oracle APPENDIXA This section provides supporting information to assist you with the Oracle 11g installation. Note Oracle 11g is available only for a 64-bit architecture. Use the information in this section in

More information

Quick guide for configuring a system with multiple IP-LINKs

Quick guide for configuring a system with multiple IP-LINKs Quick guide for configuring a system with multiple IP-LINKs October 4 th 2005, KK. This guide will show an example configurations for a system with multiple IP-LINKs. Example 1, three devices connected

More information

High Availability of IBM Security Directory Server using Heartbeat A highly available authentication system

High Availability of IBM Security Directory Server using Heartbeat A highly available authentication system High Availability of IBM Security Directory Server using Heartbeat A highly available authentication system Prabir Meher IBM India Software Lab, Pune 2014/02/20, 1.0 Abstract: The purpose of this article

More information

Deployment of Oracle RAC using VM Templates on Private Cloud Appliance O R A C L E W H I T E P A P E R O C T O B E R

Deployment of Oracle RAC using VM Templates on Private Cloud Appliance O R A C L E W H I T E P A P E R O C T O B E R Deployment of Oracle RAC using VM Templates on Private Cloud Appliance O R A C L E W H I T E P A P E R O C T O B E R 2 0 1 7 Table of Contents Introduction 2 Architecture 3 Deployment of a 2-node Oracle

More information

Chapter 5 Network Layer

Chapter 5 Network Layer Chapter 5 Network Layer Network Layer IPv4 2 IP Header Application Header + data 3 IP IP IP IP 4 Focus on Transport Layer IP IP 5 Network Layer The Network layer (Layer 3) provides services to exchange

More information

Load Balancing in Oracle Database Real Application Cluster

Load Balancing in Oracle Database Real Application Cluster IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661,p-ISSN: 2278-8727, Volume 19, Issue 2, Ver. II (Mar.-Apr. 2017), PP 01-06 www.iosrjournals.org Load Balancing in Oracle Database Real Application

More information

Building a RAC Test Environment on VMWare For Free. Dan Norris Thanks to Tim oracle-base.

Building a RAC Test Environment on VMWare For Free. Dan Norris  Thanks to Tim oracle-base. Building a RAC Test Environment on VMWare For Free Dan Norris dnorris@piocon.com http://www.dannorris.com/ Thanks to Tim Hall @ oracle-base.com Agenda Who is Dan? VMWare Orientation Importance of prerequisite

More information

Replace HyperFlex Self-Signed SSL Certificates with CA-issued Certificates

Replace HyperFlex Self-Signed SSL Certificates with CA-issued Certificates Replace HyperFlex Self-Signed SSL Certificates with CA-issued Certificates Contents Google Chrome Mozila FireFox Software Credentials HX Cluster DNS Server Certificate Authority vcenter Server 1. Create

More information

Installing Oracle Database 10g Release 2 for Asianux2.0 on Power. Aug 10, 2006

Installing Oracle Database 10g Release 2 for Asianux2.0 on Power. Aug 10, 2006 Installing Oracle Database 10g Release 2 for Asianux2.0 on Power Aug 10, 2006 Copyright 2006 ORACLE Corporation. All rights reserved. Printed 8/10/2006 Author: Qiuhui Ling Oracle China Development Center

More information

Basics of GNS3 and Cisco IOS

Basics of GNS3 and Cisco IOS Lab00: Objectives: Basics of GNS3 and Cisco IOS IERG4090 Lab00 P.1 Upon completion of this lab, you will be able to: - Extract a given topology GNS3 archive - Start GNS3 - Open the given topology file

More information

Setting Up A High-Availability Load Balancer (With Failover and Session Support) With HAProxy/Wackamole/Spread On Debian Etch

Setting Up A High-Availability Load Balancer (With Failover and Session Support) With HAProxy/Wackamole/Spread On Debian Etch By Falko Timme Published: 2009-01-04 17:28 Setting Up A High-Availability Load Balancer (With Failover and Session Support) With HAProxy/Wackamole/Spread On Debian Etch Version 1.0 Author: Falko Timme

More information

StampA5D3x/PortuxA5/PanelA5. Quickstart Guide

StampA5D3x/PortuxA5/PanelA5. Quickstart Guide StampA5D3x/PortuxA5/PanelA5 Quickstart Guide StampA5D3x/PortuxA5/PanelA5 StampA5D3x/PortuxA5/PanelA5: Quickstart Guide Copyright 2015 taskit GmbH All rights to this documentation and to the product(s)

More information

Deploy Dual Stack CentOS 7 Instance in AWS

Deploy Dual Stack CentOS 7 Instance in AWS Deploy Dual Stack CentOS 7 Instance in AWS Lawrence E. Hughes Sixscape Communications Pte Ltd. 26 Oct 2017 This assumes you have already created an AWS account and a dual stack VPC. Click Launch Instance

More information

Virtualizing Oracle 11g/R2 RAC Database on Oracle VM: Methods/Tips

Virtualizing Oracle 11g/R2 RAC Database on Oracle VM: Methods/Tips Virtualizing Oracle 11g/R2 RAC Database on Oracle VM: Methods/Tips IOUG Collaborate 12, Virtualization Boot Camp Session #328, Monday April 23 rd, 3:45-4:45pm Kai Yu Oracle Solutions Engineering Lab Dell

More information

Quick Start Guide for BeagleBone Black. Table of Contents. by Brian Fraser Last update: Summer, 2015

Quick Start Guide for BeagleBone Black. Table of Contents. by Brian Fraser Last update: Summer, 2015 Quick Start Guide for BeagleBone Black by Brian Fraser Last update: Summer, 2015 This document guides the user through: 1. Installing Ubuntu in a virtual machine. 2. Connecting to the target using serial

More information

Disaster Recovery Workflow

Disaster Recovery Workflow CHAPTER 4 InMage CDP starts with the FX/VX agent, also known as "DataTap," which is used to monitor all writes to disk. A small amount of memory on the source machine is reserved by the DataTap (250MB).

More information

INTRODUCTION AND TERMINOLOGY

INTRODUCTION AND TERMINOLOGY BUILDING A RAC TEST ENVIRONMENT ON VMWARE FOR FREE Dan Norris, dnorris(at)piocon.com, Piocon INTRODUCTION AND TERMINOLOGY This paper offers a recipe for creating a RAC environment suitable for testing

More information

Sirindhorn International Institute of Technology Thammasat University

Sirindhorn International Institute of Technology Thammasat University 1 Name...ID....Section. Seat No.. Sirindhorn International Institute of Technology Thammasat University Midterm Examination: Semester 2/2007 Course Title : ITS 332 Information Technology II Lab (Networking)

More information

High Availability for Cisco RAN Management Systems

High Availability for Cisco RAN Management Systems First Published: 2014-10-13 Last Modified: 2016-06-13 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387)

More information

ASM ON LINUX. May Author: Esteban Bernal. Automatic Storage Management Industry's first and only database file system

ASM ON LINUX. May Author: Esteban Bernal. Automatic Storage Management Industry's first and only database file system ASM ON LINUX. May 2008 Automatic Storage Management Industry's first and only database file system Author: Esteban Bernal ASM ON LINUX Configuring Automatic Storage Management On Linux. There are 3 storage

More information

(RHEL4 and SLES9 covered)

(RHEL4 and SLES9 covered) DBA: Linux Installing Oracle Database 10 g Release 2 on Linux x86 (RHEL4 and SLES9 covered) by John Smiley DOWNLOAD Oracle Database 10g Release 2 TAGS linux, database, installation, All Learn the basics

More information

RAC Attack Lab Handbook

RAC Attack Lab Handbook RAC Attack Lab Handbook Jeremy Schneider Chicago, Illinois, United States http://www.ardentperf.com Contributers DAN NORRIS (DANNORRIS.COM) PARTO JALILI This work includes screenshots and text output,

More information

Sirindhorn International Institute of Technology Thammasat University

Sirindhorn International Institute of Technology Thammasat University Name...ID... Section...Seat No... Sirindhorn International Institute of Technology Thammasat University Midterm Examination s: Semester 2/2009 Course Title Instructor : ITS332 Information Technology II

More information

11gR2 Grid Infrastructure What is it?

11gR2 Grid Infrastructure What is it? 11gR2 Grid Infrastructure What is it? Sridhar Avantsa, Associate Practice Director Rolta TUSC Infrastructure Services Copyright 2010 Rolta International, Inc., All Rights Reserved Introductions - About

More information

Multiplying Your Server Ubuntu Server and Virtualization

Multiplying Your Server Ubuntu Server and Virtualization CHAPTER 12 Multiplying Your Server Ubuntu Server and Virtualization One of the hottest new technologies for servers is virtualization, which allows you to install multiple instances of one or more operating

More information

Oracle RAC Course Content

Oracle RAC Course Content 1 Oracle RAC Course Content Oracle 11g R2 Grid Infrastructure Concepts What is a Cluster Grid Foundation Components Oracle Clusterware Architecture Oracle Clusterware Software and Storage Describe ASM

More information

The Microdrive and CF card are electrically compatible this means that a CF card reader can be used to program a Microdrive.

The Microdrive and CF card are electrically compatible this means that a CF card reader can be used to program a Microdrive. 1 This guide is for users wishing to use an embedded system or appliance, such as an Alix board, HP Thin Client (we strongly recommend and have had tremendous success with the HP T5710) with ICOM repeater

More information

Getting Started with Application Hosting

Getting Started with Application Hosting This section introduces application hosting and the Linux environment used for hosting applications on the Cisco IOS XR Operating System. Need for Application Hosting, page 1 Deep Dive Into Application

More information

Integration of Oracle VM 3 in Enterprise Manager 12c

Integration of Oracle VM 3 in Enterprise Manager 12c Integration of Oracle VM 3 in Enterprise Manager 12c DOAG SIG Infrastruktur Martin Bracher Senior Consultant Trivadis AG 8. März 2012 BASEL BERN LAUSANNE ZÜRICH DÜSSELDORF FRANKFURT A.M. FREIBURG I.BR.

More information

FlashGrid Cloud Area Network Version 17.05

FlashGrid Cloud Area Network Version 17.05 FlashGrid Cloud Area Network Version 17.05 Deployment Guide rev. 2017-11-17 2017 FlashGrid Inc. Table of Contents 1 Introduction... 3 2 OS Compatibility... 3 3 Defining CLAN Subnets... 3 4 Client to Database

More information

UNIVERSITY OF BOLTON CREATIVE TECHNOLOGIES. BSc (Hons) COMPUTER NETWORKS AND SECURITY SEMESTER ONE EXAMINATION 2017/2018 UNIX MODULE NO: CPU5003

UNIVERSITY OF BOLTON CREATIVE TECHNOLOGIES. BSc (Hons) COMPUTER NETWORKS AND SECURITY SEMESTER ONE EXAMINATION 2017/2018 UNIX MODULE NO: CPU5003 [CRT06] UNIVERSITY OF BOLTON CREATIVE TECHNOLOGIES BSc (Hons) COMPUTER NETWORKS AND SECURITY SEMESTER ONE EXAMINATION 2017/2018 UNIX MODULE NO: CPU5003 Date: Wednesday 17 th January 2018 Time: 10:00 12:00

More information

Adding NetFPGA board into CRON. Change wires table, if you change the switch cable connection

Adding NetFPGA board into CRON. Change wires table, if you change the switch cable connection Adding NetFPGA board into CRON Lin Xue, lxue2@tigers.lsu.edu, LANET@LSU April 2011 Change wires table, if you change the switch cable connection Note: this might not related to adding a NetFPGA, but this

More information