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

Size: px
Start display at page:

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

Transcription

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

2 ASM ON LINUX Configuring Automatic Storage Management On Linux. There are 3 storage options to setup ASM on Linux: 1) Raw devices (10.1 and Onwards) 2) (10.1 and Onwards). 3) Block devices (10.2 and Onwards). Author: Esteban Bernal (Storage Team) 2

3 ASM ON LINUX Creating Disks Partitions for ASM In order to use a disk (e.g. SAN) in Automatic Storage Management, the disk must have a partition table. Oracle recommends creating exactly one partition for each disk containing the entire disk. You can use any physical disk for Automatic Storage Management, as long as it is partitioned. Use IDE, SCSI, or RAID devices. Author: Esteban Bernal (Storage Team) 3

4 ASM ON LINUX Creating Disks Partitions for ASM Identify the device name for the disks that you want to use. # /sbin/fdisk -l Depending on the type of disk, the device name can vary. Oracle recommends that you create a single whole-disk partition on each disk that you want to use. Use either fdisk or parted to create a single whole-disk partition on the disk devices that you want to use. Author: Esteban Bernal (Storage Team) 4

5 ASM ON LINUX Creating Disks Partitions for ASM Disk Type Device Name Format Description IDE disk /dev/hdxn /dev/hda1 SCSI disk /dev/sdxn /dev/sdb1 RAID disk Multipath disk (e.g. emcpower) /dev/rd/cxdypz /dev/ida/cxdypz /dev/emcpowerxn /dev/dm-xx /dev/ida ida/c0d1 /dev/emcpowera1 Author: Esteban Bernal (Storage Team) 5

6 ASM ON LINUX 1. Raw Devices. 1) Identify the existing partitions: Author: Esteban Bernal (Storage Team) 6

7 ASM ON LINUX 1. Raw Devices. 2) Open the /etc/sysconfig/rawdevices and add a raw device for each partition that you created and you want to bound: Author: Esteban Bernal (Storage Team) 7

8 ASM ON LINUX 1. Raw Devices. 3) To bind the partitions to the raw devices, enter the following command: Author: Esteban Bernal (Storage Team) 8

9 ASM ON LINUX 1. Raw Devices. 4) For the raw device that you created for ASM, set the owner, group, and permissions on the device file: Author: Esteban Bernal (Storage Team) 9

10 ASM ON LINUX 1. Raw Devices. 5) Verify the raw disk through ASM: Author: Esteban Bernal (Storage Team) 10

11 ASM ON LINUX 2. Block Devices 1) Identify the existing partitions: Author: Esteban Bernal (Storage Team) 11

12 ASM ON LINUX 2. Block Devices 2) Use /sbin/partprobe diskpath on each node to update the kernel partition table : Author: Esteban Bernal (Storage Team) 12

13 ASM ON LINUX 2. Block Devices 3) For the block device that you created for ASM, set the owner, group, and permissions on the device file: Author: Esteban Bernal (Storage Team) 13

14 ASM ON LINUX 2. Block Devices 4) Update asm_diskstring parameter with the block devices directory: Author: Esteban Bernal (Storage Team) 14

15 ASM ON LINUX 2. Block Devices 5) Create a diskgroup using block devices: Author: Esteban Bernal (Storage Team) 15

16 3. is a supported library for the ASM feature. The objective of is to provide a more streamlined and efficient mechanism for identifying and accessing block devices used by ASM diskgroups. This API serves as alternative to the standard operating system interface. An is a storage-management interface between Oracle Kernel and disk storage. The kernel driver is released under GNU General Public License (GPL), and Oracle Corporation freely delivers an for Linux Platforms. This library is provided to enable ASM I/O to Linux disks without the limitations of the standard UNIX I/O API. oss.oracle.com/ INTRODUCTION Author: Esteban Bernal (Storage Team) 16

17 BENEFITS The main functions are grouped into three collections of functions: Device discovery functions must be implemented in any. Discover strings usually contains a prefix identifying which this discover string is intended for. For the Linux provided by Oracle, the prefix is ORCL:*. Note Device Persistence and Oracle Linux ASMLib I/O processing functions extend the operating system interface and provide an optimized asynchronous interface for scheduling I/O operations and managing I/O operation completion events. These functions are implemented as a device driver within the operating system kernel. The performance and reliability functions use the I/O processing control structures for passing metadata between the Oracle database and the back-end storage devices. They enable additional intelligence on the part of back-end storage. Author: Esteban Bernal (Storage Team) 17

18 Oracle Linux ASMLib Installation You can download the Oracle software from OTN. There are three packages for each platform. The two essential packages are the oracleasmlib package, which provides the actual ASM library, and the oracleasm support package, which provides the utilities to configure and enable the ASM driver. The remaining package provides the kernel driver for the ASMLib (loaded into the OS kernel at system boot). Example: oracleasm-support i386.rpm oracleasmlib i386.rpm oracleasm el i686.rpm Author: Esteban Bernal (Storage Team) 18

19 Oracle Linux ASMLib Installation After the software is installed, you need to make the ASM driver available by executing the /etc/init.d/oracleasm configure command. This operation creates the /dev/oracleasm mount point used by the to communicate with ASM driver. When using RAC, instalaltion and configuration must be completed on all nodes of the cluster. # /etc/init.d/oracleasm configure Author: Esteban Bernal (Storage Team) 19

20 Oracle Linux ASMLib Installation In order to place a disk under ASM management, it must first marked to prevent inadvertent use of incorrect disk by ASM. This is accomplished by using the /etc/init.d/oracleasm createdisk command: # /etc/init.d/oracleasm createdisk With RAC, this operation needs to performed only on one node because it is a shared-disk architecture. However, the other nodes in the cluster need to ensure the disk is seen and valid. Therefore, the other nodes in cluster need to execute the /etc/init.d/oracleasm scandisks command. # /etc/init.d/oracleasm scandisks Author: Esteban Bernal (Storage Team) 20

