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

Size: px
Start display at page:

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

Transcription

1 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 install Oracle database and Real Application Cluster (RAC). By following the steps described herein, you should be able to deploy EonStor DS and GS storage devices in the RAC environment. Infortrend, ESVA, EonStor, EonNAS, and EonPath are trademarks or registered trademarks of Infortrend. All other marks and names mentioned herein may be trademarks of their respective owners. The information contained herein is subject to change without notice. Content provided as is, without express or implied warranties of any kind.

2 Table of Contents Table of Contents Overview... 3 Verifying System Requirement... 3 Operating System Requirement... 3 Server Hardware and Software Requirement... 3 Network Requirement... 4 Storage Configuration... 4 Topology and Storage Configuration Sample... 4 Storage Configuration Recommendation... 5 Environment Setup Configure Server Nodes... 5 Enable Multipath... 5 Define Every Server Node s name... 5 Edit Network Setting Create Oracle Inventory Group Set the Password of Grid and Oracle User Modify Environment Variables Modify Kernel Parameters Edit Login Parameters Setting Network Time Protocol for Cluster Time Synchronization... 9 Edit ntp.conf... 9 Check the NTP Status... 9 Start to Synchronize Time UDEV SCSI Configuration for ASM Disks Install Grid Infrastructure Create ASM Instances Install Oracle Package Create Oracle Database Summary Reference Page 2

3 Overview Overview The Oracle Real Application Clusters (RAC) is a clustered version of database based on a high availability infrastructure that harnesses the processing power of multiple database instances on different server nodes with a shared storage pool. All the servers on the cluster can actively access the database files on the shared storage pool and handle various application workloads simultaneously, and all database workloads are evenly distributed to all the servers. RAC manages and synchronizes all read and write behavior in the cluster and makes sure all data is coordinated among server nodes. In addition, in the case of one or more server failures, the database connections and workloads on the failed nodes will fail over to the rest of the servers and continue to provide database services. Verifying System Requirement Operating System Requirement Make sure your operating system is supported by Oracle (check and each mode in the cluster must run the same operating system. Server Hardware and Software Requirement Component Chip Architecture CPU Physical Memory Swap Space Temporary Space (/tmp) Requirement All servers must have the same chip architecture, e.g. all 32-bit processors or all 64-bit processors. CPU is certified by Oracle. At least 1.5 GB. Equal to the amount of RAM. At least 1 GB. Resolution for Monitor Display A minimum of 1024 x 786. Page 3

4 Storage Configuration Network Requirement Ensure each node has at least three network interface cards (NICs) available: one NIC for public network and two NICs for the private network traffic. Public interface names must be the same on all nodes and should be able to communicate with all nodes. Private interface names must be the same on all nodes and should be able to communicate with all nodes. Storage Configuration Topology and Storage Configuration Sample DS 1012RE Topology and Configuration Sample Page 4

5 Controller A Logical Drive 6x 3TB NL-SAS HDD Pool 100GB Volume 100GB Volume 100GB Volume 100GB Volume Channel Access iscsi 10Gb/s HB Ch4 Channel Access iscsi 10Gb/s HB Ch5 Switch 1 Server Node 1 Controller B Cluster Logical Drive 6x 3TB NL-SAS HDD Pool 100GB Volume 100GB Volume 100GB Volume 100GB Volume Channel Access iscsi 10Gb/s HB Ch4 Channel Access iscsi 10Gb/s HB Ch5 Switch 2 Server Node 2 GS 3012R Topology and Configuration Sample Storage Configuration Recommendation If you are configuring LDs for a redundant controller system, you can equally assign LDs to both controllers so that the computing power of the partner controllers can be fully utilized. For example, if you have 2 LDs, you can assign 1 LD to controller A and the other to controller B. In addition, if one controller fails in a redundant controller system, the failover process takes only a few seconds and is transparent to users. Environment Setup 1. Configure Server Nodes Enable Multipath Ensure that all your server nodes in the cluster have been updated and include the device-mapper-multipath package, create or edit /etc/multipathd.config to enable multipath service, and restart the service. For more information, please refer to Enabling Multi-pathing on EonStor DS with Red Hat Enterprise Linux 6 Device Mapper. Define Every Server Node s name Even if you are using a DNS, Oracle recommends that you add lines to the /etc/hosts file on each node, specifying the public IP addresses. Configure the /etc/hosts file so that it is similar to the following example: Page 5

6 Edit Network Setting On Server Node 1: # vi /etc/sysconfig/network NETWORKING=yes HOSTNAME=node01 NETWORKING_IPV6=no On Server Node 2: # vi /etc/sysconfig/network NETWORKING=yes HOSTNAME=node02 NETWORKING_IPV6=no 2. Create Oracle Inventory Group It is recommended to create separate groups and users and divide access privileges by job roles, such as software installer, database owner or operator, administrator, and so on. Even though these roles are often combined or may not be required at this moment, it is still suggested to create them in the beginning. Log in as root on every node, create the following group (by using groupadd command), user accounts (by Page 6

7 using useradd command) and group assignments. According to Oracle documentation, a user created to own only Oracle Grid Infrastructure software installations is called the grid user. A user created to own either all Oracle installations, or only Oracle database installations, is called the oracle user. The -g option specifies the primary group, which must be the Oracle Inventory group. The -u option specifies the user ID. You must note the user ID number because you need it during pre-installation. The -G option specifies the secondary groups, which must include the OSDBA group. # /usr/sbin/groupadd -g 501 oinstall # /usr/sbin/groupadd -g 502 dba # /usr/sbin/groupadd -g 503 oper # /usr/sbin/groupadd -g 504 asmadmin # /usr/sbin/groupadd -g 505 asmoper # /usr/sbin/groupadd -g 506 asmdba # /usr/sbin/useradd -u 501 -g oinstall -G dba,asmdba,asmadmin,asmoper grid # /usr/sbin/useradd -u 502 -g oinstall -G dba,oper,asmdba oracle Note that the user performing the Oracle RAC installation must belong to the Oracle Inventory group and the OSDBA group (typically oinstall and dba). If this is not the case, then the installation will fail. 3. Set the Password of Grid and Oracle User Set the password of the user that will own Oracle Grid Infrastructure and password of the Oracle user. # Passwd grid # Passwd oracle 4. Modify Environment Variables Modify the user s shell file in any text editor: vi /home/grid/.bash_profile. Following is the node 1 configuration sample and you have to set variables for all server nodes to meet your Page 7

