ASM Grid Standalone

Published on December 2016 | Categories: Documents | Downloads: 38 | Comments: 0 | Views: 316
of 64
Download PDF   Embed   Report

Comments

Content

skip to main | skip to left sidebar skip to right sidebar
RSS for Posts
Connect on Facebook
Top of Form
Search in si

Bottom of Form
SQL Panda
There is now a level 0.... 古人學問無遺力,少壯工夫老始成,紙上得來終覺淺,絕知此事要躬
行.
Home
MSSQL
DB2
Oracle
PostgreSQL
Hyper-V
Linux
Tool Box
Resource

image: http://img1.blogblog.com/img/icon18_wrench_allbkg.png

This Blog
Linked From Here
The Web

This Blog

Linked From Here

The Web

Thursday, January 3, 2013
0 Install Oracle 11gR2 on Oracle Linux 6.3 with ASM

Software
Oracle Linux 6.3
Virtual Box4.2.6
Oracle Grid 11.2.0.1
Oracle 11gR2( 11.2.0.1)
Install the Oracle Linux on Virtual Box
Refer here.
Configure Hosts Name
/etc/hosts and /etc/sysconfig/network must have the host name.

image: http://lh3.ggpht.com/3btRJXDyaP4/UOUQOVpc6nI/AAAAAAAACmU/xTlhJ2CeD_w/image_thumb
%25255B66%25255D.png?imgmax=800

Configure Kernel Parameter and number of open file descriptor
Refer here for the Oracle Requirement and here for how to fix kernel parameters.

Install ASM package

ASM Kernel: Part of the Oracle Linux Kernel ( UEK). Can be upgrade from Oracle
public yum repository. Part of Oracle Linux installation media.
ASM support: Can be upgrade from Oracle public yum repository. Part of Oracle
Linux installation media.
ASM lib: Only can be download from Oracle side.
Kernel 2.6.39-300.17.3.el6uek will break the Virtual Box Guest Additions.
rpm -Uvh oracleasmlib-2.0.4-1.el6.x86_64.rpm
yum install oracleasm-support

image: http://lh5.ggpht.com/S3l0qNnQDVc/UOUQPZReNnI/AAAAAAAACmk/0TesGeF9ExU/image_thumb
%25255B1%25255D.png?imgmax=800

image: http://lh5.ggpht.com/-sYKNPGyHtio/UOUQQejuxXI/AAAAAAAACm0/VGdwYvt9EI/image_thumb%25255B4%25255D.png?imgmax=800

Create user/group
groupadd dba
useradd grid -g dba
useradd oracle -g dba
# set password
passwd grid
passwd oracle

image: http://lh3.ggpht.com/vMIHZCAPcLc/UOUQRPlRsWI/AAAAAAAACnE/yQgCDTOtDJo/image_thumb
%25255B7%25255D.png?imgmax=800

Create Software installation folders
/u01/app/oracle –> for $ORACLE_BASE for Oracle Database instance
/u01/app/grid –> for $ORACLE_BASE for ASM instance
/u01/app/11.2.0/grid –> for $ORACLE_HOME for ASM instance

mkdir -p /u01/app/grid
mkdir -p /u01/app/11.2.0/grid
mkdir -p /u01/app/oracle

chown -R grid:dba /u01
chown -R oracle:dba /u01/app/oracle

image: http://lh4.ggpht.com/-TEanx4yMBw/UOUQRy_D2MI/AAAAAAAACnU/WaamqlY8D0Q/image_thumb
%25255B11%25255D.png?imgmax=800

Configure oracle User profile
~oracle/.bash_profile
TMP=/tmp; export TMP
TMPDIR=$TMP; export TMPDIR

ORACLE_HOSTNAME=RAC1.localdomain; export ORACLE_HOSTNAME
ORACLE_UNQNAME=RAC; export ORACLE_UNQNAME
ORACLE_BASE=/u01/app/grid; export ORACLE_BASE

GRID_HOME=/u01/app/11.2.0/grid; export GRID_HOME
DB_HOME=/u01/app/oracle/product/11.2.0/db_1; export DB_HOME
ORACLE_HOME=$DB_HOME; export ORACLE_HOME
ORACLE_SID=RAC1; export ORACLE_SID
ORACLE_TERM=xterm; export ORACLE_TERM
BASE_PATH=/usr/sbin:$PATH; export BASE_PATH
PATH=$ORACLE_HOME/bin:$BASE_PATH; export PATH

LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib; export LD_LIBRARY_PATH
CLASSPATH=$ORACLE_HOME/JRE:$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib;
export CLASSPATH
~oracle/.bashrc
alias grid_env='. /home/oracle/grid_env'
alias db_env='. /home/oracle/db_env'

~oracle//grid_env
ORACLE_SID=+ASM1; export ORACLE_SID
ORACLE_HOME=$GRID_HOME; export ORACLE_HOME
PATH=$ORACLE_HOME/bin:$BASE_PATH; export PATH

LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib; export LD_LIBRARY_PATH
CLASSPATH=$ORACLE_HOME/JRE:$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib;
export CLASSPATH
~oracle//db_env
ORACLE_SID=RAC1; export ORACLE_SID
ORACLE_HOME=$DB_HOME; export ORACLE_HOME
ORACLE_BASE==/u01/app/oracle; export ORACLE_BASE
PATH=$ORACLE_HOME/bin:$BASE_PATH; export PATH

LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib; export LD_LIBRARY_PATH

CLASSPATH=$ORACLE_HOME/JRE:$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib;
export CLASSPATH

Configure ASM
/etc/init.d/oracleasm configure

image: http://lh4.ggpht.com/rzhXLbdSMXo/UOUQTH02YXI/AAAAAAAACnk/Y33Wf0nAaKc/image_thumb
%25255B15%25255D.png?imgmax=800

Use chkconfig to check whether oracleasm service is set to start up automatically.
and also check the /etc/rc.*/

image: http://lh6.ggpht.com/SbLikEfkv4U/UOUQUM9AJbI/AAAAAAAACn0/ZRImmJFtAWM/image_thumb
%25255B19%25255D.png?imgmax=800

Add Disk to VM
"C:\program Files\Oracle\VirtualBox\VBoxManage.exe" createhd --filename
D:\VirtualBoxVM\OEL63\ASM_1.vdi --size 5120 --format VDI --variant Fixed

"C:\program Files\Oracle\VirtualBox\VBoxManage.exe" createhd --filename
D:\VirtualBoxVM\OEL63\ASM_2.vdi --size 5120 --format VDI --variant Fixed
"C:\program Files\Oracle\VirtualBox\VBoxManage.exe" createhd --filename
D:\VirtualBoxVM\OEL63\ASM_3.vdi --size 5120 --format VDI --variant Fixed
"C:\program Files\Oracle\VirtualBox\VBoxManage.exe" createhd --filename
D:\VirtualBoxVM\OEL63\ASM_4.vdi --size 5120 --format VDI --variant Fixed

"C:\program Files\Oracle\VirtualBox\VBoxManage.exe" storageattach OEL63
--storagectl "SATA" --port 1 --device 0 --type hdd --medium
D:\VirtualBoxVM\OEL63\ASM_1.vdi
"C:\program Files\Oracle\VirtualBox\VBoxManage.exe" storageattach OEL63
--storagectl "SATA" --port 2 --device 0 --type hdd --medium
D:\VirtualBoxVM\OEL63\ASM_2.vdi
"C:\program Files\Oracle\VirtualBox\VBoxManage.exe" storageattach OEL63
--storagectl "SATA" --port 3 --device 0 --type hdd --medium
D:\VirtualBoxVM\OEL63\ASM_3.vdi
"C:\program Files\Oracle\VirtualBox\VBoxManage.exe" storageattach OEL63
--storagectl "SATA" --port 4 --device 0 --type hdd --medium
D:\VirtualBoxVM\OEL63\ASM_4.vdi

image: http://lh4.ggpht.com/BsYYofSPNlk/UOUQWuKAGJI/AAAAAAAACoE/32vz8Nn92xo/image_thumb
%25255B28%25255D.png?imgmax=800

image: http://lh4.ggpht.com/RI7SgJM9gJE/UOUQZEh2wWI/AAAAAAAACoU/5_PgmBUElyI/image_thumb
%25255B25%25255D.png?imgmax=800

Partition Disks
All Disks needed to be partition first. Refer here.

