Install Oracle12cR1 on Oracle Linux 6.5 in VirtualBox, oraclevirtualbox

Source: Internet
Author: User
Tags oracle vm virtualbox vm virtualbox

Install Oracle12cR1 on Oracle Linux 6.5 in VirtualBox, oraclevirtualbox

My Oralce Linux 6.5 is running on VirtualBox. Basic settings is 4G memory, 50G hard-disk, auto partition when install OL6.5.

 

** Following series of operations need root privilege.

1. Edit/etc/host

Add your hostname. For example, you host name ol65.localdomain then

127.0.0.1   localhost localhost.localdomain ol65 ol65.localdomain::1              localhost localhost.localdomain ol65 ol65.localdomain

When you install oracle linux6.5 there is one step ask domain name. you shoshould add it into/etc/hosts before you start installing. if there is no this domain name there will be an error, installation can't continue.

PRVF-00002: cocould not retrieve local nodename

Cause: Unable to determine local host name using Java network functions.

Action: Ensure that hostname is defined correctly using the 'hostname' command.


2. Add or amend the following lines to the/etc/sysctl. conf
fs.file-max = 6815744kernel.sem = 250 32000 100 128kernel.shmmni = 4096kernel.shmall = 1073741824kernel.shmmax = 4398046511104net.core.rmem_default = 262144net.core.rmem_max = 4194304net.core.wmem_default = 262144net.core.wmem_max = 1048576fs.aio-max-nr = 1048576net.ipv4.ip_local_port_range = 9000 65500
3. Run the following command to change the current kernel parameters
/sbin/sysctl -p
4. Add the following lines to the/etc/security/limits. conf
oracle   soft   nofile   1024oracle   hard   nofile   65536oracle   soft   nproc    2047oracle   hard   nproc    16384oracle   soft   stack    10240oracle   hard   stack    32768
5. Check and install following packages
yum install binutils -yyum install compat-libcap1 -yyum install compat-libstdc++-33 -yyum install compat-libstdc++-33.i686 -yyum install gcc -yyum install gcc-c++ -yyum install glibc -yyum install glibc.i686 -yyum install glibc-devel -yyum install glibc-devel.i686 -yyum install ksh -yyum install libgcc -yyum install libgcc.i686 -yyum install libstdc++ -yyum install libstdc++.i686 -yyum install libstdc++-devel -yyum install libstdc++-devel.i686 -yyum install libaio -yyum install libaio.i686 -yyum install libaio-devel -yyum install libaio-devel.i686 -yyum install libXext -yyum install libXext.i686 -yyum install libXtst -yyum install libXtst.i686 -yyum install libX11 -yyum install libX11.i686 -yyum install libXau -yyum install libXau.i686 -yyum install libxcb -yyum install libxcb.i686 -yyum install libXi -yyum install libXi.i686 -yyum install make -yyum install sysstat -yyum install unixODBC -yyum install unixODBC-devel -y
6. Create new group and user ** I install Oracle for learning so I simplified this, only created one new user who will be in charge of all oracle related operations. This's not suitable to product environment.
groupadd -g 54321 oracleuseradd -u 54321 -g oracle oraclepasswd oracle
7. Amend the/etc/security/limits. d/90-nproc.conf
# Change this*          soft    nproc    1024# To this* - nproc 16384
8. Change the setting of SELinux to permissive by editing the/etc/selinux/config
SELINUX=permissive
9. Set firewall to enable Oracle DB portsOpen 1521 and 5500, up to you.10. Create a new file and change its owner
touch /etc/oratabchown -R oracle:oracle /etc/oratab
11. Create install directory
mkdir -p /u01chown -R oracle:oracle /u01


** Login as oracle12. Unzip installer and run installerUnzip linuxamd64_12102_database_1of2.zip and linuxamd64_12102_database204 f2.zipgo into database folder Run./runInstaller

13. Install






















** Stop here! Open console, login as root, run these two scripts


1)/u01/app/oraInventory/orainstRoot. sh

[root@ol65 oraInventory]# ./orainstRoot.shChanging permissions of /u01/app/oraInventory.Adding read,write permissions for group.Removing read,write,execute permissions for world.Changing groupname of /u01/app/oraInventory to oracle.The execution of the script is complete.

2)/u01/app/oracle/product/12.1.0/dbhome_1/root. sh

[root@ol65 dbhome_1]# ./root.shPerforming root user operation.The following environment variables are set as:   ORACLE_OWNER= oracle   ORACLE_HOME=  /u01/app/oracle/product/12.1.0/dbhome_1Enter the full pathname of the local bin directory: [/usr/local/bin]:  Copying dbhome to /usr/local/bin ...  Copying oraenv to /usr/local/bin ...  Copying coraenv to /usr/local/bin ...Creating /etc/oratab file...Entries will be added to the /etc/oratab file as needed byDatabase Configuration Assistant when a database is createdFinished running generic part of root script.Now product-specific root actions will be performed.







Completed! 14. Access EM Database Express URL to test

15. Login as oracle and edit ~ /. Bash_profileAdd below part inside
# Oracle12c Settingsexport TMP=/tmpexport TMPDIR=$TMPexport ORACLE_HOSTNAME=oracle12c.localdomainexport ORACLE_UNQNAME=oracle12cexport ORACLE_BASE=/u01/app/oracleexport ORACLE_HOME=$ORACLE_BASE/product/12.1.0/dbhome_1export ORACLE_SID=orclexport PATH=/usr/sbin:$PATH:$ORACLE_HOME/binexport LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/libexport CLASSPATH=$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib
16. Set auto startupLogin as root

1) Edit/etc/oratab, change N to Y as below

orcl:/u01/app/oracle/product/12.1.0/dbhome_1:Y

2) Create file/etc/init. d/dbora and add following content

#!/bin/sh# chkconfig: 345 99 10# description: Service to start and stop Oracle Database and Listener## processname: oracle# config: /etc/oratab# pidfile: /var/run/oracle.pid# Source function library.. /etc/init.d/functionsRETVAL=0ORA_OWNER="oracle"ORA_HOME="/u01/app/oracle/product/12.1.0/dbhome_1"# See how we were called.prog="oracle"start() {echo -n $"Starting $prog: "su - $ORA_OWNER -c "$ORA_HOME/bin/dbstart $ORA_HOME"RETVAL=$?echo[ $RETVAL -eq 0 ] && touch /var/lock/subsys/dborareturn $RETVAL}stop() {echo -n $"Stopping $prog: "su - $ORA_OWNER -c "$ORA_HOME/bin/dbshut $ORA_HOME"RETVAL=$?echo[ $RETVAL -eq 0 ] && rm -r /var/lock/subsys/dborareturn $RETVAL}restart() {stopstart}case "$1" instart)start;;stop)stop;;restart)restart;;*)echo $"Usage: $0 {start|stop|restart}"exit 1esacexit $?
ORA-OWNER and ORA_HOME shocould math your own condition.

Next you need to run the following commands to change permissions and make the service active.

chgrp oracle /etc/init.d/dbora chmod 755 /etc/init.d/dbora chkconfig --level 345 dbora on

3) Reboot server
reboot

Congratulation!

The installation of Oracle Linux 65 in vbox fails when kdump reports an error.

Ctrl + Alt + F1 ~ F12, there is always a screen that can enter the character console, and then shut down the service that started for the first time in the Wizard. Just restart it.

Problems with Linux installation using Oracle VM VirtualBox in XP

The kernel module is missing.
We recommend that you reinstall linux.
 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.