8 specific environment. For node 2, follow most of node 1 settings but you need to set export ORACLE_SID=+ASM2. 5. Modify Kernel Parameters Oracle 11g R2 requires the kernel parameter settings for all server nodes shown below by modifying file vi /etc/sysctl.conf and add the following lines to satisfy the Oracle installer's requirements. The values given are minimums, so if your system uses a larger value, do not change it. To activate the new kernel parameter values for the currently running system, you have to run command sysctl -p as root on all Oracle RAC nodes in the cluster. 6. Edit Login Parameters To improve overall performance, you must increase the shell limits for the oracle user. Add the following lines to the /etc/pam.d/login file: session required /lib64/security/pam_limits.so Page 8

9 7. Setting Network Time Protocol for Cluster Time Synchronization Oracle RAC requires the same time zone environment variable setting on all cluster nodes and the time zone default is used for databases, Oracle ASM, and any other managed processes. You can synchronize the system clock with a remote server over the Network Time Protocol (NTP). Edit ntp.conf The NTP program is configured by editing /etc/ntp.conf. An example of ntp.conf would be as follows: restrict : Add the line to allow unrestricted access from the local host. fudge: Using fudge to say that the local clock is stratum 10 makes ntp use the local clock when no timeservers are available. Stratum levels define the distance from the reference clock. A server synchronized to a stratum n server will be running at stratum n + 1, so a stratum-0 device that is assumed to be accurate and has little or no delay associated with it. Server <IP Address>: Set local system as a timeserver. Check the NTP Status Using ntpq command checks NTP status. If you get any connection refused errors then the time server is not responding or the NTP daemon/port is not started or listening. Page 9

10 Start to Synchronize Time You can force ntpd to synchronize on service startup by modifying /etc/sysconfig/ntpd as the following example. On Server Node 1: # vi /etc/sysconfig/ntpd OPTIONS="-x -u ntp:ntp -p /var/run/ntpd.pid" SYNC_HWCLOCK=no NTPDATE_OPTIONS="" Then, restart the NTP service: # /sbin/service ntpd restart On Server Node 2: Run crontab to schedule the time of synchronization. # crontab -l */1 * * * * /usr/sbin/ntpdate /1 : check with node 1 every 1 minute. /usr/sbin/ntpdate <IP Address>: use ntpdate to do time correction with targeted NTP server. 8. UDEV SCSI Configuration for ASM Disks For Oracle Automatic Storage Manager (ASM) to use storage disks, it needs to be able to identify those devices consistently and configure them to have correct ownership and permissions. You can use the Linux device manager udev to do configuration. What udev does is to apply rules defined in files in the "/etc/udev/rules.d" directory to the device nodes listed in the "/dev" directory. for i in b c d e f g h i; do Page 10

11 echo "KERNEL==\"sd*\", BUS==\"scsi\", PROGRAM==\"/sbin/scsi_id -g -u -s %p\", RESULT==\"`scsi_id -g -u -s /block/sd$i`\", NAME=\"asm-disk$i\", OWNER=\"grid\", GROUP=\"asmadmin\", MODE=\"0660\"" done for i in b c d e f g h i; do done: run loop command among do and done for 8 times. "KERNEL==\"sd*\", BUS==\"scsi\": identify all the devices name containing sd and tell what we want udev to do with it. PROGRAM==\"/sbin/scsi_id -g -u -s %p\", RESULT==\"`scsi_id -g -u -s /block/sd$i`\": test each device that matches the previous pattern to see if it is the disk that is identified, and return every matched device s SCSI ID. NAME=\"asm-disk$i\", OWNER=\"grid\", GROUP=\"asmadmin\", MODE=\"0660\"" : create name and define permission and ownership. Then, restart the UDEV service as follows: # cd /etc/udev/rules.d/99-oracle-asmdevices.rules # /sbin/start_udev # ls -l /dev/asm* /sbin/start_udev: restart udev service. ls -l /dev/asm*: check the disks are now available with the "asm*" alias and the correct ownership and permissions. Then, copy files /etc/udev/rules.d/99-oracle-asmdevices.rules to other server nodes. 9. Install Grid Infrastructure On Server Node 1 Login as a grid user to download Oracle Database 11g Release 2 and Oracle Grid Infrastructure 11g Release 2 for Linux from the link below and unzip all files: 2.html On Server Node 2 Unzip Oracle Grid Infrastructure 11g R2 Page 11

12 Login as root on both nodes # cd /u01/grid/rpm # rpm -iv cvuqdisk rpm cd /u01/grid/rpm: Locate the cvuqdisk RPM package, which is in the directory rpm on the installation media. rpm -iv cvuqdisk rpm: use this command to install the cvuqdisk package. # xhost + # su - grid # cd /u01/grid #./runinstaller xhost +: allow user to open an X window. su grid: log in as grid user. cd /u01/grid: go to your target folder../runinstaller: start installation process. On the first screen of the installer, select Install and Configure Grid Infrastructure for a Cluster. Page 12

