Difference between revisions of "Oracle 10g VE"

From OpenVZ Virtuozzo Containers Wiki
Jump to: navigation, search
m (Reverted edits by 109.227.76.113 (talk) to last revision by Kir)
 
(12 intermediate revisions by 5 users not shown)
Line 1: Line 1:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
+
This is just a listing of steps taken to create a fully functional
<html>
+
Oracle container.
<head>
+
 
  <meta content="text/html; charset=ISO-8859-1"
+
== Create the container on the [[host system]] ==
  http-equiv="content-type">
+
 
  <title></title>
+
  vzctl create 1001 --ostemplate centos-4-i386-default
</head>
+
vzctl set 1001 --userpasswd root:password --save
<body>
+
vzctl set 1001 --hostname ve-oracle.example.com --save
This is just a listing of steps taken to create a fully functionaly
+
vzctl set 1001 --ipadd 192.168.0.62 --save
Oracle VE.<br>
+
 
<br>
+
== Reset resource limits ==
<span style="font-weight: bold;">Create the VE on the
+
 
Hardware Node (HN)</span><br>
+
I decided to have max limits to avoid problems during installation.
<br>
+
Once the installation is
vzctl create 1001 --ostemplate centos-4-i386-default<br>
+
done and the system left running for some time, these limits should be
vzctl set 1001 --userpasswd root:password --save<br>
+
adjusted.
vzctl set 1001 --hostname ve-oracle.example.com --save<br>
+
 
vzctl set 1001 --ipadd 192.168.0.62 --save<br>
+
{{Note|setting the UBC limits to "unlimited" value like below can only be done on a trusted single-container machine, and can create problems. For more info about UBC, see [[Resource shortage]] and [[UBC]].}}
<br>
+
 
<span style="font-weight: bold;">Reset resource limits</span><br>
+
{{Inconsistent UBC warning}}
<br>
+
 
I decided to have max limits to avoid porblems during installation.
+
vzctl set 1001 --kmemsize unlimited --save
Once the installation is<br>
+
vzctl set 1001 --lockedpages unlimited --save
done and the system left running for some time, these limits can be
+
vzctl set 1001 --privvmpages unlimited --save
adjusted.<br>
+
vzctl set 1001 --shmpages unlimited --save
<br>
+
vzctl set 1001 --numproc unlimited --save
vzctl set 1001 --kmemsize 2147483647:2147483647 --save<br>
+
vzctl set 1001 --numtcpsock unlimited --save
vzctl set 1001 --lockedpages 2147483647:2147483647 --save<br>
+
vzctl set 1001 --numflock unlimited --save
vzctl set 1001 --privvmpages 2147483647:2147483647 --save<br>
+
vzctl set 1001 --numpty unlimited --save
vzctl set 1001 --shmpages 2147483647:2147483647 --save<br>
+
vzctl set 1001 --numsiginfo unlimited --save
vzctl set 1001 --dummy 2147483647:2147483647 --save<br>
+
vzctl set 1001 --tcpsndbuf unlimited --save
vzctl set 1001 --numproc 2147483647:2147483647 --save<br>
+
vzctl set 1001 --tcprcvbuf unlimited --save
vzctl set 1001 --physpages 2147483647:2147483647 --save<br>
+
vzctl set 1001 --othersockbuf unlimited --save
vzctl set 1001 --vmguarpages 2147483647:2147483647 --save<br>
+
vzctl set 1001 --dgramrcvbuf unlimited --save
vzctl set 1001 --oomguarpages 2147483647:2147483647 --save<br>
+
vzctl set 1001 --numothersock unlimited --save
vzctl set 1001 --numtcpsock 2147483647:2147483647 --save<br>
+
vzctl set 1001 --dcachesize unlimited --save
vzctl set 1001 --numflock 2147483647:2147483647 --save<br>
+
vzctl set 1001 --numfile unlimited --save
vzctl set 1001 --numpty 2147483647:2147483647 --save<br>
+
vzctl set 1001 --numiptent unlimited --save
vzctl set 1001 --numsiginfo 2147483647:2147483647 --save<br>
+
 
vzctl set 1001 --tcpsndbuf 2147483647:2147483647 --save<br>
+
Or you can set these limits in your <code>/etc/vz/conf/1001.conf</code> file:
vzctl set 1001 --tcprcvbuf 2147483647:2147483647 --save<br>
+
 
