Briefly, how do you install Oracle software on UNIX.

Answers were Sorted based on User's Feedback



Briefly, how do you install Oracle software on UNIX...

Answer / shilpa

1. Log onto you computer as a member of the administrative
group that is authorized to install Oracle software and
create and run the database.

2. Insert the distribution CD for the database into your
CD drive. The Autorun window will appear automatically.
Select Install/Deinstall Products.

Note: If you are downloading from Oracle’s download site,
follow the instructions given on the Web site.


3. The Oracle Universal Installer Welcome window appears.
Select Next to begin the installation of your software


4. On UNIX and Linux installations, the Specify Inventory
directory and credentials window appears. Enter the full
path of the directory in which to install the Oracle
software or accept the default. Enter the name of an
operating system group that has write permission to the
directory. Click Next. Click OK.


5. A dialog page appears.

Open a new terminal window, log in as root, and run the
orainstRoot.sh script as instructed in the dialog page.
When the script finishes, return to the Oracle Universal
Installer page and click Continue.


6. The Specify File Locations page appears. Enter the
Oracle home name and directory path in which to install the
Oracle software or accept the default. Click Next.


7. The Select Installation Type page appears. Select
Enterprise Edition or Standard Edition as appropriate for
your environment. Click Next.


8. The installer will now verify that your system meets
all the minimum requirements for installing and configuring
the chosen products. Correct any reported issues before
continuing. Click Next.


9. The Select Database Configuration page appears. Select
the starter database type of General Purpose, Transaction
Processing, or Data Warehouse. Click Next.


10. The Specify Database Configuration Options page
appears. Enter the Global Database Name and SID in the
Database Naming section. Select the character set in the
Database Character Set section. Select Create database with
Sample Schemas to install the Sample schemas. Click Next.





11. The Select Database Management Option page appears.
Select Use Database Control for Database Management. Click
Next.





12. The Specify Database File Storage Option page appears.
Select File System, Automatic Storage Management, or Raw
Devices as appropriate to your environment. Click Next.





13. The Specify Backup and Recovery Options page appears.
Select Do not enable Automated backups to configure your
own backup schedule. Click Next.





14. The Specify Database Schema Passwords page appears.
Select Use different passwords for these accounts and enter
passwords for the administrative users or select Use the
same password for all the accounts and enter the password.
Click Next.





15. The Summary page appears containing a list of the
products to be installed. Click Install to begin the
installation.





16. You will see the progress window.





17. The Configuration Assistants page appears. Allow the
assistants to execute. They configure your network, start
an Oracle Net Services listener process for connecting to
the database, create the database and configure management
tools.





18. A page showing a progress bar for database creation
appears.





19. When the database creation is finished, a page
containing information about your database appears. Review
this list. You may click on Password Management at the
bottom of the page if you want to unlock or change
passwords for database accounts. Otherwise click OK.





20. A dialog page appears.



Open a new terminal window, log in as root, and run the
root.sh script. When the script finishes, return to the
Oracle Universal Installer page and click OK.





21. The End of Installation page appears with important
information about Web application port numbers.





22. Click Yes to exit.





23. You have now completed the installation of Oracle
software and database creation.

Is This Answer Correct ?    1 Yes 1 No

Briefly, how do you install Oracle software on UNIX...

Answer / chinnilax

install Oracle on a text-mode Linux box


The environment:
1) Computer 1: my Fedora 7 linux. Installed in text-mode
only. No X-server, no-gnome and no-kde.
Computer 1 IP: 192.168.1.9
2) Computer 2: some computer with X-server capability. In
my case I used CYGWIN on a WinXP machine.
Computer 2 IP: 192.168.1.79

HowTO:
a) Setup Fedora 7 as usual:

============================================================
==============================
under /home/oracle... unpack oracle 10.2.0.1
unzip 10201_database_linux32.zip
and it will create a folder called "database"
and to install oracle we run: (after all the below setup be
finished)
cd database
./runInstaller &

------------------------------------------------------------
--

/etc/sysctl.conf file:

kernel.shmall = 2097152
kernel.shmmax = 2147483648
kernel.shmmni = 4096
# semaphores: semmsl, semmns, semopm, semmni
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.rmem_max=262144
net.core.wmem_default=262144
net.core.wmem_max=262144