13 Select Typical Installation On the "Specify Cluster Configuration" screen, enter the SCAN name and click the "Add" button to add the details of the second node in the cluster, and then click the "OK" button. Note: The SCAN is a name used for virtual IP addresses. Click the "SSH Connectivity..." button and enter the password for the "oracle" user. Click the "Setup" button to configure SSH connectivity, and the "Test" button to test it once it is completed. Click the "Identify network interfaces..." button and check the public and private networks are specified correctly. Then click the "OK" button and the "Next" button on the previous screen. Page 13

14 Enter "/u01/app/ /grid" as the software location and "Automatic Storage Manager" as the cluster registry storage type. Enter the ASM password and click the "Next" button. Set the redundancy to "External." Select all 4 disks and click the "Next" button. Page 14

15 Check with configuration summary and click the "Finish" button. The installer will start to install product. Page 15

16 When prompted, run the following scripts on each node. On both Server Node 1 and Node 2: run /us01/app/orainventory/orainstroot.sh run /us01/app/11.2.0/grid/root.sh On Server Node 1: Run crs_stat t to check all resource status. 10. Create ASM Instances Oracle ASM Configuration Assistant (ASMCA) supports installing and configuring Oracle ASM instances, disk Page 16

17 groups, volumes, and Oracle Automatic Storage Management Cluster File System. To start ASMCA, log in as grid and enter asmca at a command prompt inside the Oracle Grid Infrastructure home. # su - grid $ asmca The GUI tool displays and attempts to connect to the Oracle ASM instance identified with the Oracle system identifier (SID) set to +ASM. Oracle ASM Configuration Assistant enables you to configure or create Oracle ASM disk groups with the Disk Groups tab. The disk group tab displays selected details about the disk group, such as name, size, free space, usable space, redundancy level, and state of the disk group. You can create a disk group by clicking Create. 11. Install Oracle Package Log in as Oracle user and run the installer to install Oracle. # su oracle Page 17

18 # cd /uss01/database #./runinstall In the Select Installation Option window, select install database software only. In the Node selection page, select all the nodes to install Real Application Clusters database. Select preferred product languages. Page 18

19 Select Database edition. Page 19

20 In the installation location window, specify the location of Oracle Base and software files. In the Privileged Operating System Groups window, select dba for Database Administrator (OSDBA) Group and oper for Database Operator (OSOPER) Group and click Next. Page 20

21 Check configuration summary and click Finish. 12. Create Oracle Database During installation, you can direct the installer to create and configure a new database by launching Database Configuration Assistant (DBCA). To start the DBCA on Server Node 1, enter the command dbca from the ORACLE_HOME/bin. $ dbca After the welcome page appears, select Oracle Real Application Cluster database and click Next. Page 21

22 Select Create a Database. Based on your requirement, select General Purpose or Transaction Processing, Custom Database, or Data Warehouse. Page 22

23 In database identification page, select Admin-Managed or Policy-Managed, define database name and SID Prefix, and select the nodes in the clusters. In Management Options page, set up your database so it can be managed with Oracle Enterprise Manager. Oracle Enterprise Manager provides Web-based management tools for individual or multiple databases. Select Configure Database Control for local management to manage your database locally. If you choose this option, you can additionally check Enable Alert Notifications for Oracle to you alerts regarding potential problems, and check Enable Daily Backup to Recovery Area to set up daily backup schedule. Page 23

24 For security reasons, you must specify passwords by setting passwords for different administrators or using the same password for all accounts. In the storage type, we have 2 options, one is file system and the other is ASM automatic storage management. We recommend you choose ASM. In the Storage Locations, you have to specify the location of storage for the database from templates / common location for all Database files/ Use Oracle-Managed Files). In Recovery Configuration, you can choose the recovery options for the database: Specify Flash Recovery Area: specify a backup and recovery area and specify its directory location and size. Enable Archiving: enable archiving of database redo logs, which can be used to recover a database. You can accept the default archive mode settings or change them by selecting Edit Archive Mode Parameters. Page 24

25 In Initialization Parameters, based on requirement, you can set parameters for memory management, specify the smallest block size and the maximum number of operating system user processes that can simultaneously connect to the database, and define the character sets used by your database, and select connection mode for dedicated server mode or shared storage mode. Page 25

26 Summary In Database Storage window, there is a navigation tree displaying the storage structure of your database (control files, data files, redo log groups, and so forth). If you are not satisfied with the storage structure or parameters, you can make changes. You can create a new object with Create and delete existing objects with Delete. In the Creation Options window, click Finish. In the Summary window, click Ok to create database. Click Exit on the Database Configuration Assistant window after the database creation is completed. Summary After working through the steps and parameter settings, you should have a better understanding and be able to install Oracle RAC and deploy EonStor DS and GS family for your database environment. We recommend reading the reference documents available on the Oracle website if you wish to have a more comprehensive understanding about Oracle database. Infortrend, ESVA, EonStor, EonNAS, and EonPath are trademarks or registered trademarks of Infortrend. All other marks and names mentioned herein may be trademarks of their respective owners. The information contained herein is subject to change without notice. Content provided as is, without express or implied warranties of any kind.

27 Reference Reference Oracle Database Oracle Real Application Clusters 11g Release 2 Database Installation Guide: Infortrend, ESVA, EonStor, EonNAS, and EonPath are trademarks or registered trademarks of Infortrend. All other marks and names mentioned herein may be trademarks of their respective owners. The information contained herein is subject to change without notice. Content provided as is, without express or implied warranties of any kind.

Using EonStor DS Series iscsi-host storage systems with VMware vsphere 5.x

Using EonStor DS Series iscsi-host storage systems with VMware vsphere 5.x Using EonStor DS Series iscsi-host storage systems with VMware vsphere 5.x Application notes Abstract These application notes explain configuration details for using Infortrend EonStor DS Series iscsi-host

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

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

Virtual Appliance User s Guide

Virtual Appliance User s Guide Cast Iron Integration Appliance Virtual Appliance User s Guide Version 4.5 July 2009 Cast Iron Virtual Appliance User s Guide Version 4.5 July 2009 Copyright 2009 Cast Iron Systems. All rights reserved.

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