21 Oracle Linux ASMLib Installation After the disk are marked, the ASM initialization parameter can be set to appropriate values. ASM_DISKSTRING='ORCL:*' On 10gR2 and onwards if the disks are not discovered using the string ORCL:*, the alternative option is using /dev/oracleasm/disks. This could be set in parameter asm_diskstring or using this path in the DDL statement when creating a diskgroup or adding a disk. This is only a temporary workaround until you fix the discovery issue and it does not pretend to be final solution since with this action you are bypassing the API. Author: Esteban Bernal (Storage Team) 21

22 Oracle Linux ASMLib Installation Checklist. I. Install the packages (on each node for RAC). Install oracleasm-support, oracleasmlib and kernel-related packages. II. Configure (on each node for RAC). Load ASM driver and mount ASM driver file system. Use the oracleasm script with the configure option III. Make disks available to by marking disks using oracleasm createdisk (only on one node for RAC). IV. Make sure that disks are visible using the oracleasm scandisks (on all the nodes for RAC) V. Use the appropriate discovery strings for this. Author: Esteban Bernal (Storage Team) 22

23 Oracle Linux ASMLib Installation Oracle Linux Installation: 1. Enter the following command to determine the kernel version and architecture of the system: # uname -rm 2. Download the required ASM library driver packages from OTN Web site. You must download the following three packages, were version is the version of the ASM library driver, arch is the system architecture and kernel is the kernel version you are using: oracleasm-support-version.arch.rpm oracleasm-kernel-version.arch.rpm oracleasmlib-version.arch.rpm Author: Esteban Bernal (Storage Team) 23

24 Configuration Author: Esteban Bernal (Storage Team) 24

25 Oracle Linux ASMLib Installation 3. Install the proper packages for your platform. For example, if you are using Red Hat Enterprise Linux AS 3.0 enterprise kernel, enter a command similar to the following: # rpm -i oracleasm-support i386.rpm \ oracleasm e-enterprise i386.rpm \ oracleasmlib i386.rpm 4. Enter the following command to run the oracleasm initialization script with the configure option: # /etc/init.d/oracleasm configure Author: Esteban Bernal (Storage Team) 25

26 Oracle Linux ASMLib Installation You will be prompted for the following: The UID of the driver owner. This will be the UID for the Oracle user. The GID of the driver group. This will be the GID for the dba group. Whether the driver should be loaded at startup. The corrects answer is YES. Author: Esteban Bernal (Storage Team) 26

27 Oracle Linux ASMLib Installation The script then completes the following tasks: Creates the /etc/sysconfig/oracleasm configuration file. Creates the /dev/oracleasm mount point. Loads the oracleasm kernel module. Mounts the ASM library driver file system. 5. On RAC environment, you will need to repeat this procedure on all cluster nodes. Author: Esteban Bernal (Storage Team) 27

28 ASMLib Installation for Enterprise Linux via ULN The script then completes the following tasks: 1) Installing via ULN # up2date -i oracleasm-support oracleasmlib oracleasm-`uname -r` This will install the support tools, the library, and the kernel driver for the currently running kernel. 2) Upgrading ASMLib via ULN # up2date -i kernel-smp el oracleasm elsmp Author: Esteban Bernal (Storage Team) 28

29 ASM Library Disk Creation To configure the disk devices that you want to use in an ASM diskgroup, complete the following steps: 1. If necessary, install the shared disks that you intend to use for the diskgroup and restart the system. 2. To identify the device name for the disks that you want to use, enter the following command: #/sbin/fdisk -l Author: Esteban Bernal (Storage Team) 29

30 ASM Library Disk Creation Author: Esteban Bernal (Storage Team) 30

31 ASM Library Disk Creation 3. Using fdisk, create a single whole-disk partition on the device that you want to use. 4. Mark a disk as an ASM disk: # /etc/init.d/oracleasm createdisk DISK1 /dev/hda7 In this example, DISK1 is the tag or name that you want to assign to the disk. 5. On RAC, to make the disk available on other cluster nodes, enter the following command as root on each node: # /etc/init.d/oracleasm scandisks This command identifies all the shared disks attached to the node that are marked as ASM disks. Author: Esteban Bernal (Storage Team) 31

32 ASM Library Disk Configuration Important oracleasm options: configure: Use this option to reconfigure the ASM library driver, if necessary. enable / disable: Use the disable and enable options to charge the behavior of the ASM library driver when the system starts. The enable option causes the ASM library driver load when the system starts. start / stop / restart: Use the start, stop and restart options to load or unload the ASM library driver without restarting the system. createdisk: Use this option to mark a disk for use with the ASM library and name it. deletedisk: Use the deletedisk option to unmark a named disk device. Do not use this command to unmark disks that are being used by an ASM diskgroup. You must drop the disk from the ASM diskgroup before you unmark it. Author: Esteban Bernal (Storage Team) 32

33 ASM Library Disk Configuration*** querydisk: Use this option to determinate whether a disk device or disk name is being used by the ASM library driver. listdisks: Use this option to list the disk names of marked ASM library driver disks. scandisks: Use the scandisks option to enable cluster nodes to identify which shared disks have been marked as ASM library driver disks on another node. force-renamedisk: Used to rename the disk header name, to create a pseudo disk /dev/oracleasm/disks or migrating raw to. After you have prepared your disks, set the ASM_DISKSTRING initialization parameter to an appropriated value. The oracleasm script marks disks with an ASM header label. You can set the ASM_DISKSTRING parameter to the value ORCL:*. This setting enables ASM to scan and qualify all disks with that header label. Author: Esteban Bernal (Storage Team) 33