image: http://lh5.ggpht.com/vd7d7xDhXJw/UOUQanvRDqI/AAAAAAAACok/KojKvSKLGTs/image_thumb
%25255B30%25255D.png?imgmax=800

Create ASM Disk
Disk needs to be partition first before we use oracleasm.
# list all the disks
fdisk -l

oracleasm createdisk DISK_NAME DEVICE_NAME

image: http://lh3.ggpht.com/DppriinnTU4/UOUQccUM8uI/AAAAAAAACo0/rIdtmqftJLs/image_thumb
%25255B32%25255D.png?imgmax=800

oracleasm listdisks

image: http://lh6.ggpht.com/M3JArj9iwbI/UOUQdUAD8bI/AAAAAAAACpE/jhy4OqgAR5k/image_thumb
%25255B34%25255D.png?imgmax=800

oracleasm querydisk /dev/sdb1

image: http://lh3.ggpht.com/JQVwxb4Xr_E/UOUQfVcEtyI/AAAAAAAACpU/_1ROL1JaYWg/image_thumb
%25255B36%25255D.png?imgmax=800

Remove the ASM disk
oracleasm deletedisk DISK_NAME

image: http://lh5.ggpht.com/-x-2lnR72dWQ/UOUQgbcbrI/AAAAAAAACpk/cGIOF4LJQGg/image_thumb%25255B22%25255D_thumb.png?
imgmax=800

Installing the oracle-rdbms-server-11gR2-preinstall RPM

yum install oracle-rdbms-server-11gR2-preinstall

Refer here.
Install the Grid Infrastructure
Login as ‘grid’ user and Make sure the Below environment variables before execute
the runInstaller .
$ORACLE_HOME
$ORACLE_BASE
$ORACLE_SID

image: http://lh3.ggpht.com/UH_4715hBlk/UOUQh3uitPI/AAAAAAAACp0/LkUE1f0t4Vc/image_thumb
%25255B60%25255D.png?imgmax=800

Execute ./runInstaller
Select “Install and Configure Grid Infrastructure for a standalone Server”

image: http://lh3.ggpht.com/-CKoIFWkbt_o/UOUQi4ZaqI/AAAAAAAACqE/satFScHZTsg/image_thumb%25255B38%25255D.png?
imgmax=800

image: http://lh4.ggpht.com/91bVXgBOZqY/UOUQjiMQ2pI/AAAAAAAACqU/6280vVeHq5w/image_thumb
%25255B40%25255D.png?imgmax=800

Name the disk group as DATA group.
Redundancy:
High: Similar to RAID 5. Require 3 disks.
Normal: Similar to RAID 1. Require 2 disks.
External: Single Disk. Rely on 3rd party vendor software to provide the redundancy.

image: http://lh4.ggpht.com/-xgtgt7Yi9WA/UOUQkts4emI/AAAAAAAACqk/XilYyPU7QE/image_thumb%25255B42%25255D.png?imgmax=800

Create the SYS and ASMSNMP password. If it does not meet Oracle
recommendation, the installer will give the warming.

image: http://lh5.ggpht.com/5b6BhI1r8ic/UOUQlvtRdwI/AAAAAAAACq0/pqv5945LMwg/image_thumb
%25255B45%25255D.png?imgmax=800

image: http://lh6.ggpht.com/uynWUmAQUZY/UOUQmn7O6XI/AAAAAAAACrE/XQr4DWuTn4w/image_thumb
%25255B48%25255D.png?imgmax=800

If OSDBA,OSPER and OSASM are using the same group, the installer would give the
warming but wont affect the installation.

image: http://lh3.ggpht.com/-LiijIBOQR4/UOUQnRSs3HI/AAAAAAAACrU/838J73_iqog/image_thumb
%25255B52%25255D.png?imgmax=800

image: http://lh5.ggpht.com/Dh41eoHdO9o/UOUQoON7IkI/AAAAAAAACrk/4fr8wwVq5xU/image_thumb
%25255B63%25255D.png?imgmax=800

image: http://lh5.ggpht.com/44ePXZWoUJg/UOUQo7hUTZI/AAAAAAAACr0/cfwpTbagnzs/image_thumb
%25255B64%25255D.png?imgmax=800