Oracle Collaboration Suite

Oracle Collaboration Suite Oracle Collaboration Suite Quick Installation Guide Release 2 (9.0.4.1) for hp-ux PA-RISC (64-bit), Linux x86, and Solaris Operating Environment (SPARC 32-bit) September 2003 Part No. B10885-02 This document

More information

Oracle 11g Release 2 RAC & Grid Infrastructure Administration Course Overview

Oracle 11g Release 2 RAC & Grid Infrastructure Administration Course Overview Oracle 11g Release 2 RAC & Grid Infrastructure Administration Course Overview This Oracle 11g Release 2 RAC & Grid Infrastructure Administration course provides an introduction to the general features

More information

2 Latest Upgrade Information

2 Latest Upgrade Information Oracle Database Release Notes 12c Release 1 (12.1) for Linux E51263-08 November 2014 This document contains information that was not included in the platform-specific or product-specific documentation

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

Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2

Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 Oracle University Contact Us: 0845 777 7711 Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 Duration: 5 Days What you will learn In this intensive course, you'll learn about

More information

Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2

Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 What you will learn In this intensive course, students will learn about the Oracle Grid Infrastructure products. This includes

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

RedHat. Rh202. Redhat Certified Technician on Redhat Enterprise Linux 4 (Labs)

RedHat. Rh202. Redhat Certified Technician on Redhat Enterprise Linux 4 (Labs) RedHat Rh202 Redhat Certified Technician on Redhat Enterprise Linux 4 (Labs) http://killexams.com/exam-detail/rh202 QUESTION: 156 Who ever creates the files/directories on /data group owner should be automatically

More information

Dell Storage Compellent Integration Tools for VMware

Dell Storage Compellent Integration Tools for VMware Dell Storage Compellent Integration Tools for VMware Version 4.0 Administrator s Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your

More information

NTP Software File Auditor for Hitachi

NTP Software File Auditor for Hitachi NTP Software File Auditor for Hitachi Installation Guide Version 3.3 This guide details the method for the installation and initial configuration of NTP Software File Auditor for NAS, Hitachi Edition,

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

DefendX Software Control-Audit for Hitachi Installation Guide

DefendX Software Control-Audit for Hitachi Installation Guide DefendX Software Control-Audit for Hitachi Installation Guide Version 4.1 This guide details the method for the installation and initial configuration of DefendX Software Control-Audit for NAS, Hitachi

More information

Dell Storage Compellent Integration Tools for VMware

Dell Storage Compellent Integration Tools for VMware Dell Storage Compellent Integration Tools for VMware Administrator s Guide Version 3.1 Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your

More information

Configuring the Oracle Network Environment. Copyright 2009, Oracle. All rights reserved.

Configuring the Oracle Network Environment. Copyright 2009, Oracle. All rights reserved. Configuring the Oracle Network Environment Objectives After completing this lesson, you should be able to: Use Enterprise Manager to: Create additional listeners Create Oracle Net Service aliases Configure

More information

Dell Storage Integration Tools for VMware

Dell Storage Integration Tools for VMware Dell Storage Integration Tools for VMware Version 4.1 Administrator s Guide Notes, cautions, and warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION:

More information

Control Center Planning Guide

Control Center Planning Guide Release 1.2.0 Zenoss, Inc. www.zenoss.com Copyright 2016 Zenoss, Inc. All rights reserved. Zenoss and the Zenoss logo are trademarks or registered trademarks of Zenoss, Inc., in the United States and other

More information

An Oracle White Paper November Oracle RAC One Node 11g Release 2 User Guide

An Oracle White Paper November Oracle RAC One Node 11g Release 2 User Guide An Oracle White Paper November 2009 Oracle RAC One Node 11g Release 2 User Guide Introduction... 1 Software Installation... 3 How to Configure an Oracle RAC One Node Database... 6 Rolling Patch Application

More information

Control-M Workload Automation

Control-M Workload Automation White Paper Control-M Workload Automation Deploying Control-M in Amazon Web Services Cloud for version 9.0.00 PAGE 1 OF 37 Copyright BMC Software, Inc. 2017 Table of Contents Table of Contents... 2 Disclaimer...

More information

Getting Started with ESX Server 3i Installable Update 2 and later for ESX Server 3i version 3.5 Installable and VirtualCenter 2.5

Getting Started with ESX Server 3i Installable Update 2 and later for ESX Server 3i version 3.5 Installable and VirtualCenter 2.5 Getting Started with ESX Server 3i Installable Update 2 and later for ESX Server 3i version 3.5 Installable and VirtualCenter 2.5 Getting Started with ESX Server 3i Installable Revision: 20090313 Item:

More information

Control Center Planning Guide

Control Center Planning Guide Control Center Planning Guide Release 1.4.2 Zenoss, Inc. www.zenoss.com Control Center Planning Guide Copyright 2017 Zenoss, Inc. All rights reserved. Zenoss, Own IT, and the Zenoss logo are trademarks

More information

Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 NEW

Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 NEW Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 4108 4709 Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 NEW Duration: 5 Days What you will learn This 11g

More information

EMC Unisphere for VMAX Database Storage Analyzer

EMC Unisphere for VMAX Database Storage Analyzer EMC Unisphere for VMAX Database Storage Analyzer Version 8.0.3 Online Help (PDF version) Copyright 2014-2015 EMC Corporation. All rights reserved. Published in USA. Published June, 2015 EMC believes the

More information

Oracle Database 11g: RAC Administration Release 2 NEW

Oracle Database 11g: RAC Administration Release 2 NEW Oracle University Contact Us: Local: 1800 103 4775 Intl: +91 80 4108 4709 Oracle Database 11g: RAC Administration Release 2 NEW Duration: 4 Days What you will learn This Oracle Database 11g: RAC Administration

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

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

LifeSize Control Installation Guide