34 Configuration (Example Installation) Author: Esteban Bernal (Storage Team) 34

35 Configuration Author: Esteban Bernal (Storage Team) 35

36 Configuration Author: Esteban Bernal (Storage Team) 36

37 Configuration Author: Esteban Bernal (Storage Team) 37

38 Configuration Author: Esteban Bernal (Storage Team) 38

39 Configuration Author: Esteban Bernal (Storage Team) 39

40 Upgrade i. Shutdown the ASM instance(s). ii. iii. iv. Execute /etc/init.d/oracleasm stop. Execute rpm -Uvh oracleasm-*.rpm *.rpm. Execute /etc/init.d/oracleasm start. v. Startup the ASM instance(s). Author: Esteban Bernal (Storage Team) 40

41 ASMLib Additional Information. Migrating Raw Devices to ASMLib Configuring on Multipath Disks Device Persistence and Oracle Linux ASMLib Source Code (Oracle ASMLib 2.0 Kernel Driver Source (GPL) ) Author: Esteban Bernal (Storage Team) 41

42 Migrating Raw Devices to ASMLib 1) Disk should not be mapped thru raw devices, ASM cannot see the disk twice. # raw /dev/raw/raw # raw /dev/raw/raw ) Remove it from /etc/sysconfig/rawdevices 3) Set: asm_diskstring='orcl:* instead of: asm_diskstring= /dev/raw/* 4) Shutdown the ASM instance (Very important!). 5) Label the disk thru the oracleasm command: # /etc/init.d/oracleasm force-renamedisk /dev/hda18 DISK1 # /etc/init.d/oracleasm force-renamedisk /dev/hda22 DISK2 Author: Esteban Bernal (Storage Team) 42

43 Configuring ASMLib on Multipath Disks Edit the /etc/sysconfig/oracleasm file to define the scanorder: # ORACLEASM_ENABELED: 'true' means to load the driver on boot. ORACLEASM_ENABLED=true # ORACLEASM_UID: Default user owning the /dev/oracleasm mount point. ORACLEASM_UID=oracle # ORACLEASM_GID: Default group owning the /dev/oracleasm mount point. ORACLEASM_GID=dba # ORACLEASM_SCANBOOT: 'true' means fix disk perms on boot ORACLEASM_SCANBOOT=true # ORACLEASM_CLEARBOOT: 'true' means clean old disk perms on boot ORACLEASM_CLEARBOOT=true # ORACLEASM_SCANORDER: Matching patterns to order disk scanning ORACLEASM_SCANORDER="emcpower sd" #emcpowera emcpowerb, scsi #Or ORACLEASM_SCANORDER="emcpower hda" #emcpowera emcpowerb, ATA # ORACLEASM_SCANEXCLUDE: Matching patterns to exclude disks from scan ORACLEASM_SCANEXCLUDE="sd raw" Author: Esteban Bernal (Storage Team) 43

44 Device Persistence guaranteed thru 1) Devices name has changed during reboot (e.g. /dev/sdg to /dev/sdh) will discover the disk with no problems. 2) Oracle (ASM) does not need OS permissions to access the real disks (e.g. /dev/sda1). 3) The disks must belong to root (Security reasons). 4) Using guarantees device persistence for ASM and the device still belongs to Oracle. Author: Esteban Bernal (Storage Team) 44

45 Source Code (Oracle ASMLib 2.0 Kernel Driver Source) Access the source code repository for this project in one of the following ways: Browse source code on-line to view this project's directory structure and files. Download source code archives, if any are available, to copy read-only source files for this project on to your local system. Subscribe to any of the project mailing lists. Author: Esteban Bernal (Storage Team) 45

46 Troubleshooting # df -ha # lsmod # cat /proc/filesystems # /etc/init.d/oracleasm configure $> cat /etc/*release $> uname -a # rpm -qa grep oracleasm $> ls -l /dev/oracleasm/disks SQL> alter system set asm_diskstring = ORCL:* scope=both; $> /usr/sbin/oracleasm-discover $> kfod asm_diskstring='orcl:*' disks=all $> kfed read /dev/oracleasm/disks/vol1 Author: Esteban Bernal (Storage Team) 46

47 Troubleshooting Author: Esteban Bernal (Storage Team) 47

48 Troubleshooting Author: Esteban Bernal (Storage Team) 48

49 Troubleshooting Author: Esteban Bernal (Storage Team) 49

50 Troubleshooting Author: Esteban Bernal (Storage Team) 50

51 Troubleshooting Author: Esteban Bernal (Storage Team) 51

52 Troubleshooting Author: Esteban Bernal (Storage Team) 52

53 Troubleshooting Author: Esteban Bernal (Storage Team) 53

54 Troubleshooting Author: Esteban Bernal (Storage Team) 54

55 Troubleshooting Author: Esteban Bernal (Storage Team) 55

56 References =)> =)> =)> Note Installing & Configuring Oracle ASMLib =)> Note Configuring Oracle ASMLib on Multipath Disks =)> Note Device Persistence and Oracle Linux ASMLib =)> Note Migrating Raw Devices to ASMLib on Linux =)> Note Troubleshooting on Linux =)> Note How to know Which Disks Are Handled by ASMLib Kernel Driver? Author: Esteban Bernal (Storage Team) 56

57 References =)> Note How To Install API via the Unbreakable Linux Network =)> =)> Author: Esteban Bernal (Storage Team) 57

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

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

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

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

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

How to Migrate ASM based on Raw Devices to ASMLib

How to Migrate ASM based on Raw Devices to ASMLib How to Migrate ASM based on Raw Devices to ASMLib Alejandro Vargas February 2006 I started to work with ASM before ASMLib was available for RH4 64 bits, so I did configure ASM with raw devices. Now that

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