vzctl set 1001 --othersockbuf 2147483647:2147483647 --save<br>
+
{{Inconsistent UBC warning}}
vzctl set 1001 --dgramrcvbuf 2147483647:2147483647 --save<br>
+
<pre>
vzctl set 1001 --numothersock 2147483647:2147483647 --save<br>
+
# Primary parameters
vzctl set 1001 --dcachesize 2147483647:2147483647 --save<br>
+
AVNUMPROC="unlimited"
vzctl set 1001 --numfile 2147483647:2147483647 --save<br>
+
NUMPROC="unlimited"
vzctl set 1001 --numiptent 2147483647:2147483647 --save<br>
+
NUMTCPSOCK="unlimited"
<br>
+
NUMOTHERSOCK="unlimited"
'''Start the VE'''<br>
+
VMGUARPAGES="unlimited"
<br>
+
 
vzctl start 1001<br>
+
# Secondary parameters
<br>
+
KMEMSIZE="unlimited"
<br>
+
TCPSNDBUF="unlimited"
'''Update /etc/resolv.conf on the VE'''<br>
+
TCPRCVBUF="unlimited"
<br>
+
OTHERSOCKBUF="unlimited"
search example.com<br>
+
DGRAMRCVBUF="unlimited"
nameserver &lt;ip address of your name server&gt;<br>
+
OOMGUARPAGES="unlimited"
<br>
+
 
<br>
+
# Auxiliary parameters
'''Install Required Packages'''<br>
+
LOCKEDPAGES="unlimited"
<br>
+
SHMPAGES="unlimited"
vzyum 1001 install binutils compat-db gcc gcc-c++ glibc glibc-common
+
PRIVVMPAGES="unlimited"
libstdc++ libstdc++-devel gnome-libs make pdksh sysstat libaio
+
NUMFILE="unlimited"
xscreensaver openmotif21<br>
+
NUMFLOCK="unlimited"
vzyum 1001 install xorg-x11-xfs usbutils urw-fonts shared-mime-info
+
NUMPTY="unlimited"
perl-libwww-perl perl-XML-Parser perl-URI perl-HTML-Tagset
+
NUMSIGINFO="unlimited"
perl-HTML-Parser patch <br>
+
DCACHESIZE="unlimited"
vzyum 1001 install lvm2 intltool libIDL libart_lgpl libbonobo xterm
+
 
libcap libcroco libgnomecanvas libexif libgnomecups libgnomeprint22
+
PHYSPAGES="unlimited"
libsoup libwnck libxklavier<br>
+
NUMIPTENT="unlimited"
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
+
</pre>
&nbsp;<br>
+
 
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;<br>
+
== Start the container ==
'''Check the following rpms are installed on the VE'''<br>
+
vzctl start 1001
<br>
+
 
vzctl exec 1001 rpm -q binutils gcc gcc-c++ glibc gnome-libs libstdc++
+
== Update <code>/etc/resolv.conf</code> on the container ==
libstdc++-devel make pdksh sysstat xscreensaver libaio<br>
+
 
<br>
+
Put the following into your container's /etc/resolv.conf:
<br>
+
 
'''Add Oracle User/Group'''<br>
+
search example.com
<br>
+
nameserver <ip address of your name server>
vzctl exec 1001 /usr/sbin/groupadd oinstall<br>
+
 
vzctl exec 1001 /usr/sbin/groupadd dba<br>
+
== Install Required Packages ==
vzctl exec 1001 /usr/sbin/useradd -m -g oinstall -G dba oracle<br>
+
 
vzctl exec 1001 id oracle<br>
+
vzyum 1001 install binutils compat-db gcc gcc-c++ glibc \
<br>
+
  glibc-common libstdc++ libstdc++-devel gnome-libs make \
'''Set Password for the Oracle user'''<br>
+
  pdksh sysstat libaio xscreensaver openmotif21 xorg-x11-xfs \
<br>
+
  usbutils urw-fonts shared-mime-info perl-libwww-perl \
vzctl exec 1001 passwd oracle<br>
+
  perl-XML-Parser perl-URI perl-HTML-Tagset perl-HTML-Parser \
<br>
+
  patch lvm2 intltool libIDL libart_lgpl libbonobo xterm \
'''Create Directories for Oracle Home/Data and the download directory'''<br>
+
  libcap libcroco libgnomecanvas libexif libgnomecups \
<br>
+
  libgnomeprint22 libsoup libwnck libxklavier
vzctl exec 1001 mkdir /home/oracle/10gR2_db<br>
+
 