Use yum or rpm to install the missing packages. However, the 11.2.0 installer does
not recognize the newer version of package therefore, if the system already has the
newer version of the packages, it can be ignore. Below screenshot lists the common
packages that can be ignore due to the installer does not recognize the newer
package.
“pdksh” can be ignore as ksh has taken its place by “oracle-rdbms-server-11gR2preinstall”.
i386 packages has been replace by the i686 correspond packages. Only need to
make sure the i686 packages installed.

image: http://lh6.ggpht.com/7p80YRghfaM/UOUQpw4BBgI/AAAAAAAACsE/dJSlHhBlQgs/image_thumb
%25255B71%25255D.png?imgmax=800

yum list PACKAGE_NAME
yum install PACKAGE_NAME

image: http://lh4.ggpht.com/87l6Pytry70/UOUQqjcAowI/AAAAAAAACsU/Ki8pZQCQa6o/image_thumb
%25255B73%25255D.png?imgmax=800

image: http://lh3.ggpht.com/xhihgfmGS6g/UOUQro6rGKI/AAAAAAAACsk/uT7M4SyPyO4/image_thumb
%25255B76%25255D.png?imgmax=800

image: http://lh6.ggpht.com/-cq-d122E3FM/UOUQslmanI/AAAAAAAACs0/DixhyVf_qvA/image_thumb%25255B78%25255D.png?
imgmax=800

image: http://lh4.ggpht.com/8TS_LdurNbI/UOUQtfMtjGI/AAAAAAAACtE/f9iM6LziQr8/image_thumb
%25255B81%25255D.png?imgmax=800

image: http://lh6.ggpht.com/OCSWXVymzP0/UOUQuZB7e5I/AAAAAAAACtU/BBdfdsxLGeA/image_thumb
%25255B82%25255D.png?imgmax=800

Root.sh would fail to execute at Linux 6.3. The solution is here.
Install Oracle Database
Login as ‘oracle’ user and Make sure the Below environment variables before
execute the runInstaller .
$ORACLE_HOME

$ORACLE_BASE
$ORACLE_SID

image: http://lh3.ggpht.com/t5TRSXjxuqI/UOUQvJZBbEI/AAAAAAAACtk/OcRR5bk_rCw/image_thumb
%25255B88%25255D.png?imgmax=800

Execute runinstaller

image: http://lh5.ggpht.com/Q1sF2_pPz7s/UOUQv1VslRI/AAAAAAAACt0/n9Ead_J_xJI/image_thumb
%25255B86%25255D.png?imgmax=800

image: http://lh3.ggpht.com/hM7fcWq6fsc/UOUQw1RSIrI/AAAAAAAACuE/g9e8BOytuR8/image_thumb
%25255B90%25255D.png?imgmax=800

image: http://lh5.ggpht.com/nhOYVUTf0i4/UOUQxoqpNtI/AAAAAAAACuU/DAmTb_ZjzRY/image_thumb
%25255B92%25255D.png?imgmax=800

image: http://lh4.ggpht.com/hRSgDCbl5j8/UOUQymvU5rI/AAAAAAAACuk/iib9xeGlJoQ/image_thumb
%25255B95%25255D.png?imgmax=800

image: http://lh5.ggpht.com/-TKAORJugDI/UOUQzVMacUI/AAAAAAAACu0/EC0GnD7xueQ/image_thumb
%25255B96%25255D.png?imgmax=800

image: http://lh5.ggpht.com/ECedOCTlQXc/UOUQ0OHvG3I/AAAAAAAACvE/lGVY4BNsUNA/image_thumb
%25255B100%25255D.png?imgmax=800

image: http://lh4.ggpht.com/-DgsdnE1Nl-A/UOUQ0zzvP-I/AAAAAAAACvU/IkuiPPI6hE/image_thumb%25255B99%25255D.png?imgmax=800

image: http://lh4.ggpht.com/8FQZR9qxKhw/UOUQ1x_zZqI/AAAAAAAACvk/Ch0CmNXhu-0/image_thumb
%25255B102%25255D.png?imgmax=800

image: http://lh5.ggpht.com/-z1_HOZsnDi0/UOUQ2rOZdYI/AAAAAAAACv0/O8uhHtYJEI/image_thumb%25255B104%25255D.png?imgmax=800