Oracle Ksplice for Oracle Linux

Oracle Ksplice for Oracle Linux Oracle Ksplice for Oracle Linux Oracle Corporation Oracle Ksplice Oracle Ksplice is an exciting new addition to the Oracle Linux Premier Support subscription. The Oracle Ksplice technology allows customers

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

Red Hat Network Satellite 5.0.0: Virtualization Step by Step

Red Hat Network Satellite 5.0.0: Virtualization Step by Step Red Hat Network Satellite 5.0.0: Virtualization Step by Step By Máirín Duffy, Red Hat Network Engineering Abstract Red Hat Network Satellite 5.0 is the first Satellite release to include virtual platform

More information

Oracle Database 10g Migration to Automatic Storage Management. An Oracle White Paper August 2004

Oracle Database 10g Migration to Automatic Storage Management. An Oracle White Paper August 2004 Oracle Database 10g Migration to Automatic Storage Management An Oracle White Paper August 2004 Oracle Database 10g Migration to Automatic Storage Management Executive Overview... 3 Introduction... 3 Database

More information

ASM Internals. By Riyaj Shamsudeen. OraInternals Riyaj Shamsudeen

ASM Internals. By Riyaj Shamsudeen. OraInternals Riyaj Shamsudeen ASM Internals By Riyaj Shamsudeen OraInternals Riyaj Shamsudeen Me 20+ years as DBA OakTable member Oracle ACE Director Alumni Specializes in RAC, performance tuning and Internals. Slowly in to BigData

More information

Dell EMC Unity Storage with Oracle Databases

Dell EMC Unity Storage with Oracle Databases Dell EMC Unity Storage with Oracle Databases All-flash arrays Abstract Best practices for deploying Oracle databases with Dell EMC Unity All-Flash arrays, including recommendations and considerations for

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

1Z Oracle Real Application Clusters 12c Essentials Exam Summary Syllabus Questions

1Z Oracle Real Application Clusters 12c Essentials Exam Summary Syllabus Questions 1Z0-432 Oracle Real Application Clusters 12c Essentials Exam Summary Syllabus Questions Table of Contents Introduction to 1Z0-432 Exam on Oracle Real Application Clusters 12c Essentials... 2 Oracle 1Z0-432

More information

SnapManager 3.4 for Oracle

SnapManager 3.4 for Oracle Technical Report SnapManager 3.4 for Oracle Best Practices Ebin Varghese Kadavy, Jeffrey Steiner, Antonio Jose Rodrigues Neto, Anand Ranganathan, NetApp November 2015 TR-3761 Abstract Backup, recovery,

More information

1Z Oracle Linux 6 Implementation Essentials Exam Summary Syllabus Questions

1Z Oracle Linux 6 Implementation Essentials Exam Summary Syllabus Questions 1Z0-460 Oracle Linux 6 Implementation Essentials Exam Summary Syllabus Questions Table of Contents Introduction to 1Z0-460 Exam on Oracle Linux 6 Implementation Essentials.. 2 Oracle 1Z0-460 Certification

More information

Chapter Two. Lesson A. Objectives. Exploring the UNIX File System and File Security. Understanding Files and Directories

Chapter Two. Lesson A. Objectives. Exploring the UNIX File System and File Security. Understanding Files and Directories Chapter Two Exploring the UNIX File System and File Security Lesson A Understanding Files and Directories 2 Objectives Discuss and explain the UNIX file system Define a UNIX file system partition Use the

More information

Notes on Using Red Hat Enterprise Linux AS (v.4 for EM64T)

Notes on Using Red Hat Enterprise Linux AS (v.4 for EM64T) 2005-09-01 Notes on Using Red Hat Enterprise Linux AS (v.4 for EM64T) Preface About This Manual This manual provides notes on PRIMERGY operation with Linux installed. Be sure to read this manual before

More information

Unless otherwise noted, all references to STRM refer to STRM, STRM Log Manager, and STRM Network Anomaly Detection.

Unless otherwise noted, all references to STRM refer to STRM, STRM Log Manager, and STRM Network Anomaly Detection. TECHNICAL CONFIGURING iscsi AUGUST 2012 You can use a iscsi storage network in your STRM deployment. This document provides information on configuring and using iscsi devices with your deployment. Unless

More information

Hitachi Dynamic Link Manager (for Linux ) Release Notes

Hitachi Dynamic Link Manager (for Linux ) Release Notes Hitachi Dynamic Link Manager (for Linux ) 8.1.4-00 Release Notes Contents About this document... 1 Intended audience... 1 Getting help... 2 About this release... 2 Product package contents... 2 New features

More information

Installing Prime Optical

Installing Prime Optical 5 CHAPTER This section describes how to install Cisco Prime Optical 9.8 with an Oracle 11g database. To ensure a successful installation, use the checklist provided in the Installation Scenarios and Checklists,

More information

ASM migration process

ASM migration process Management on Dell/EMC Storage Arrays By Zafar Mahmood, Uday Datta Shet, and Bharat Sajnani ASM migration process The process for migrating an Oracle Real Application Clusters (RAC) database from Oracle

More information

Production Installation and Configuration. Openfiler NSA

Production Installation and Configuration. Openfiler NSA Production Installation and Configuration Openfiler NSA 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. OPENFILER INSTALLATION...

More information

Oracle Database 10g Migration to Automatic Storage Management. An Oracle White Paper August 2005

Oracle Database 10g Migration to Automatic Storage Management. An Oracle White Paper August 2005 Oracle Database 10g Migration to Automatic Storage Management An Oracle White Paper August 2005 Oracle Database 10g Migration to Automatic Storage Management Introduction... 3 Database Migration to ASM