------------------------------------------------------------
--

/sbin/sysctl -p

------------------------------------------------------------
--

/etc/security/limits.conf

* soft nproc 2047
* hard nproc 16384
* soft nofile 1024
* hard nofile 65536

------------------------------------------------------------
--

/etc/pam.d/login

session required /lib/security/pam_limits.so

------------------------------------------------------------
--

/etc/selinux/config

SELINUX=disabled

------------------------------------------------------------
--

# From Fedora 7 DVD
cd /media/dvd/Fedora
rpm -Uvh setarch-*
rpm -Uvh --force tcl-*
rpm -Uvh compat-db-*
rpm -Uvh --force libXau-devel-*
rpm -ivh gcc (install all the dependences... starting from
kernel-header)

yum install libXp libaio

------------------------------------------------------------
--

groupadd oinstall
groupadd dba
groupadd oper

useradd -g oinstall -G dba oracle
passwd oracle

mkdir -p /u01/app/oracle/product/10.2.0/db_1
chown -R oracle.oinstall /u01

------------------------------------------------------------
--

/etc/redhat-release

redhat-4

------------------------------------------------------------
--

.bash_profile (oracle user)

# Oracle Settings
TMP=/tmp; export TMP
TMPDIR=$TMP; export TMPDIR

ORACLE_BASE=/u01/app/oracle; export ORACLE_BASE
ORACLE_HOME=$ORACLE_BASE/product/10.2.0/db_1; export
ORACLE_HOME
ORACLE_SID=TSH1; export ORACLE_SID
ORACLE_TERM=xterm; export ORACLE_TERM
PATH=/usr/sbin:$PATH; export PATH
PATH=$ORACLE_HOME/bin:$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/rd
bms/jlib; export CLASSPATH

if [ $USER = "oracle" ]; then
if [ $SHELL = "/bin/ksh" ]; then
ulimit -p 16384
ulimit -n 65536
else
ulimit -u 16384 -n 65536
fi
fi

============================================================
==============================

b) On CYGWIN (X-Server box)
In my case... in WinXP... I ran:

Start -> Run -> "C:\cygwin\usr\X11R6\bin\startxwin.bat"

It will open a terminal screen:
==> you must authorize linux box (192.168.1.9) to connect
onto this X-server:
==> run: xhost +192.168.1.9

mson77@192.168.1.79 ~
$ ssh oracle@192.168.1.9
The authenticity of host '192.168.1.9 (192.168.1.9)' can't
be established.
RSA key fingerprint is
7a:43:73:7d:3c:a2:05:9a:4a:7f:6f:c1:23:08:f1:55.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added '192.168.1.9' (RSA) to the list
of known hosts.
oracle@192.168.1.9's password:
[oracle@f7vmware ~]$ ll
total 4
drwxr-xr-x 6 root root 4096 2005-07-02 14:09 database
[oracle@f7vmware ~]$ DISPLAY=192.168.1.79:0.0; export
DISPLAY
[oracle@f7vmware ~]$ cd database/
[oracle@f7vmware database]$ ./runInstaller &
[1] 1594
[oracle@f7vmware database]$ Starting Oracle Universal
Installer...

Is This Answer Correct ?    1 Yes 3 No

Post New Answer

More Unix Commands Interview Questions

When the shell is reading the command line what is the difference between text enclosed between double quotes ( ” ) and text enclosed between signal quotes ( ’ )?

3 Answers  


How to check whether some services are running in another server or not? Suppose i am currently in a server named A.I want to check whether some services are running in server B without logging into the server B.

3 Answers   Amazon, MBA, Syntel, TCS, Unisys,


how to sort the content of the file based on numeric values

0 Answers   Epsilon,


How to find $ai_serual resolved path by using unix

0 Answers  


how to make IGNITE-BACKUP in HP-UX?

4 Answers   HP,






What is the command to compare two files in unix?

0 Answers  


what is the difference between "cron" command and "at" command?

5 Answers  


How to display a file name which has zero bytes in size.

11 Answers   Polaris,


Which command is used to delete all files in the current directory and all its sub-directories?

0 Answers  


What does 'mkdir' command do in UNIX?

0 Answers   Syntel, Visa,


what are the different operating systems available?

3 Answers  


What is unix command line?

0 Answers  


Categories