image: http://lh6.ggpht.com/5V17bNqHorY/UOUQ3pyu9kI/AAAAAAAACwE/uMfSiwgfT6s/image_thumb
%25255B106%25255D.png?imgmax=800

dbhome,oraenv and coreenv are already exist as part of grid infrastructure
installation . Those files are identical.

image: http://lh6.ggpht.com/E_xGLhTAPvw/UOUQ4T1f2kI/AAAAAAAACwU/WEdKa9Y91kY/image_thumb
%25255B108%25255D.png?imgmax=800

image: http://lh5.ggpht.com/-bxNFpmjDGYQ/UOUQ5bvi98I/AAAAAAAACwk/WeTgBalDRE/image_thumb%25255B110%25255D.png?imgmax=800

Create Oracle Database with DBCA.

image: http://lh4.ggpht.com/rsZxfR7vuh0/UOUQ5xSj__I/AAAAAAAACw0/ebADUTmkZUI/image_thumb
%25255B112%25255D.png?imgmax=800

image: http://lh3.ggpht.com/ZXEEcATrT4g/UOUQ67XOd1I/AAAAAAAACxE/LvOK9IRSYkE/image_thumb
%25255B116%25255D.png?imgmax=800

image: http://lh3.ggpht.com/PyMpBDegE7s/UOUQ8IY1PaI/AAAAAAAACxU/GNJ20FXnzo0/image_thumb
%25255B118%25255D.png?imgmax=800

image: http://lh5.ggpht.com/MIGpV0XhcRI/UOUQ8wsUu9I/AAAAAAAACxk/QaE_HLgt2gc/image_thumb
%25255B120%25255D.png?imgmax=800

image: http://lh6.ggpht.com/--PZnkfiwoBQ/UOUQTjPcNI/AAAAAAAACx0/DUp3QoUsr_Y/image_thumb%25255B122%25255D.png?
imgmax=800

image: http://lh4.ggpht.com/-LnaIpz0RSY/UOUQ_JV6YzI/AAAAAAAACyE/HPPqsnqWBvk/image_thumb
%25255B124%25255D.png?imgmax=800

image: http://lh4.ggpht.com/-JsdxzY35Sms/UOURAFj2EpI/AAAAAAAACyU/neQAcc2vF4/image_thumb%25255B137%25255D.png?imgmax=800

image: http://lh5.ggpht.com/-j2_Mamlmzyw/UOURAGIASI/AAAAAAAACyk/NSel_0iIgx4/image_thumb%25255B138%25255D.png?
imgmax=800

Need to provide the ASMNMP password.

image: http://lh5.ggpht.com/tVhXqeqbHRI/UOURBZWiv_I/AAAAAAAACy0/SBmoOaSM7n0/image_thumb
%25255B139%25255D.png?imgmax=800

image: http://lh5.ggpht.com/-le19oVTq1EY/UOURCfMAFI/AAAAAAAACzE/HlaB_kverdk/image_thumb%25255B140%25255D.png?
imgmax=800

image: http://lh3.ggpht.com/wHVOlTjAuiw/UOURDAeZHGI/AAAAAAAACzU/cuUDA6m0LyM/image_thumb
%25255B141%25255D.png?imgmax=800

image: http://lh4.ggpht.com/TBb0Pcmkve0/UOURDzkPs6I/AAAAAAAACzk/CpkX80cxhgg/image_thumb
%25255B142%25255D.png?imgmax=800

image: http://lh5.ggpht.com/-Fg3j6wD_WPg/UOUREqZhdI/AAAAAAAACz0/quVc82cPa54/image_thumb%25255B144%25255D.png?
imgmax=800

image: http://lh6.ggpht.com/qvq6lKdVnug/UOURF2YJd9I/AAAAAAAAC0E/Ed9T2ey9B3I/image_thumb
%25255B143%25255D.png?imgmax=800

image: http://lh4.ggpht.com/7TFQ7PyLxjU/UOURGnNYSFI/AAAAAAAAC0U/uVixMBPWfo4/image_thumb
%25255B145%25255D.png?imgmax=800