LifeSize Control Installation Guide LifeSize Control Installation Guide January 2009 Copyright Notice 2005-2009 LifeSize Communications Inc, and its licensors. All rights reserved. LifeSize Communications has made every effort to ensure

More information

Plexxi HCN Plexxi Connect Installation, Upgrade and Administration Guide Release 3.0.0

Plexxi HCN Plexxi Connect Installation, Upgrade and Administration Guide Release 3.0.0 Plexxi HCN Plexxi Connect Installation, Upgrade and Administration Guide Release 3.0.0 May 3, 2018 100 Innovative Way - Suite 3322 Nashua, NH 03062 Tel. +1.888.630.PLEX (7539) www.plexxi.com Legal Notices

More information

NTP Software Defendex (formerly known as NTP Software File Auditor) for NetApp

NTP Software Defendex (formerly known as NTP Software File Auditor) for NetApp NTP Software Defendex (formerly known as NTP Software File Auditor) for NetApp Installation Guide This guide provides a short introduction to the installation and initial configuration of NTP Software

More information

Oracle 11g R2. Installation and Configuration Guide. Abstract

Oracle 11g R2. Installation and Configuration Guide. Abstract Oracle 11g R2 Installation and Configuration Guide Abstract This guide contains configuration information for installing and managing an Oracle Database 11g R2 for IMC on the Linux operating system. Part

More information

HA Monitor Kit for Oracle

HA Monitor Kit for Oracle For Linux (R) (x86) Systems HA Monitor Kit for Oracle Description and User's Guide 3000-9-135-10(E) Relevant program products P-F9S2C-E1121 HA Monitor Kit for Oracle 01-01 (for Red Hat Enterprise Linux

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

Figure 1 0: AMI Instances

Figure 1 0: AMI Instances Title: Configuring Control-M installation in Cloud environment. Last Update: July 4 th, 2018 Cause: Cloud Services Background Cloud Services is a collection of remote computing services that together make

More information

Oracle Enterprise Manager Ops Center

Oracle Enterprise Manager Ops Center Oracle Enterprise Manager Ops Center Configure and Install Guest Domains 12c Release 3 (12.3.2.0.0) E60042-03 June 2016 This guide provides an end-to-end example for how to use Oracle Enterprise Manager

More information

DSI Optimized Backup & Deduplication for VTL Installation & User Guide

DSI Optimized Backup & Deduplication for VTL Installation & User Guide DSI Optimized Backup & Deduplication for VTL Installation & User Guide Restore Virtualized Appliance Version 4 Dynamic Solutions International, LLC 373 Inverness Parkway Suite 110 Englewood, CO 80112 Phone:

More information

Installing or Upgrading ANM Virtual Appliance

Installing or Upgrading ANM Virtual Appliance CHAPTER 2 This chapter describes how to deploy Cisco ANM Virtual Appliance 4.3 (new installation) and how to upgrade from ANM software version 4.1 or 4.2 to software version 4.3. This chapter includes

More information

VI-CENTER EXTENDED ENTERPRISE EDITION GETTING STARTED GUIDE. Version: 4.5

VI-CENTER EXTENDED ENTERPRISE EDITION GETTING STARTED GUIDE. Version: 4.5 VI-CENTER EXTENDED ENTERPRISE EDITION GETTING STARTED GUIDE This manual provides a quick introduction to Virtual Iron software, and explains how to use Virtual Iron VI-Center to configure and manage virtual

More information

EonStor DS 3000 Series

EonStor DS 3000 Series EonStor DS 000 Series High Speed Flexible Storage Delivers Robust Reliability and Fast performance Ÿ Up to.m IOPS and,00 Mbps throughput Ÿ High IOPS ideal for database and VDI applications, while bandwidth

More information

Dbvisit Standby quick installation - Linux/Unix

Dbvisit Standby quick installation - Linux/Unix Dbvisit Standby quick installation - Linux/Unix The complete installation and configuration should take less than 30 minutes. The server or the database does not need to be restarted. This is a quick installation

More information

Oracle Grid Infrastructure

Oracle Grid Infrastructure Oracle Grid Infrastructure Installation Guide 11g Release 2 (11.2) for Linux E17212-09 December 2010 Oracle Grid Infrastructure Installation Guide, 11g Release 2 (11.2) for Linux E17212-09 Copyright 2007,

More information

Dell EMC SAN Storage with Video Management Systems

Dell EMC SAN Storage with Video Management Systems Dell EMC SAN Storage with Video Management Systems Surveillance October 2018 H14824.3 Configuration Best Practices Guide Abstract The purpose of this guide is to provide configuration instructions for

More information

HP LeftHand SAN Solutions

HP LeftHand SAN Solutions HP LeftHand SAN Solutions Support Document Installation Manuals VSA 8.0 Quick Start - Demo Version Legal Notices Warranty The only warranties for HP products and services are set forth in the express warranty

More information

NTP Software File Auditor for Windows Edition

NTP Software File Auditor for Windows Edition NTP Software File Auditor for Windows Edition An NTP Software Installation Guide Abstract This guide provides a short introduction to installation and initial configuration of NTP Software File Auditor

More information

The TRELLIS Real-Time Infrastructure Optimization Platform

The TRELLIS Real-Time Infrastructure Optimization Platform The TRELLIS Real-Time Infrastructure Optimization Platform Disaster Recovery Technical Bulletin Technical Support Site If you encounter any installation or operational issues with your product, check the

More information

Database Services at CERN with Oracle 10g RAC and ASM on Commodity HW

Database Services at CERN with Oracle 10g RAC and ASM on Commodity HW Database Services at CERN with Oracle 10g RAC and ASM on Commodity HW UKOUG RAC SIG Meeting London, October 24 th, 2006 Luca Canali, CERN IT CH-1211 LCGenève 23 Outline Oracle at CERN Architecture of CERN