vzctl exec 1001 mkdir -p /u01/app/oracle/product/10.2.0/db_1<br>
+
== Check the following rpms are installed on the container ==
vzctl exec 1001 mkdir /u01/app/oracle/oradata<br>
+
 
vzctl exec 1001 chown -R oracle:oinstall /u01/app/oracle
+
vzctl exec 1001 rpm -q binutils gcc gcc-c++ glibc gnome-libs \
/home/oracle/10gR2_db<br>
+
  libstdc++ libstdc++-devel make pdksh sysstat xscreensaver libaio
vzctl exec 1001 chmod -R 775 /u01/app/oracle /home/oracle/10gR2_db<br>
+
 
vzctl exec 1001 ln -s /usr/lib/libstdc++.so.6.0.3
+
== Add Oracle User/Group ==
/usr/lib/libstdc++.so.5<br>
+
 
<br>
+
vzctl exec 1001 /usr/sbin/groupadd oinstall
'''Put these values in /etc/sysctl.conf on the HN'''<br>
+
vzctl exec 1001 /usr/sbin/groupadd dba
<br>
+
vzctl exec 1001 /usr/sbin/useradd -m -g oinstall -G dba oracle
kernel.shmall = 2097152<br>
+
vzctl exec 1001 id oracle
kernel.shmmax = 536870912<br>
+
 
kernel.shmmni = 4096<br>
+
== Set Password for the Oracle user ==
kernel.sem = 250 32000 100 128<br>
+
 
fs.file-max = 65536<br>
+
vzctl exec 1001 passwd oracle
net.ipv4.ip_local_port_range = 1024 65000<br>
+
 
net.core.rmem_default=262144<br>
+
== Create Directories for Oracle Home/Data and the download directory ==
net.core.wmem_default=262144<br>
+
 
net.core.rmem_max=262144<br>
+
vzctl exec 1001 mkdir /home/oracle/10gR2_db
net.core.wmem_max=262144<br>
+
vzctl exec 1001 mkdir -p /u01/app/oracle/product/10.2.0/db_1
<br>
+
vzctl exec 1001 mkdir /u01/app/oracle/oradata
'''Execute on the HN'''<br>
+
vzctl exec 1001 chown -R oracle:oinstall /u01/app/oracle /home/oracle/10gR2_db
<br>
+
vzctl exec 1001 chmod -R 775 /u01/app/oracle /home/oracle/10gR2_db
/sbin/sysctl -p<br>
+
vzctl exec 1001 ln -s /usr/lib/libstdc++.so.6.0.3 /usr/lib/libstdc++.so.5
<br>
+
 
<br>
+
== Put these values in /etc/sysctl.conf on the HN ==
<br>
+
 
At this point the VE is ready for Oracle installation.<br>
+
Put these values in /etc/sysctl.conf on the HN:
We take a backup of the VE at this point in case we need to rebuild the
+
 
system or do a clean Oracle install<br>
+
kernel.shmall = 2097152
<br>
+
kernel.shmmax = 536870912
'''Shutdown the VE and take a backup'''<br>
+
kernel.shmmni = 4096
<br>
+
kernel.sem = 250 32000 100 128
vzctl stop 1001<br>
+
fs.file-max = 65536
cd /u01/backups<br>
+
net.ipv4.ip_local_port_range = 1024 65000
tar czpvf ve-1001-preOracle.tar.gz /vz/private/1001/
+
net.core.rmem_default=262144
/etc/vz/conf/1001.conf<br>
+
net.core.wmem_default=262144
<br>
+
net.core.rmem_max=262144
'''Start VE again'''<br>
+
net.core.wmem_max=262144
<br>
+
 
vzctl start 1001<br>
+
Then execute on the HN the following command:
<br>
+
'''Copy the downloaded Oracle zip file to the VE and change its
+
/sbin/sysctl -p
ownership to oracle on the VE'''<br>
+
 
<br>
+
 
cp /u01/software/10201_database_linux32.zip
+
At this point the container is ready for Oracle installation.
/vz/private/1001/home/oracle/10gR2_db/<br>
+
We take a backup of the container at this point in case we need to rebuild the
vzctl exec 1001 chown oracle:oinstall
+
system or do a clean Oracle install.
/home/oracle/10gR2_db/10201_database_linux32.zip<br>
+
 
<br>
+
== Shutdown the container and take a backup ==
'''Now login as oracle on the ve-1001'''<br>
+
 