image: http://lh5.ggpht.com/Iwax8i5rxvE/UOURHcUyZzI/AAAAAAAAC0k/ymB5C5Uo7II/image_thumb
%25255B146%25255D.png?imgmax=800

image: http://lh3.ggpht.com/mdseY_uk5C0/UOURIabQLfI/AAAAAAAAC00/QW76YD9Go7Q/image_thumb
%25255B147%25255D.png?imgmax=800

image: http://lh6.ggpht.com/AtY1KU5A8pU/UOUYPcQjElI/AAAAAAAAC3A/WYqmAtqgFoE/image_thumb
%25255B149%25255D.png?imgmax=800

Reference
http://www.oracle.com/technetwork/server-storage/linux/asmlib/ol6-1709075.html
http://www.oracle.com/technetwork/topics/linux/uln-095759.html
https://oss.oracle.com/ol6/docs/RELEASE-NOTES-U3-en.html
http://www.oracle-base.com/articles/11g/oracle-db-11gr2-rac-installation-on-oraclelinux-6-using-virtualbox.php#create_shared_disks
http://www.oracle.com/technetwork/articles/servers-storageadmin/ginnydbinstallonlinux6-1845247.html
Posted by Po@sqlpanda at 12:03 AM
image: http://www.blogger.com/img/icon18_edit_allbkg.gif

Labels: ASM, GRID, Linux, Oracle, Storage

0 comments:
Post a Comment
Newer Post Older Post Home
Subscribe to: Post Comments (Atom)
Translate
Select Language

Powered by
image:
https://www.gstatic.com/images/branding/googlelogo/1x/googlelogo_color_42x16dp.
png
Translate

image: http://img1.blogblog.com/img/icon18_wrench_allbkg.png

Search this blog
Top of Form
Search

powered by

image:
http://www.google.com/uds/css/
small-logo.png

Bottom of Form

image: http://img1.blogblog.com/img/icon18_wrench_allbkg.png

About me
Po@sqlpanda
View my complete profile

image: http://img1.blogblog.com/img/icon18_wrench_allbkg.png

image: http://www.sqlpass.org/images/PASS_2013_header_logo.png

image: http://img1.blogblog.com/img/icon18_wrench_allbkg.png

Labels
ADDM (2) ADR (1) adrci (1) ASH (1) ASM (8) AWR (4) AWS (4) Azure (8)
BACKUP_RESTORE (6) BOOK (2) Certification (2) Cloud (7) ColumnStore (1)
constraint (1) Contained Database (1) CTE (1) Cursor (1) Data Buffer Cache (1) Data
Model (1) Data Recovery Advisor (1) Database Link (3) Database Replay (1)
DATABASE_ALERT (1) DatabaseMail (3) DataStudio (2) DB2 (27) DB2 10.5 (4) DBCC
(6) DBcompare (1) DMV (5) DQS (1) DSDE (3) ERwin (1) Event (3) Greenplum (1)
GRID (6) HADR (7) Hardware (4) HIgh Availability (2) Hyper-V (7) index (2)
InMemoryOLTP (7) Installation (1) ISOLATION (1) kerberos (2) Learning Resource (1)
Linux (29) Listener (2) Log (6) MDS (1) MDW (1) Memory Management (27)
MongoDB (2) MSSQL (115) MSSQL 2008 (51) MSSQL 2012 (14) MSSQL 2014 (27)
Networking (3) NoSQL (2) NUMA (3) OEM (8) Oracle (135) Oracle File (17) Oracle
Resource Manager (3) Oracle Stream (2) Oracle12c (1) partition (2) Performance
Tuning (28) php (1) PL/SQL (3) PostgreSQL (4) PowerShell (7) RAC (5) Resource (3)
Resource_Governor (1) SAMPLE DB (1) Security (21) SGA (10) SHARED_POOL (5)
SQL (11) SQL*Plus (2) SQLagent (1) sqlite (1) SSDT (1) SSMS (3) Starbucks (1)
Storage (19) Storage Engine (4) Sybase (2) T-SQL (19) TableSpace (11) TDE (1)
tempdb (13) Teradata (1) Tool Box (33) trace (2) TroubleShooting (48) UserAdmin (8)
Vargant (1) Virtual Box (9) Virtualization (11) VMWare (9) vNext (1) windbg (4)
Windows Server 2012 (1) Windows8 (1) WinServer 2012 (1) WinServer2008 (23)