More information

White Paper. Dell Reference Configuration

White Paper. Dell Reference Configuration White Paper Dell Reference Configuration Deploying Oracle Database 10g R2 Standard Edition Real Application Clusters with Red Hat Enterprise Linux 4 Advanced Server x86_64 on Dell PowerEdge Servers and

More information

Veritas Access. Installing Veritas Access in VMWare ESx environment. Who should read this paper? Veritas Pre-Sales, Partner Pre-Sales

Veritas Access. Installing Veritas Access in VMWare ESx environment. Who should read this paper? Veritas Pre-Sales, Partner Pre-Sales Installing Veritas Access in VMWare ESx environment Who should read this paper? Veritas Pre-Sales, Partner Pre-Sales Veritas Access Technical Brief Contents OVERVIEW... 3 REQUIREMENTS FOR INSTALLING VERITAS

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

Managing Oracle Real Application Clusters. An Oracle White Paper January 2002

Managing Oracle Real Application Clusters. An Oracle White Paper January 2002 Managing Oracle Real Application Clusters An Oracle White Paper January 2002 Managing Oracle Real Application Clusters Overview...3 Installation and Configuration...3 Oracle Software Installation on a

More information

Oracle DBA workshop I

Oracle DBA workshop I Complete DBA(Oracle 11G DBA +MySQL DBA+Amazon AWS) Oracle DBA workshop I Exploring the Oracle Database Architecture Oracle Database Architecture Overview Oracle ASM Architecture Overview Process Architecture

More information

Surveillance Dell EMC Storage with FLIR Latitude

Surveillance Dell EMC Storage with FLIR Latitude Surveillance Dell EMC Storage with FLIR Latitude Configuration Guide H15106 REV 1.1 Copyright 2016-2017 Dell Inc. or its subsidiaries. All rights reserved. Published June 2016 Dell believes the information

More information

Parallels Virtuozzo Containers 4.6 for Windows

Parallels Virtuozzo Containers 4.6 for Windows Parallels Parallels Virtuozzo Containers 4.6 for Windows Deploying Microsoft Clusters Copyright 1999-2010 Parallels Holdings, Ltd. and its affiliates. All rights reserved. Parallels Holdings, Ltd. c/o

More information

Rajeev Kumar Jha, Domain Head Oracle

Rajeev Kumar Jha, Domain Head Oracle Installing Oracle Database Software 12c and Creating a Database Overview Installing Oracle Database Software There are two types of Oracle Database installations: basic (also known as typical) and advanced.

More information

GINESYS v DATABASE INSTALLATION GUIDE. GINESYS v DATABASE INSTALLATION GUIDE. January Aparajita Basu Roy TECHNICAL DOCUMENTER

GINESYS v DATABASE INSTALLATION GUIDE. GINESYS v DATABASE INSTALLATION GUIDE. January Aparajita Basu Roy TECHNICAL DOCUMENTER GINESYS v 11.100.0 DATABASE INSTALLATION GUIDE January 2016 Aparajita Basu Roy TECHNICAL DOCUMENTER 1 Table of Contents Introduction... 3 Minimum system requirement for using GINESYS... 3 Checks to be

More information

ORACLE RAC DBA COURSE CONTENT

ORACLE RAC DBA COURSE CONTENT ORACLE RAC DBA COURSE CONTENT Course Objectives Understand Oracle Clusterware architecture Describe how Grid Plug and Play affects Clusterware Describe Automatic Storage Management (ASM) architecture Perform

More information