<br>
+
vzctl stop 1001
cd /home/oracle/10gR2_db<br>
+
cd /u01/backups
unzip 10201_database_linux32.zip<br>
+
tar czpvf ve-1001-preOracle.tar.gz /vz/private/1001/ /etc/vz/conf/1001.conf
cd database/<br>
+
 
export ORACLE_BASE=/u01/app/oracle<br>
+
== Start the container again ==
export ORACLE_HOME=/u01/app/oracle/product/10.2.0/db_1<br>
+
 
export DISPLAY=192.168.0.149:0<br>
+
vzctl start 1001
<br>
+
 
Make sure u can run xterm<br>
+
== Put oracle distro into the container ==
<br>
+
 
./runInstaller<br>
+
Copy the downloaded Oracle zip file to the container and change its
<br>
+
ownership to "oracle" on the container.
'''When prompted to run scripts as root. Login as root and execute'''<br>
+
 
<br>
+
cp /u01/software/10201_database_linux32.zip /vz/private/1001/home/oracle/10gR2_db/
export DISPLAY=192.168.0.149:0<br>
+
vzctl exec 1001 chown oracle:oinstall /home/oracle/10gR2_db/10201_database_linux32.zip
/u01/app/oracle/oraInventory/orainstRoot.sh<br>
+
 
/u01/app/oracle/product/10.2.0/db_1/root.sh<br>
+
== Start installation ==
<br>
+
 
'''Update oracle's profile with the following'''<br>
+
Now login as oracle on the ve-1001, and run the following commands:
<br>
+
 
cd<br>
+
cd /home/oracle/10gR2_db
vi /home/oracle/.bashrc<br>
+
unzip 10201_database_linux32.zip
export ORACLE_BASE=/u01/app/oracle<br>
+
cd database/
export ORACLE_HOME=/u01/app/oracle/product/10.2.0/db_1<br>
+
export ORACLE_BASE=/u01/app/oracle
export LD_LIBRARY_PATH=$ORACLE_HOME/lib:$LD_LIBRARY_PATH<br>
+
export ORACLE_HOME=/u01/app/oracle/product/10.2.0/db_1
export PATH=$ORACLE_HOME/bin:$PATH<br>
+
export DISPLAY=192.168.0.149:0
export ORACLE_SID=orcl<br>
+
 
<br>
+
Make sure you can run xterm, then:
<br>
+
 
'''Delete installation files (optional)'''<br>
+
./runInstaller
<br>
+
 
cd /home/oracle/10gR2_db<br>
+
'''When prompted to run scripts as root. Login as root and execute'''
rm -rf database<br>
+
 
<br>
+
export DISPLAY=192.168.0.149:0
'''Time to take another backup of the VE on the HN node.''' <br>
+
/u01/app/oracle/oraInventory/orainstRoot.sh
<br>
+
/u01/app/oracle/product/10.2.0/db_1/root.sh
This backup will allow you to restore the VE to the point where no
+
 
database has yet been created.<br>
+
'''Update oracle's profile with the following'''
<br>
+
 
vzctl stop 1001<br>
+
cd
cd /u01/backups<br>
+
vi /home/oracle/.bashrc
tar czpvf ve-1001-postOracleSoftware.tar.gz /vz/private/1001/
+
export ORACLE_BASE=/u01/app/oracle
/etc/vz/conf/1001.conf<br>
+
export ORACLE_HOME=/u01/app/oracle/product/10.2.0/db_1
<br>
+
export LD_LIBRARY_PATH=$ORACLE_HOME/lib:$LD_LIBRARY_PATH
<br>
+
export PATH=$ORACLE_HOME/bin:$PATH
Start VE<br>
+
export ORACLE_SID=orcl
vzctl start 1001<br>
+
 
<br>
+
 
'''Login as oracle and create the database'''<br>
+
'''Delete installation files (optional)'''
<br>
+
 
export DISPLAY=192.168.0.149:0<br>
+
cd /home/oracle/10gR2_db
dbca<br>
+
rm -rf database
<br>
+
 
<br>
+
'''Time to take another backup of the container on the [[hardware node]].'''  
'''Create listener'''<br>
+
 
<br>
+
This backup will allow you to restore the container to the point where no
netca<br>
+
database has yet been created.
<br>
+
 
'''Now take another backup on the HN node'''<br>
+
vzctl stop 1001
<br>
+
cd /u01/backups
vzctl stop 1001<br>
+
tar czpvf ve-1001-postOracleSoftware.tar.gz \
cd /u01/backups<br>
+
  /vz/private/1001/ /etc/vz/conf/1001.conf