image: http://img1.blogblog.com/img/icon18_wrench_allbkg.png

image: http://img1.blogblog.com/img/icon18_wrench_allbkg.png

Archive
► 2015 (2)
► November (2)
► 2014 (79)
► December (1)
► November (2)
► October (43)
► September (24)
► May (8)
► March (1)
▼ 2013 (173)
► November (2)
► October (8)
► September (15)
► August (6)
► July (22)
► June (27)
► May (6)
► April (2)
► March (19)
► February (36)
▼ January (30)
Auto restart Oracle and related service via dbstar...
Use netca to configure Oracle Listener
Logout automatically after log in
How to fix “Device eth0 does not seem to be presen...
Install Sample Database/Schema for Oracle 11gR2
Alter database set offline take forever …
Oracle SQL Developer fail to connect to RAC SCAN w...
Oracle RAC management 3: ocrcheck and srvctl

Oracle RAC management 2: Start/Stop RAC database
Oracle RAC management 1: srvctl and crsctl
Fix NTP offset issue on the Virtualize environment...
ORACLE_UNQNAME and Enterprise Manager
Greenplum VM: Jump start with Greenplum
PostgreSQL VM: Jump Start with PostgreSQL
Install Oracle 11gR2 RAC with ASM on OEL 6.3
Configure NTP daemon
NTP Daemon does not have slewing option …
INS-30510 Insufficient number of ASM Disks selecte...
How can fix the nslookup error “Refuce”
MSSQL Server Client use what kind of SQL Provider
DNS Server
ASMCMD
ASM operations
ASM Views
SQL Server Builds
Oracle Automated Storage Management (ASM)
Install Oracle 11gR2 on Oracle Linux 6.3 with ASM
CRS-4124: Oracle High Availability Services startu...
Configure Kernel Parameter and number of open file...
INS-06101 - IP address of localhost could not be d...
► 2012 (105)
► December (32)
► November (27)
► October (26)
► August (1)
► July (4)
► June (12)
► April (3)

► 2011 (39)
► December (2)
► November (27)
► October (10)

image: http://img1.blogblog.com/img/icon18_wrench_allbkg.png

Popular posts

image: http://lh6.ggpht.com/-RrM_NuNgZ18/UckclSLpXI/AAAAAAAAH20/ogzeIb15QK8/s72-c/image_thumb1.png?imgmax=800

DB2 Export/Import/load
Export DB2 export utility can export the table data to 4 different file format: DEL :
delimited ASCII format WSF: work sheet format ...

image: http://lh4.ggpht.com/N0qyK_8dMfU/UeTd2l2tJCI/AAAAAAAAIiI/guoFj1hsDj8/s72-c/image_thumb
%25255B3%25255D.png?imgmax=800

THREADPOOL and SQL Server threads
Just like most of the Windows software, SQL Server is operating under thread model.
This means the SQL Server process would spawn child thre...

image: http://lh4.ggpht.com/-NxIaxXDwdI/TqTIgXOGuxI/AAAAAAAAAIY/iifKYaJDgRw/s72-c/image_thumb.png?imgmax=800

Virtual Box with Microsoft Windows Server 2008 R2 VHD
Download link for Windows Server 2008 R2 VHD
http://www.microsoft.com/download/en/details.aspx?displaylang=en&id=16572
Extra the VH...

image: http://lh5.ggpht.com/bNf_seSFpoQ/UOO5ygfbduI/AAAAAAAACiM/Sgho96_tpvw/s72-c/image_thumb
%25255B1%25255D.png?imgmax=800

CRS-4124: Oracle High Availability Services startup failed
While Install the Oracle Grid infrastructure, I got CRS 4124 error as below:
4124: Oracle High Availability Services startup faile...

CRS-

image: http://lh3.ggpht.com/-0cmh9B4OEWQ/UQseTol1i9I/AAAAAAAAEJo/ZtPnKJ5jdQ/s72-c/image_thumb7.png?imgmax=800

Use netca to configure Oracle Listener
netca (Network Configuration Assistant) is Oracle command line for configure the
Oracle listener. Enterprise Manager has dependence on the ...