More information

Learning ASM Using a Single Disk Drive On the Apple OS X and Linux Platforms

Learning ASM Using a Single Disk Drive On the Apple OS X and Linux Platforms Learning ASM Using a Single Disk Drive On the Apple OS X and Linux Platforms An ATS HOWTO Paper by Kent Stroker July 2005 Advanced Technology Services, Inc. Oracle Technology Delivered Learning ASM Using

More information

Hitachi Dynamic Link Manager (for Linux ) Release Notes

Hitachi Dynamic Link Manager (for Linux ) Release Notes Hitachi Dynamic Link Manager (for Linux ) 8.1.2-00 Release Notes Contents About this document... 1 Intended audience... 1 Getting help... 2 About this release... 2 Product package contents... 2 New features

More information

Veritas Dynamic Multi-Pathing Administrator's Guide

Veritas Dynamic Multi-Pathing Administrator's Guide Veritas Dynamic Multi-Pathing Administrator's Guide Linux 6.0 February 2012 Veritas Dynamic Multi-Pathing Administrator's Guide The software described in this book is furnished under a license agreement

More information

Notes on Using Red Hat Enterprise Linux AS (v.3 for x86)

Notes on Using Red Hat Enterprise Linux AS (v.3 for x86) 2005-09-01 Notes on Using Red Hat Enterprise Linux AS (v.3 for x86) Preface About This Manual This manual provides notes on PRIMERGY operation with Linux installed. Be sure to read this manual before using

More information

Linux Host Utilities 6.2 Quick Start Guide

Linux Host Utilities 6.2 Quick Start Guide Linux Host Utilities 6.2 Quick Start Guide This guide is for experienced Linux users. It provides the basic information required to get the Linux Host Utilities installed and set up on a Linux host. The

More information

Upgrade Guide. This document details the upgrade process for customers moving from the full version of OnApp Cloud v2.3.1 to v2.3.2.

Upgrade Guide. This document details the upgrade process for customers moving from the full version of OnApp Cloud v2.3.1 to v2.3.2. Upgrade Guide v2.3.2 This document details the upgrade process for customers moving from the full version of OnApp Cloud v2.3.1 to v2.3.2. It explains important changes to the backup system, network config

More information

Virtual Iron Software Release Notes

Virtual Iron Software Release Notes Virtual Iron Software Release Notes Virtual Iron Version 4.5 Copyright (c) 2009 Virtual Iron Software, Inc. 000010609R1 This information is the intellectual property of Virtual Iron Software, Inc. This

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

Data Protection Guide

Data Protection Guide SnapCenter Software 4.0 Data Protection Guide For Oracle Databases May 2018 215-12930_D0 doccomments@netapp.com Table of Contents 3 Contents Deciding whether to read the SnapCenter Data Protection Guide

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

Best Practices for Oracle 11g Backup and Recovery using Oracle Recovery Manager (RMAN) and Dell EqualLogic Snapshots

Best Practices for Oracle 11g Backup and Recovery using Oracle Recovery Manager (RMAN) and Dell EqualLogic Snapshots Dell EqualLogic Best Practices Series Best Practices for Oracle 11g Backup and Recovery using Oracle Recovery Manager (RMAN) and Dell EqualLogic Snapshots A Dell Technical Whitepaper Storage Infrastructure

More information

Oracle Linux 7: System Administration Ed 2 Duration: 5 Days

Oracle Linux 7: System Administration Ed 2 Duration: 5 Days Oracle Linux 7: System Administration Ed 2 Duration: 5 Days The Oracle Linux 7: System Administration course covers a range of skills including installation, using the Unbreakable Enterprise Kernel, configuring

More information

Acronis Backup Version 11.5 Update 6 INSTALLATION GUIDE. For Linux Server APPLIES TO THE FOLLOWING PRODUCTS

Acronis Backup Version 11.5 Update 6 INSTALLATION GUIDE. For Linux Server APPLIES TO THE FOLLOWING PRODUCTS Acronis Backup Version 11.5 Update 6 APPLIES TO THE FOLLOWING PRODUCTS For Linux Server INSTALLATION GUIDE Copyright Statement Copyright Acronis International GmbH, 2002-2015. All rights reserved. Acronis

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

Red Hat JBoss Enterprise Application Platform 7.2

Red Hat JBoss Enterprise Application Platform 7.2 Red Hat JBoss Enterprise Application Platform 7.2 Patching and Upgrading Guide For Use with Red Hat JBoss Enterprise Application Platform 7.2 Last Updated: 2018-11-29 Red Hat JBoss Enterprise Application

More information

Red Hat JBoss Enterprise Application Platform 7.0

Red Hat JBoss Enterprise Application Platform 7.0 Red Hat JBoss Enterprise Application Platform 7.0 Patching and Upgrading Guide For Use with Red Hat JBoss Enterprise Application Platform 7.0 Last Updated: 2018-01-18 Red Hat JBoss Enterprise Application

More information

Exam Name: Oracle Database 10g: Managing Oracle on Linux for Database Administrators

Exam Name: Oracle Database 10g: Managing Oracle on Linux for Database Administrators Vendor: Oracle Exam Code: 1Z0-046 Exam Name: Oracle Database 10g: Managing Oracle on Linux for Database Administrators Version: DEMO QUESTION 1 View the Exhibit. Which two statements are true about the

More information

INSTALLING INSTALLING INSTALLING

INSTALLING INSTALLING INSTALLING Architect Version 2.0 Release Notes July 2009 0898600-2.0 READ READ READ ME ME ME BEFORE BEFORE BEFORE INSTALLING INSTALLING INSTALLING THIS THIS THIS PRODUCT PRODUCT PRODUCT Disclaimer The information