Oracle Enterprise Manager Ops Center. Introduction. What You Will Need. Configure and Install Root Domains 12c Release 3 (

Oracle Enterprise Manager Ops Center. Introduction. What You Will Need. Configure and Install Root Domains 12c Release 3 ( Oracle Enterprise Manager Ops Center Configure and Install Root Domains 12c Release 3 (12.3.0.0.0) E60040-01 June 2015 This guide provides an end-to-end example for how to use Oracle Enterprise Manager

More information

Creating an Oracle Database Using DBCA. Copyright 2009, Oracle. All rights reserved.

Creating an Oracle Database Using DBCA. Copyright 2009, Oracle. All rights reserved. Creating an Oracle Database Using DBCA Objectives After completing this lesson, you should be able to do the following: Create a database by using the Database Configuration Assistant (DBCA) Generate database

More information

Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2

Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 Oracle University Contact Us: 1.800.529.0165 Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 Duration: 5 Days What you will learn This Oracle 11g: RAC and Grid Infrastructure

More information

RH-202. RedHat. Redhat Certified Technician on Redhat Enterprise Linux 4 (Labs)

RH-202. RedHat. Redhat Certified Technician on Redhat Enterprise Linux 4 (Labs) RedHat RH-202 Redhat Certified Technician on Redhat Enterprise Linux 4 (Labs) Download Full Version : https://killexams.com/pass4sure/exam-detail/rh-202 QUESTION: 159 Install the dialog-* Questions asking

More information

Installing and Upgrading Cisco Network Registrar Virtual Appliance

Installing and Upgrading Cisco Network Registrar Virtual Appliance CHAPTER 3 Installing and Upgrading Cisco Network Registrar Virtual Appliance The Cisco Network Registrar virtual appliance includes all the functionality available in a version of Cisco Network Registrar

More information

Installing Cisco MSE in a VMware Virtual Machine

Installing Cisco MSE in a VMware Virtual Machine Installing Cisco MSE in a VMware Virtual Machine This chapter describes how to install and deploy a Cisco Mobility Services Engine (MSE) virtual appliance. Cisco MSE is a prebuilt software solution that

More information

Oracle Database 11g: Administration Workshop I Release 2

Oracle Database 11g: Administration Workshop I Release 2 Oracle Database 11g: Administration Workshop I Release 2 Duration: 5 Days What you will learn This Oracle Database 11g: Administration Workshop I Release 2 course explores the fundamentals of basic database

More information

ORACLE 11gR2 DBA. by Mr. Akal Singh ( Oracle Certified Master ) COURSE CONTENT. INTRODUCTION to ORACLE

ORACLE 11gR2 DBA. by Mr. Akal Singh ( Oracle Certified Master ) COURSE CONTENT. INTRODUCTION to ORACLE ORACLE 11gR2 DBA by Mr. Akal Singh ( Oracle Certified Master ) INTRODUCTION to ORACLE COURSE CONTENT Exploring the Oracle Database Architecture List the major architectural components of Oracle Database

More information

Oracle VM. Getting Started Guide for Release 3.2

Oracle VM. Getting Started Guide for Release 3.2 Oracle VM Getting Started Guide for Release 3.2 E35331-04 March 2014 Oracle VM: Getting Started Guide for Release 3.2 Copyright 2011, 2014, Oracle and/or its affiliates. All rights reserved. Oracle and

More information

Enterprise Manager: Scalable Oracle Management

Enterprise Manager: Scalable Oracle Management Session id:xxxxx Enterprise Manager: Scalable Oracle John Kennedy System Products, Server Technologies, Oracle Corporation Enterprise Manager 10G Database Oracle World 2003 Agenda Enterprise Manager 10G

More information

"Charting the Course... Oracle 18c DBA I (3 Day) Course Summary

Charting the Course... Oracle 18c DBA I (3 Day) Course Summary Oracle 18c DBA I (3 Day) Course Summary Description This course provides a complete, hands-on introduction to Oracle Database Administration including the use of Enterprise Manager (EMDE), SQL Developer

More information

White Paper. EonStor GS Family Best Practices Guide. Version: 1.1 Updated: Apr., 2018

White Paper. EonStor GS Family Best Practices Guide. Version: 1.1 Updated: Apr., 2018 EonStor GS Family Best Practices Guide White Paper Version: 1.1 Updated: Apr., 2018 Abstract: This guide provides recommendations of best practices for installation and configuration to meet customer performance

More information

StarWind Native SAN Configuring HA File Server for SMB NAS

StarWind Native SAN Configuring HA File Server for SMB NAS Hardware-less VM Storage StarWind Native SAN Configuring HA File Server for SMB NAS DATE: FEBRUARY 2012 TECHNICAL PAPER Trademarks StarWind, StarWind Software and the StarWind and the StarWind Software

More information

1 Reviewing Information About this Guide

1 Reviewing Information About this Guide Oracle Database Client Quick Installation Guide 10g Release 2 (10.2) for Linux Itanium B15677-01 November 2005 This guide describes how to quickly install Oracle Database Client on Linux x86-64 systems.

More information

Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2

Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 Oracle 11g: RAC and Grid Infrastructure Administration Accelerated Release 2 What you will learn This Oracle 11g: RAC and Grid Infrastructure Administration Accelerated training teaches you about the Oracle

More information

EonStor DS 3000 Series

EonStor DS 3000 Series EonStor DS 000 Series High speed flexible storage delivers robust reliability and management Turbo charged storage DS 000T Gen Up to 1.M IOPS and,00 MBps throughput High IOPS solutions ideal for database

More information

Creating Resources on the ZFS Storage Appliance

Creating Resources on the ZFS Storage Appliance Oracle Enterprise Manager Ops Center Creating Non-Global Zones Using a SAN Storage Library 12c Release 3 (12.3.0.0.0) E65613-01 October 2015 This guide provides an end-to-end example for how to use Oracle

More information

Getting Started with ESX Server 3i Embedded ESX Server 3i version 3.5 Embedded and VirtualCenter 2.5

Getting Started with ESX Server 3i Embedded ESX Server 3i version 3.5 Embedded and VirtualCenter 2.5 Getting Started with ESX Server 3i Embedded ESX Server 3i version 3.5 Embedded and VirtualCenter 2.5 Title: Getting Started with ESX Server 3i Embedded Revision: 20071022 Item: VMW-ENG-Q407-430 You can

More information

DefendX Software Control-QFS for Isilon Installation Guide

DefendX Software Control-QFS for Isilon Installation Guide DefendX Software Control-QFS for Isilon Installation Guide Version 8.6 This guide details the method for the installation and initial configuration of DefendX Software Control-QFS for NAS, Isilon Edition,

More information

Oracle Database 11g: Administration Workshop I Release 2

Oracle Database 11g: Administration Workshop I Release 2 Oracle University Contact Us: 55-800-891-6502 Oracle Database 11g: Administration Workshop I Release 2 Duration: 5 Days What you will learn This course is designed to give you a firm foundation in basic

More information

ECDS MDE 100XVB Installation Guide on ISR G2 UCS-E and VMWare vsphere Hypervisor (ESXi)

ECDS MDE 100XVB Installation Guide on ISR G2 UCS-E and VMWare vsphere Hypervisor (ESXi) ECDS MDE 100XVB Installation Guide on ISR G2 UCS-E and VMWare vsphere Hypervisor (ESXi) Revised: November, 2013 Contents Overview, page 1 Guidelines and Limitations, page 1 Prerequisites, page 2 Installation

More information

The Balabit s Privileged Session Management 5 F5 Azure Reference Guide

The Balabit s Privileged Session Management 5 F5 Azure Reference Guide The Balabit s Privileged Session Management 5 F5 Azure Reference Guide March 12, 2018 Abstract Administrator Guide for Balabit s Privileged Session Management (PSM) Copyright 1996-2018 Balabit, a One Identity

More information

Version 2.3 User Guide

Version 2.3 User Guide V Mware vcloud Usage Meter Version 2.3 User Guide 2012 VMware, Inc. All rights reserved. This product is protected by U.S. and international copyright and intellectual property laws. This product is covered

More information

Installing Connector on Linux

Installing Connector on Linux CHAPTER 3 Revised: July 15, 2010 Overview This chapter provides a step-by-step guide to installing the Linux Connector on x86 and x86-64 servers running either Red Hat Enterprise Linux version 5 or Cent

More information

Oracle VM Template for MySQL Enterprise Edition =========================================================================== ===

Oracle VM Template for MySQL Enterprise Edition =========================================================================== === Oracle VM Template for MySQL Enterprise Edition =========================================================================== === Note: * This is first release of MySQL in a Template delivery for installation

More information

Release Date March 10, Adeptia Inc. 443 North Clark Ave, Suite 350 Chicago, IL 60610, USA Phone: (312)

Release Date March 10, Adeptia Inc. 443 North Clark Ave, Suite 350 Chicago, IL 60610, USA Phone: (312) Adeptia Server 4.9 Installation Guide Version 1.2 Release Date March 10, 2009 Adeptia Inc. 443 North Clark Ave, Suite 350 Chicago, IL 60610, USA Phone: (312) 229-1727 Copyright Copyright 2000-2008 Adeptia,

More information

StarWind Virtual SAN Installing and Configuring SQL Server 2017 Failover Cluster Instance on Windows Server 2016

StarWind Virtual SAN Installing and Configuring SQL Server 2017 Failover Cluster Instance on Windows Server 2016 One Stop Virtualization Shop Installing and Configuring SQL Server 2017 Failover Cluster Instance on Windows Server 2016 OCTOBER 2018 TECHNICAL PAPER Trademarks StarWind, StarWind Software and the StarWind

More information

Contents. Limitations. Prerequisites. Configuration

Contents. Limitations. Prerequisites. Configuration Welcome to your Netmail Secure trial The trial version of Netmail Secure allows you to evaluate Netmail Secure from within your own corporate domain. Included is a sample mail feed that is automatically

More information

Dell PowerVault MD3600i and MD3620i Storage Arrays. Deployment Guide

Dell PowerVault MD3600i and MD3620i Storage Arrays. Deployment Guide Dell PowerVault MD3600i and MD3620i Storage Arrays Deployment Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your computer. CAUTION:

More information

Storage Manager 2018 R1. Installation Guide

Storage Manager 2018 R1. Installation Guide Storage Manager 2018 R1 Installation Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your product. CAUTION: A CAUTION indicates either

More information

HiveManager Virtual Appliance QuickStart

HiveManager Virtual Appliance QuickStart This QuickStart describes the installation of a HiveManager Virtual Appliance. Introduction to HiveManager Virtual Appliance Before you can install the HiveManager Virtual Appliance, you must first install

More information

NTP Software VFM Task Service for NetApp

NTP Software VFM Task Service for NetApp NTP Software VFM Task Service for NetApp Installation Guide Version 6.1 This guide provides quick instructions for the installation of NTP Software VFM Task Service, from an administrator s perspective.

More information

Oracle Fusion Middleware

Oracle Fusion Middleware Oracle Fusion Middleware Quick Installation Guide for Oracle Identity Management 11g Release 1 (11.1.1) E10033-01 May 2009 This guide is designed to help you quickly install the most common Oracle Identity

More information

Managing the Cisco APIC-EM and Applications

Managing the Cisco APIC-EM and Applications Managing Cisco APIC-EM Using the GUI, page 1 Cisco APIC-EM Application Separation, page 1 Information about Backing Up and Restoring the Cisco APIC-EM, page 4 Updating the Cisco APIC-EM Software, page

More information

RAC Installation and Configuration. Oracle Database 10g

RAC Installation and Configuration. Oracle Database 10g RAC Installation and Configuration Oracle Database 10g Table of Content 1. INTRODUCTION... 3 1.1. PURPOSE OF DOCUMENT... 3 1.2. INTENDED AUDIENCE... 3 1.3. SCOPE OF THIS GUIDE... 3 2. DATABASE INSTALLATION...

More information

Architect User s Guide

Architect User s Guide Architect User s Guide 0898601-100 January 2009 Copyright 2009 by Concurrent Computer Corporation. All rights reserved. This publication or any part thereof is intended for use with Concurrent products

More information

How to Deploy an Oracle E-Business Suite System in Minutes Using Oracle VM Templates

How to Deploy an Oracle E-Business Suite System in Minutes Using Oracle VM Templates HOL 10472 How to Deploy an Oracle E-Business Suite System in Minutes Using Oracle VM Templates Simon Coter Product Manager, Oracle VM & VirtualBox simon.coter@oracle.com Christophe Pauliat Systems sales

More information

Basic Configuration Installation Guide

Basic Configuration Installation Guide EMC RecoverPoint for VMs 5.0 Basic Configuration Installation Guide P/N 302-003-534 REV 01 December 7, 2016 This document contains information on these topics: Revision History... 2 Overview... 3 Reference

More information

"Charting the Course... MOC B: Linux System Administration. Course Summary

Charting the Course... MOC B: Linux System Administration. Course Summary Description Course Summary This four-day instructor-led course is designed to provide students with the necessary skills and abilities to work as a professional Linux system administrator. The course covers

More information

SIOS Protection Suite for Linux Oracle Recovery Kit v Administration Guide

SIOS Protection Suite for Linux Oracle Recovery Kit v Administration Guide SIOS Protection Suite for Linux Oracle Recovery Kit v9.0.2 Administration Guide Mar 2016 This document and the information herein is the property of SIOS Technology Corp. (previously known as SteelEye

More information

UDP Director Virtual Edition Installation and Configuration Guide (for Stealthwatch System v6.9.0)

UDP Director Virtual Edition Installation and Configuration Guide (for Stealthwatch System v6.9.0) UDP Director Virtual Edition Installation and Configuration Guide (for Stealthwatch System v6.9.0) Installation and Configuration Guide: UDP Director VE v6.9.0 2016 Cisco Systems, Inc. All rights reserved.

More information