Installing Oracle Database 10g with ASM on Linux x86

Posted by dba477 on Nov 1, 2004 5:10 AM EDT
OTN; By by John Smiley
Mail this story
Print this story

ASM is a fantastic new feature in Oracle Database 10g that provides the services of a filesystem, logical volume manager, and software RAID in a platform-independent manner. ASM can stripe and mirror your disks, allow disks to be added or removed while the database is under load, and automatically balance I/O to remove "hot spots." It also supports direct and asynchronous I/O and implements the Oracle Data Manager API (simplified I/O system call interface) introduced in Oracle9i.

ASM is not a general-purpose filesystem and can be used only for Oracle data files, redo logs, and control files. Files in ASM can be created and named automatically by the database (by use of the Oracle Managed Files feature) or manually by the DBA. Because the files stored in ASM are not accessible to the operating system, the only way to perform backup and recovery operations on databases that use ASM files is through Recovery Manager (RMAN).

ASM is implemented as a separate Oracle instance that must be up if other databases are to be able to access it. On Linux the OCSSD service (installed by default by the Oracle Universal Installer) must be running to allow use of ASM. Memory requirements for ASM are light: only 64 MB for most systems.

The only one comment I would like to add from myself:-
Scripts "dbstart" and "dbshut" are coming along with every Oracle Release
To manage properly startup and shutdown you have to bring up ASM instance the first and to shutdown ASM instance the last.
To achieve this goal replace just one line for each one of scripts mentioned above

Script $ORACLE_HOME/bin/dbstart:
ORATAB=/etc/oratab
.......

# Comment out # cat $ORATAB | while read LINE # and replace with

cat $ORATAB|grep -v "^#"|sort -d | while read LINE
Script $ORACLE_HOME/bin/dbshut:
ORATAB=/etc/oratab
.......

# Comment out # cat $ORATAB | while read LINE # and replace with

cat $ORATAB|grep -v "^#"|sort -dr | while read LINE

Full Story

  Nav
» Read more about: Story Type: Reviews; Groups: Red Hat

« Return to the newswire homepage

Subject Topic Starter Replies Views Last Post
One more link regarding Oracle 10g R2 ASM on Linux dba477 0 2,099 Oct 12, 2005 11:21 PM

You cannot post until you login.