More information

2 Latest Upgrade Information

2 Latest Upgrade Information Oracle Database Release Notes 11g Release 2 (11.2) for HP-UX E23561-06 December 2013 This document contains information that was not included in the platform-specific or product-specific documentation

More information

Global Array Manager

Global Array Manager NEC Express Server Express5800 series NEC Express5800/100,ft Series Global Array Manager Ver. 5.00 Installation Manual [Linux Server Edition] Trademarks Microsoft, Windows and Windows NT are registered

More information

Red Hat Enterprise Linux 6 Server Instruction Guide for Creating Volume in Free Disk Space

Red Hat Enterprise Linux 6 Server Instruction Guide for Creating Volume in Free Disk Space Red Hat Enterprise Linux 6 Server Instruction Guide for Creating Volume in Free Disk Space NEC Express Servers NEC Express5800/ft Series 1st Edition 03-2013 Introduction This document is intended as a

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

Virtual Iron Software Release Notes

Virtual Iron Software Release Notes Virtual Iron Software Release Notes Virtual Iron Version 4.2 Copyright (c) 2007 Virtual Iron Software, Inc. 00122407R1 This information is the intellectual property of Virtual Iron Software, Inc. This

More information

ExpressCluster for Linux Ver3.0

ExpressCluster for Linux Ver3.0 ExpressCluster for Linux Ver3.0 Cluster Installation and Configuration Guide (Shared Disk) 2004.06.30 1st Revision Revision History Revision Revision date Descriptions 1 2004/06/30 New manual 2 EXPRESSCLUSTER

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

Why Oracle Linux. Hans Forbrich Forbrich Consulting Ltd. Why Oracle Linux

Why Oracle Linux. Hans Forbrich Forbrich Consulting Ltd. Why Oracle Linux Hans Forbrich Forbrich Consulting Ltd Who am I Hans Forbrich Based in Alberta, Canada Principal consultant, Forbrich Consulting Group Programming since 1969 Oracle developer and DBA since 1984 (v4) Oracle

More information

DocuShare Installation Guide

DocuShare Installation Guide DocuShare Installation Guide Publication date: December 2009 This document supports DocuShare Release 6.5/DocuShare CPX Release 6.5 Prepared by: Xerox Corporation DocuShare Business Unit 3400 Hillview

More information

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

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

More information

Manually Mount Usb Flash Drive Linux Command Line Redhat

Manually Mount Usb Flash Drive Linux Command Line Redhat Manually Mount Usb Flash Drive Linux Command Line Redhat How to Format USB in Linux using Command Line. This article will help you to format USB Flash drive in Ubuntu systems via Command line. So first

More information

SIOS Protection Suite for Linux v9.0. DB2 Recovery Kit Administration Guide