image: http://lh3.ggpht.com/-f4QaFa1nWU/UQYVbdNXvII/AAAAAAAAECc/T0XXp_znbsU/s72-c/image_thumb
%25255B1%25255D.png?imgmax=800

How to fix “Device eth0 does not seem to be present, delaying initialization.”
After clone the VM within Virtual box, I receive the error message “ Device eth0
does not seem to be present, delaying initialization .” w...

image: http://lh4.ggpht.com/-eYEgap_Nw1s/U2cMvKR41DI/AAAAAAAAJxY/dtyG20Qfx8/s72-c/image_thumb%25255B3%25255D.png?imgmax=800

Centos 6.5 join Windows Domain and Kerberos authentication
This is my note for configure Linux intergrade windows domain authentication with
Kerberos Package Require yum install samba ...

image: http://lh4.ggpht.com/-tqqaqETK98k/URXOvjnAifI/AAAAAAAAEp8/H749xIL1Kg/s72-c/image_thumb%25255B1%25255D.png?imgmax=800

How to fix ORA-12528: TNS:listener: all appropriate instances are blocking new
connections
I get this error “ ORA-12528: TNS:listener: all appropriate instances are blocking new
connections ” while testing the rman backup. Ro...

image: http://lh3.ggpht.com/iR4f5Z0Xwcc/UhLyyrxCY2I/AAAAAAAAI4Y/kwfDoCnew5c/s72-c/image_thumb
%25255B23%25255D.png?imgmax=800

Install DB2 10.5 on Centos 6.4
Prerequisite Install Centos 6.4 Download DB2 10.5 Add the Host Name
resolution: /etc/hosts –> This is required because I don’t hav...

image: http://lh5.ggpht.com/u0nohYuwzoU/ULbRZWNNWmI/AAAAAAAAA4s/0DGylX_r81k/s72-c/image_thumb
%25255B1%25255D.png?imgmax=800

Use orapwd to create the oracle password file.
Password file is only used to authenticate for SYSDBA,SYSOPER and SYSASM. Not for
the normal user. password file location: $ORACLE_HOME/db...

image: http://img1.blogblog.com/img/icon18_wrench_allbkg.png

I am reading

image: http://www.goodreads.com/images/widget/widget_logo.gif

image: http://img1.blogblog.com/img/icon18_wrench_allbkg.png

My Starbucks CityMug

image: http://img1.blogblog.com/img/icon18_wrench_allbkg.png

Powered by Blogger.

image: http://img1.blogblog.com/img/icon18_wrench_allbkg.png

Total Views ( Last 30 Days)
image: http://chart.googleapis.com/chart?
cht=lfi&chd=s:1146wdX10781VS13751aU2z581XVyP&chds=0.0,100.0&chs=75x30

&chco=202020c8&chf=bg,s,00000014&chls=2.0,0.0,0.0&chm=B,40404064,0,0.0,0
.0&hl=en-US
16,037

image: http://img1.blogblog.com/img/icon18_wrench_allbkg.png

Follow by Email
Top of Form
Submit

SqlPanda

en_US

Bottom of Form

image: http://img1.blogblog.com/img/icon18_wrench_allbkg.png

6758 visitors
Mar. 01st - Mar. 31st
live
Click to see details
Click to Enlarge Map
<a href="http://www4.clustrmaps.com/user/f2c107674"><img
src="http://www4.clustrmaps.com/stats/maps-no_clusters/www.sqlpanda.comthumb.jpg" alt="Locations of visitors to this page" /></a>

image: http://img1.blogblog.com/img/icon18_wrench_allbkg.png

image: http://img1.blogblog.com/img/icon18_wrench_allbkg.png

SQL Panda Copyright © 2011 - |- Template created by O Pregador - |- Powered by
Blogger Templates
image: https://www.gstatic.com/images/branding/product/1x/translate_24dp.png

Original text
Contribute a better translation

Read more at http://www.sqlpanda.com/2013/01/install-oracle-11gr2-on-oraclelinux-63.html#Ur6dq6mQ0yWktrR0.99

Sponsor Documents

Or use your account on DocShare.tips

Hide

Forgot your password?

Or register your new account on DocShare.tips

Hide

Lost your password? Please enter your email address. You will receive a link to create a new password.

Back to log-in

Close