tar czpvf ve-1001-postOracleDatabase.tar.gz /vz/private/1001/
+
 
/etc/vz/conf/1001.conf<br>
+
 
<br>
+
Start the container
</body>
+
 
</html>
+
vzctl start 1001
 +
 
 +
'''Login as oracle and create the database'''
 +
 
 +
export DISPLAY=192.168.0.149:0
 +
dbca
 +
 
 +
 
 +
'''Create listener'''
 +
 
 +
netca
 +
 
 +
'''Now take another backup on the HN node'''
 +
 
 +
vzctl stop 1001
 +
cd /u01/backups
 +
tar czpvf ve-1001-postOracleDatabase.tar.gz \
 +
  /vz/private/1001/ /etc/vz/conf/1001.conf
 +
 
 +
== Oracle Help ==
 +
 
 +
* [http://www.orafaq.com/forum Ask questions on the Oracle Forum]
 +
* [http://www.orawiki.com/ Oracle Wiki]
 +
 
 +
[[Category:HOWTO]]

Latest revision as of 19:50, 11 October 2011

This is just a listing of steps taken to create a fully functional Oracle container.

Create the container on the host system[edit]

vzctl create 1001 --ostemplate centos-4-i386-default
vzctl set 1001 --userpasswd root:password --save
vzctl set 1001 --hostname ve-oracle.example.com --save
vzctl set 1001 --ipadd 192.168.0.62 --save

Reset resource limits[edit]

I decided to have max limits to avoid problems during installation. Once the installation is done and the system left running for some time, these limits should be adjusted.

Yellowpin.svg Note: setting the UBC limits to "unlimited" value like below can only be done on a trusted single-container machine, and can create problems. For more info about UBC, see Resource shortage and UBC.
Warning.svg Warning: The above UBC values might not be consistent; see UBC consistency check.
vzctl set 1001 --kmemsize unlimited --save
vzctl set 1001 --lockedpages unlimited --save
vzctl set 1001 --privvmpages unlimited --save
vzctl set 1001 --shmpages unlimited --save
vzctl set 1001 --numproc unlimited --save
vzctl set 1001 --numtcpsock unlimited --save
vzctl set 1001 --numflock unlimited --save
vzctl set 1001 --numpty unlimited --save
vzctl set 1001 --numsiginfo unlimited --save
vzctl set 1001 --tcpsndbuf unlimited --save
vzctl set 1001 --tcprcvbuf unlimited --save
vzctl set 1001 --othersockbuf unlimited --save
vzctl set 1001 --dgramrcvbuf unlimited --save
vzctl set 1001 --numothersock unlimited --save
vzctl set 1001 --dcachesize unlimited --save
vzctl set 1001 --numfile unlimited --save
vzctl set 1001 --numiptent unlimited --save

Or you can set these limits in your /etc/vz/conf/1001.conf file:

Warning.svg Warning: The above UBC values might not be consistent; see UBC consistency check.
# Primary parameters
AVNUMPROC="unlimited"
NUMPROC="unlimited"
NUMTCPSOCK="unlimited"
NUMOTHERSOCK="unlimited"
VMGUARPAGES="unlimited"

# Secondary parameters
KMEMSIZE="unlimited"
TCPSNDBUF="unlimited"
TCPRCVBUF="unlimited"
OTHERSOCKBUF="unlimited"
DGRAMRCVBUF="unlimited"
OOMGUARPAGES="unlimited"

# Auxiliary parameters
LOCKEDPAGES="unlimited"
SHMPAGES="unlimited"
PRIVVMPAGES="unlimited"
NUMFILE="unlimited"
NUMFLOCK="unlimited"
NUMPTY="unlimited"
NUMSIGINFO="unlimited"
DCACHESIZE="unlimited"

PHYSPAGES="unlimited"
NUMIPTENT="unlimited"

Start the container[edit]

vzctl start 1001

Update /etc/resolv.conf on the container[edit]

Put the following into your container's /etc/resolv.conf:

search example.com
nameserver <ip address of your name server>

Install Required Packages[edit]

vzyum 1001 install binutils compat-db gcc gcc-c++ glibc \
 glibc-common libstdc++ libstdc++-devel gnome-libs make \
 pdksh sysstat libaio xscreensaver openmotif21 xorg-x11-xfs \
 usbutils urw-fonts shared-mime-info perl-libwww-perl \
 perl-XML-Parser perl-URI perl-HTML-Tagset perl-HTML-Parser \
 patch lvm2 intltool libIDL libart_lgpl libbonobo xterm \
 libcap libcroco libgnomecanvas libexif libgnomecups \
 libgnomeprint22 libsoup libwnck libxklavier

Check the following rpms are installed on the container[edit]

vzctl exec 1001 rpm -q binutils gcc gcc-c++ glibc gnome-libs \
 libstdc++ libstdc++-devel make pdksh sysstat xscreensaver libaio

Add Oracle User/Group[edit]

vzctl exec 1001 /usr/sbin/groupadd oinstall
vzctl exec 1001 /usr/sbin/groupadd dba
vzctl exec 1001 /usr/sbin/useradd -m -g oinstall -G dba oracle
vzctl exec 1001 id oracle

Set Password for the Oracle user[edit]

vzctl exec 1001 passwd oracle

Create Directories for Oracle Home/Data and the download directory[edit]

vzctl exec 1001 mkdir /home/oracle/10gR2_db
vzctl exec 1001 mkdir -p /u01/app/oracle/product/10.2.0/db_1
vzctl exec 1001 mkdir /u01/app/oracle/oradata
vzctl exec 1001 chown -R oracle:oinstall /u01/app/oracle /home/oracle/10gR2_db
vzctl exec 1001 chmod -R 775 /u01/app/oracle /home/oracle/10gR2_db
vzctl exec 1001 ln -s /usr/lib/libstdc++.so.6.0.3 /usr/lib/libstdc++.so.5

Put these values in /etc/sysctl.conf on the HN[edit]

Put these values in /etc/sysctl.conf on the HN:

kernel.shmall = 2097152
kernel.shmmax = 536870912
kernel.shmmni = 4096
kernel.sem = 250 32000 100 128
fs.file-max = 65536
net.ipv4.ip_local_port_range = 1024 65000
net.core.rmem_default=262144
net.core.wmem_default=262144
net.core.rmem_max=262144
net.core.wmem_max=262144

Then execute on the HN the following command:

/sbin/sysctl -p


At this point the container is ready for Oracle installation. We take a backup of the container at this point in case we need to rebuild the system or do a clean Oracle install.

Shutdown the container and take a backup[edit]

vzctl stop 1001
cd /u01/backups
tar czpvf ve-1001-preOracle.tar.gz /vz/private/1001/ /etc/vz/conf/1001.conf

Start the container again[edit]

vzctl start 1001

Put oracle distro into the container[edit]

Copy the downloaded Oracle zip file to the container and change its ownership to "oracle" on the container.

cp /u01/software/10201_database_linux32.zip /vz/private/1001/home/oracle/10gR2_db/
vzctl exec 1001 chown oracle:oinstall /home/oracle/10gR2_db/10201_database_linux32.zip

Start installation[edit]

Now login as oracle on the ve-1001, and run the following commands:

cd /home/oracle/10gR2_db
unzip 10201_database_linux32.zip
cd database/
export ORACLE_BASE=/u01/app/oracle
export ORACLE_HOME=/u01/app/oracle/product/10.2.0/db_1
export DISPLAY=192.168.0.149:0

Make sure you can run xterm, then:

./runInstaller

When prompted to run scripts as root. Login as root and execute

export DISPLAY=192.168.0.149:0
/u01/app/oracle/oraInventory/orainstRoot.sh
/u01/app/oracle/product/10.2.0/db_1/root.sh

Update oracle's profile with the following

cd
vi /home/oracle/.bashrc
export ORACLE_BASE=/u01/app/oracle
export ORACLE_HOME=/u01/app/oracle/product/10.2.0/db_1
export LD_LIBRARY_PATH=$ORACLE_HOME/lib:$LD_LIBRARY_PATH
export PATH=$ORACLE_HOME/bin:$PATH
export ORACLE_SID=orcl


Delete installation files (optional)

cd /home/oracle/10gR2_db
rm -rf database

Time to take another backup of the container on the hardware node.

This backup will allow you to restore the container to the point where no database has yet been created.

vzctl stop 1001
cd /u01/backups
tar czpvf ve-1001-postOracleSoftware.tar.gz \
  /vz/private/1001/ /etc/vz/conf/1001.conf


Start the container

vzctl start 1001

Login as oracle and create the database

export DISPLAY=192.168.0.149:0
dbca


Create listener

netca

Now take another backup on the HN node

vzctl stop 1001
cd /u01/backups
tar czpvf ve-1001-postOracleDatabase.tar.gz \
  /vz/private/1001/ /etc/vz/conf/1001.conf

Oracle Help[edit]