SIOS Protection Suite for Linux v9.0. DB2 Recovery Kit Administration Guide SIOS Protection Suite for Linux v9.0 DB2 Recovery Kit Administration Guide Sep 2015 This document and the information herein is the property of SIOS Technology Corp. (previously known as SteelEye Technology,

More information

MODULE 02. Installation

MODULE 02. Installation MODULE 02 Installation Identify the type of system, hardware, and network settings necessary for Linux installation Describe the need for pre-installation procedures Identify the different types of file

More information

DM-Multipath Guide. Version 8.2

DM-Multipath Guide. Version 8.2 DM-Multipath Guide Version 8.2 SBAdmin and DM-Multipath Guide The purpose of this guide is to provide the steps necessary to use SBAdmin in an environment where SAN storage is used in conjunction with

More information

Making the transition from a Sun SPARC Solaris server to a newer and faster Intel based Dell PowerEdge server running Red Hat Enterprise Linux is a

Making the transition from a Sun SPARC Solaris server to a newer and faster Intel based Dell PowerEdge server running Red Hat Enterprise Linux is a Making the transition from a Sun SPARC Solaris server to a newer and faster Intel based Dell PowerEdge server running Red Hat Enterprise Linux is a complex process. This guide will highlight key steps

More information

The kernel constitutes the core part of the Linux operating system. Kernel duties:

The kernel constitutes the core part of the Linux operating system. Kernel duties: The Linux Kernel The kernel constitutes the core part of the Linux operating system. Kernel duties: System initialization: detects hardware resources and boots up the system. Process scheduling: determines

More information

GL-280: Red Hat Linux 7 Update. Course Description. Course Outline

GL-280: Red Hat Linux 7 Update. Course Description. Course Outline GL-280: Red Hat Linux 7 Update Course Description This is a differences course that focuses on the new technologies and features that made their appearance in Red Hat Enterprise Linux v7. It is intended

More information

Method of Procedure to Upgrade RMS OS to Red Hat Enterprise Linux 6.7

Method of Procedure to Upgrade RMS OS to Red Hat Enterprise Linux 6.7 First Published: November 20, 2015 Contents Scope of MOP... 4 Release Components... 4 Pre Requisites... 4 Assumptions... 4 Process Information... 5 Upgrade Timing... 5 Requirements... 5 Pre Maintenance...

More information

Virtualized Oracle 11g/R2 RAC Database on Oracle VM: Methods/Tips OTN South America Tour 2011 Brazil, Uruguay and Chile, July 2011.

Virtualized Oracle 11g/R2 RAC Database on Oracle VM: Methods/Tips OTN South America Tour 2011 Brazil, Uruguay and Chile, July 2011. Virtualized Oracle 11g/R2 RAC Database on Oracle VM: Methods/Tips OTN South America Tour 2011 Brazil, Uruguay and Chile, July 2011. Kai Yu Oracle Solutions Engineering Dell Inc About Author Kai Yu, kai_yu@dell.com

More information

v Release Notes

v Release Notes Hitachi Dynamic Link Manager (for Linux ) v8.2.1-00 Release Notes Contents About this document... 1 Intended audience... 1 Getting help... 2 About this release... 2 Product package contents... 2 New features

More information

GridDB Standard Edition Installation Guide

GridDB Standard Edition Installation Guide TXB0661N GridDB Standard Edition Installation Guide Toshiba Digital Solutions Corporation 2017 All Rights Reserved. Introduction This manual describes the installation procedure and notes for GridDB Standard

More information

Veritas Dynamic Multi-Pathing Administrator's Guide

Veritas Dynamic Multi-Pathing Administrator's Guide Veritas Dynamic Multi-Pathing Administrator's Guide Linux 5.1 Service Pack 1 Platform Release 2 Veritas Dynamic Multi-Pathing Administrator's Guide The software described in this book is furnished under

More information

1 Certification Information

1 Certification Information Oracle Database Release Notes 10g Release 2 (10.2) for Linux x86 B15659-05 February 2006 This document contains important information that was not included in the platform-specific or product-specific

More information

SnapManager for Oracle

SnapManager for Oracle SnapManager 3.3.1 for Oracle Administration Guide for UNIX For Clustered Data ONTAP NetApp, Inc. 495 East Java Drive Sunnyvale, CA 94089 U.S. Telephone: +1 (408) 822-6000 Fax: +1 (408) 822-4501 Support

More information

NetXplorer. Installation Guide. Centralized NetEnforcer Management Software P/N D R3

NetXplorer. Installation Guide. Centralized NetEnforcer Management Software P/N D R3 NetXplorer Centralized NetEnforcer Management Software Installation Guide P/N D357006 R3 Important Notice Important Notice Allot Communications Ltd. ("Allot") is not a party to the purchase agreement

More information

OLT Us e r Guide for Or acle VM

OLT Us e r Guide for Or acle VM OLT Us e r Guide for Or acle VM Table of Contents 1.Introduction...2 2.Hardware Requirements...2 3. Planning the number of Vms...3 4. Pre-Installation for OLT...4 4.1. Configuration of Test Servers...4

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

Tiger Box Firmware Version 2.5 Release Notes

Tiger Box Firmware Version 2.5 Release Notes Tiger Box Firmware Version 2.5 Release Notes What s New........................... 2 Fixed Known Issues in Version 2.5........... 3 Upgrading to Software Version 2.5........... 3 Best Practices..........................

More information

An Oracle Technical Article March Certification with Oracle Linux 4

An Oracle Technical Article March Certification with Oracle Linux 4 An Oracle Technical Article March 2011 Certification with Oracle Linux 4 Introduction... 1 Comparing Oracle Linux 4 and Red Hat Enterprise Linux (RHEL) 4.. 2 Checking the /etc/redhat-release File... 2

More information

Chapter 6. Linux File System

Chapter 6. Linux File System Chapter 6 Linux File System 1 File System File System management how to store informations on storage devices The Hierarchical Structure Types of file Common File system Tasks 2 The Hierarchical Structure

More information

Technical White Paper August Recovering from Catastrophic Failures Using Data Replicator Software for Data Replication

Technical White Paper August Recovering from Catastrophic Failures Using Data Replicator Software for Data Replication Technical White Paper August 2010 Recovering from Catastrophic Failures Using Data Replicator Software for Data Replication. Recovering from Catastrophic Failures Using Data Replicator Software for Data

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

Hitachi Adapters for Oracle Database

Hitachi Adapters for Oracle Database Hitachi Adapters for Oracle Database v01.1.0 Release Notes Contents About This Document... 2 Intended Audience... 2 Getting Help... 2 Hardware and Software Support... 3 Hitachi Storage Adapter for Oracle

More information

Contents. About This Document Intended Audience Getting Help Hardware and Software Support Storage Models (All adapters)...

Contents. About This Document Intended Audience Getting Help Hardware and Software Support Storage Models (All adapters)... Hitachi Adapters for Oracle Database v01.2.0 Release Notes Contents About This Document... 3 Intended Audience... 3 Getting Help... 3 Hardware and Software Support... 4 Storage Models (All adapters)...

More information

Installing Dell OpenManage 4.5 Software in a VMware ESX Server Software 2.5.x Environment

Installing Dell OpenManage 4.5 Software in a VMware ESX Server Software 2.5.x Environment Installing Dell OpenManage 4.5 Software in a VMware ESX Server Software 2.5.x Environment Notes, Notices, and Cautions NOTE: A NOTE indicates important information that helps you make better use of your

More information

Implementing Software RAID

Implementing Software RAID Implementing Software RAID on Dell PowerEdge Servers Software RAID is an inexpensive storage method offering fault tolerance and enhanced disk read-write performance. This article defines and compares

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

v Release Notes

v Release Notes Hitachi Dynamic Link Manager (for Linux ) v8.5.0-00 Release Notes Contents About this document... 1 Intended audience... 1 Getting help... 2 About this release... 2 Product package contents... 2 New features

More information

Exam Actual. Higher Quality. Better Service! QUESTION & ANSWER

Exam Actual. Higher Quality. Better Service! QUESTION & ANSWER Higher Quality Better Service! Exam Actual QUESTION & ANSWER Accurate study guides, High passing rate! Exam Actual provides update free of charge in one year! http://www.examactual.com Exam : 050-710 Title

More information

Project 3: An Introduction to File Systems. COP 4610 / CGS 5765 Principles of Operating Systems

Project 3: An Introduction to File Systems. COP 4610 / CGS 5765 Principles of Operating Systems Project 3: An Introduction to File Systems COP 4610 / CGS 5765 Principles of Operating Systems Introduction Project 3 learning objectives File system design and implementation File system testing Data

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

DBaaS (Oracle and Open Source)

DBaaS (Oracle and Open Source) DBaaS (Oracle and Open Source) Vess Natchev vess@us.ibm.com Power Cloud Team Leader Systems Lab Services IBM Systems Lab Services Proven IT Infrastructure Expertise 1 Agenda Definition Life Cycle of Database

More information

Zend Server Cluster Manager 5.5 Beta. Installation Guide. By Zend Technologies.

Zend Server Cluster Manager 5.5 Beta. Installation Guide. By Zend Technologies. Zend Server Cluster Manager 5.5 Beta Installation Guide By Zend Technologies www.zend.com Abstract This is the Installation Guide for Zend Server Cluster Manager Version 5.5 Beta. The information in this

More information

RocketRAID 231x/230x SATA Controller Debian Linux Installation Guide

RocketRAID 231x/230x SATA Controller Debian Linux Installation Guide RocketRAID 231x/230x SATA Controller Debian Linux Installation Guide Version 1.0 Copyright 2008 HighPoint Technologies, Inc. All rights reserved. Last updated on September 17, 2008 Table of Contents 1

More information

MINI-HOWTO backup and/or restore device or partition using zsplit/unzsplit

MINI-HOWTO backup and/or restore device or partition using zsplit/unzsplit MINI-HOWTO backup and/or restore device or partition using zsplit/unzsplit Jurij Ivastsuk-Kienbaum jurij [at] device-image.de Revision History First draft March 14, 2006 This document describes a setup

More information

Zend Server Cluster Manager 5.6 Installation Guide

Zend Server Cluster Manager 5.6 Installation Guide Zend Server Cluster Manager 5.6 Installation Guide By Zend Technologies www.zend.com Abstract This is the Installation Guide for Zend Server Cluster Manager Version 5.6. The information in this document

More information

As this method focuses on working with LVM, we will first confirm that our partition type is actually Linux LVM by running the below command.

As this method focuses on working with LVM, we will first confirm that our partition type is actually Linux LVM by running the below command. How to Increase the size of a Linux LVM by adding a new disk This post will cover how to increase the disk space for a VMware virtual machine running Linux that is using logical volume manager (LVM). First

More information

This section describes the procedures needed to add a new disk to a VM. vmkfstools -c 4g /vmfs/volumes/datastore_name/vmname/xxxx.

This section describes the procedures needed to add a new disk to a VM. vmkfstools -c 4g /vmfs/volumes/datastore_name/vmname/xxxx. Adding a New Disk, page 1 Mounting the Replication Set from Disk to tmpfs After Deployment, page 3 Manage Disks to Accommodate Increased Subscriber Load, page 5 Adding a New Disk This section describes

More information

Oracle Linux 7: System Administration Ed 2 NE

Oracle Linux 7: System Administration Ed 2 NE Oracle Uni Contact Us: 08 Oracle Linux 7: System Administration Ed 2 NE Durat5 Da What you will learn The Oracle Linux 7: System Administration course cover Unbreakable Enterprise Kernel, configuring Linux

More information

CST8207: GNU/Linux Operating Systems I Lab Ten Boot Process and GRUB. Boot Process and GRUB

CST8207: GNU/Linux Operating Systems I Lab Ten Boot Process and GRUB. Boot Process and GRUB Student Name: Lab Section: Boot Process and GRUB 1 Due Date - Upload to Blackboard by 8:30am Monday April 16, 2012 Submit the completed lab to Blackboard following the Rules for submitting Online Labs

More information

Lab E2: bypassing authentication and resetting passwords

Lab E2: bypassing authentication and resetting passwords Lab E2: bypassing authentication and resetting passwords TTM4175 September 7, 2015 The purpose of this lab is to learn about techniques for bypassing the authentication and access control of Windows and

More information

ASM New Features for Release 12.2

ASM New Features for Release 12.2 ASM New Features for Release 122 Uwe Kirchhoff 05122017 ASM 122 Features 1 2 Flex Disk Group Extended Cluster Why the Flex Diskgroup? Deployment inflexibility Storage administrator must choose disk group

More information

INSTALLING INSTALLING INSTALLING

INSTALLING INSTALLING INSTALLING Architect Version 4.0 Release Notes July 2010 0898600-4.0 READ READ READ ME ME ME BEFORE BEFORE BEFORE INSTALLING INSTALLING INSTALLING THIS THIS THIS PRODUCT PRODUCT PRODUCT Disclaimer The information

More information

Linux+ Guide to Linux Certification, Third Edition. Chapter 2 Linux Installation and Usage

Linux+ Guide to Linux Certification, Third Edition. Chapter 2 Linux Installation and Usage Linux+ Guide to Linux Certification, Third Edition Chapter 2 Linux Installation and Usage Objectives Install Red Hat Fedora Linux using good practices Outline the structure of the Linux interface Enter

More information

1 Certification Information

1 Certification Information Oracle Database Release Notes 10g Release 2 (10.2) for Linux Itanium B15673-08 September 2008 This document contains important information that was not included in the platform-specific or product-specific

More information

Oracle Linux 7: System Administration Ed 1

Oracle Linux 7: System Administration Ed 1 Oracle University Contact Us: +603 2299 3600, 1 800 80 6277 Oracle Linux 7: System Administration Ed 1 Duration: 5 Days What you will learn The Oracle Linux 7: System Administration training helps you

More information

Prerequisites: General computing knowledge and experience. No prior knowledge with Linux is required. Supported Distributions:

Prerequisites: General computing knowledge and experience. No prior knowledge with Linux is required. Supported Distributions: This course prepares students to take the 101 exam of the LPI level 1 certification. The Linux Professional Institute (LPI) is the go to certification body for vendor independent Linux certifications.

More information