Installation of Oracle 10g Release 2 (10.2.0.1.0) on RedHat EL 3, 4, 5 and (Oracle) Enteprise Linux 4, 5.


This paper (HOWTO) describes step-by-step installation of Oracle 10g R2 database software on RedHat Enterprise Server 3, 4, 5 and (Oracle) Enteprise Linux 4, 5. This article is useful for Centos Linux release 3, 4 and 5 and for White Box Enterprise Linux release 3 and 4. Note that Centos and White Box distributions are not certified by Oracle Corporation.
This article does not cover database creation process, and ASM Instance creation process.

This paper covers following steps:

Pre-Instalation Tasks

1. Create oracle User Account

Login as root and create te user oracle which belongs to dba group.
su -
# groupadd dba
# useradd -g dba oracle

2. Setting System parameters
Edit the /etc/sysctl.conf and add following lines:
kernel.shmall = 2097152
kernel.shmmax = 2147483648
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.rmem_max = 262144
net.core.wmem_default = 262144
net.core.wmem_max = 262144
Note: You need reboot system or execute "sysctl -p" command to apply above settings.

For RedHat (OEL, Centos, WBL) 3 and 4 versions: Edit the /etc/pam.d/login file and add following line:
session required /lib/security/pam_limits.so

For RedHat (OEL, Centos) 5 version: Edit the /etc/pam.d/login file and add following line:
session required pam_limits.so

Edit the /etc/security/limits.conf file and add following lines:
oracle    soft  nproc  2047
oracle    hard  nproc  16384
oracle    soft  nofile  1024
oracle    hard  nofile  65536

3. Creating oracle directories
# mkdir /opt/oracle
# mkdir /opt/oracle/102
# chown -R oracle:dba /opt/oracle

4. Setting Oracle Enviroment
Edit the /home/oracle/.bash_profile file and add following lines:
Use this settings for 32bit (x86) architecture.
ORACLE_BASE=/opt/oracle
ORACLE_HOME=$ORACLE_BASE/102
ORACLE_SID=ORCL
LD_LIBRARY_PATH=$ORACLE_HOME/lib
PATH=$PATH:$ORACLE_HOME/bin

export ORACLE_BASE ORACLE_HOME ORACLE_SID LD_LIBRARY_PATH PATH

Use this settings for 64bit (x86_64) architecture.
ORACLE_BASE=/opt/oracle
ORACLE_HOME=$ORACLE_BASE/102
ORACLE_SID=ORCL
LD_LIBRARY_PATH=$ORACLE_HOME/lib:$ORACLE_HOME/lib32
PATH=$PATH:$ORACLE_HOME/bin

export ORACLE_BASE ORACLE_HOME ORACLE_SID LD_LIBRARY_PATH PATH

Save the .bash_profile and execute following commands for load new enviroment:
cd /home/oracle
. .bash_profile

Download & Install

1. Download and install required .rpm packages

Some additional packages are required for succesful instalation of Oracle software. To check wheter required packages are installed on your operating system use following command: Note: Since RHEL 5 (OEL 5, Centos 5) pdksh package was renamed to ksh

For 32 bit (x86) Linux version:
rpm -q binutils gcc glibc glibc-headers glibc-kernheaders glibc-devel compat-libstdc++ cpp compat-gcc make compat-db compat-gcc-c++ compat-libstdc++ compat-libstdc++-devel setarch sysstat pdksh libaio libaio-devel --qf '%{name}.%{arch}\n'|sort

For 64 bit (x86_64) Linux version:
rpm -q binutils compat-db compat-libstdc++-33 glibc glibc-devel glibc-headers gcc gcc-c++ libstdc++ cpp make libaio ksh elfutils-libelf sysstat libaio libaio-devel setarch --qf '%{name}.%{arch}\n'|sort


Required packages for 32bit (x86) architecture:
binutils.i386
compat-gcc-7.3-2.96.128.i386
compat-gcc-c++-7.3-2.96.128.i386
compat-libstdc++-7.3-2.96.128.i386
compat-libstdc++-devel-7.3-2.96.128.i386
cpp.i386
gcc.i386
gcc-c++.i386
glibc.i386
glibc-common.i386
glibc-devel.i386
glibc-headers.i386
glibc-kernheaders.i386
libstdc++.i386
libstdc++-devel.i386
libaio
libai-devel.i386
pdksh.i386
setarch.i386
sysstat.i386


Required packages for 64bit (x86_64) architecture:
binutils.x86_64
compat-db.x86_64
compat-libstdc++-33.i386
compat-libstdc++-33.x86_64
cpp.x86_64
elfutils-libelf.i386
elfutils-libelf.x86_64
gcc-c++.x86_64
gcc.x86_64
glibc-devel.i386
glibc-devel.x86_64
glibc-headers.x86_64
glibc.i686
glibc.x86_64
ksh.x86_64
libaio-devel.i386
libaio-devel.x86_64
libaio.i386
libaio.i386
libaio.x86_64
libaio.x86_64
libstdc++.i386
libstdc++.x86_64
make.x86_64
setarch.x86_64
sysstat.x86_64


If some package is not installed then install it from installation media or download it from following locations:
RedHat Enterprise Linux 3 - source packages only
RedHat Enterprise Linux 4 - source packages only
White Box Linux 3
White Box Linux 4
Centos Linux 3
Centos Linux 4
Centos Linux 5


This is example how to build RPM package from source package (libaio-0.3.96-3.src.rpm). Note gcc, make and rpm-build (and dependent) packages must be already installed on your system.
# rpm -ivh libaio-0.3.96-3.src.rpm
# cd /usr/src/redhat/SPECS/
# rpmbuild -bb --target i386 libaio.spec
# cd ../RPMS/i386/


Install the required packages using the rpm command:
# rpm -ivh <package_name>.rpm


2. Download the Oracle 10g release 2 (10.2.0.1.0) software from Oracle website.
Extract the files using following command: For 32bit installation archive
unzip 10201_database_linux32.zip

For 64bit installation archive
gunzip 10201_database_linux_x86_64.cpio.gz
cpio -idmv <10201_database_linux_x86_64.cpio

For RHEL 5, Centos 5: Modify database/install/oraparam.ini file and add "redhat-5" to "Certified Versions" section.
Example:
[Certified Versions]
Linux=redhat-3,SuSE-9,redhat-4,UnitedLinux-1.0,asianux-1,asianux-2,redhat-5


3. Start the Oracle software installation process.

Now the system is prepared for Oracle software installation. To start the installation process execute the following commands:
cd db/Disk1/
./runInstaller

Note: You may get "Warning" status during some pre-requisites checks. This will happen on RH EL 3 where Update 3 or 4 were not installed. You can continue in installation when you simply change the status as "User verified".

Post-Instalation Tasks

1. (Optional) Auto Startup and Shutdown of Database and Listener

Login as root and modify /etc/oratab file and change last character to Y for apropriate database.
ORCL:/opt/oracle/102:Y

As root user create new file "oracle" (init script for startup and shutdown the database) in /etc/init.d/ directory with following content:
#!/bin/bash
#
# oracle Init file for starting and stopping
# Oracle Database. Script is valid for 10g and 11g versions.
#
# chkconfig: 35 80 30
# description: Oracle Database startup script

# Source function library.

. /etc/rc.d/init.d/functions

ORACLE_OWNER="oracle"
ORACLE_HOME="/opt/oracle/102"

case "$1" in
start)
echo -n $"Starting Oracle DB:"
su - $ORACLE_OWNER -c "$ORACLE_HOME/bin/dbstart $ORACLE_HOME"
echo "OK"
;;
stop)
echo -n $"Stopping Oracle DB:"
su - $ORACLE_OWNER -c "$ORACLE_HOME/bin/dbshut $ORACLE_HOME"
echo "OK"
;;
*)
echo $"Usage: $0 {start|stop}"
esac

Execute (as root) following commands (First script change the permissions, second script is configuring execution for specific runlevels):
chmod 750 /etc/init.d/oracle
chkconfig --add oracle --level 0356

2. (Optional) Auto Startup and Shutdown of Enterprise Manager Database Control

As root user create new file "oraemctl" (init script for startup and shutdown EM DB Console) in /etc/init.d/ directory with following content:

Hope Harper Daddys Monkey - Business Part 1 And 2

In "Daddy's Monkey Business Part 2," Hope's journey continues as she confronts the harsh realities of her family's actions. This confrontation leads to significant character development for Hope, as she grapples with loyalty to her family versus her commitment to doing what is right.

The storyline explores themes of family, loyalty, power, and the consequences of one's actions. Through Hope's experiences, the show sheds light on the challenges faced by those connected to powerful families, where the lines between personal and professional life are often blurred.

Hope Harper, portrayed by actress Signy Coleman (later by actress Ronn Moss' on-screen daughter, Darva Conger, then finally by actress Kim Matula), is a significant figure in the Forrester family. As the daughter of Eric Forrester, the patriarch of the Forrester family, and her mother, Donna Forrester, Hope's storyline is deeply intertwined with the family's business and personal affairs.

This feature provides a light-hearted, engaging narrative that explores themes of family, entrepreneurship, and personal growth. The two-part storyline allows for a development arc that both entertains and educates its young audience.

Hope Harper's Daddy's Monkey Business " refers to a two-part adult entertainment series starring adult film actress Hope Harper. The title is a play on the idiom "monkey business," which typically refers to mischievous, deceitful, or reckless behavior.

The series is categorized within the adult film industry and is not related to mainstream media titles like the 1952 Cary Grant comedy Monkey Business or the 2005 Black Eyed Peas album of the same name. Overview of Part 1 and Part 2

Because this title belongs to the adult entertainment genre, detailed mainstream articles or critical reviews are generally found on industry-specific platforms rather than general news or educational sites.

Part 1: Typically introduces the premise involving Harper's character in a scenario suggested by the title's familial themes.

Part 2: Continues the narrative or thematic style established in the first installment, often featuring different scenes or performers alongside Harper.

For professional or safe-for-work information on the actress herself, you can find her filmography on industry databases like IMDb or IAFD.

The Mysterious Case of Hope Harper and Daddy's Monkey Business: Uncovering the Truth Behind Part 1 and 2

The world of soap operas is known for its dramatic plot twists, complex characters, and intriguing storylines. One such soap opera that has captured the attention of audiences for decades is "The Young and the Restless." Among its many memorable characters, Hope Harper and her infamous "Daddy's Monkey Business" storyline stand out as a particularly fascinating and enduring tale. In this article, we'll delve into the details of Hope Harper's "Daddy's Monkey Business Part 1 and 2," exploring the events that led up to this pivotal plot point and the aftermath that followed.

The Backstory: Hope Harper and Her Family

To fully understand the context of "Daddy's Monkey Business," we need to go back to the early days of Hope Harper's character. Introduced to the show in the 1970s, Hope was the daughter of Nick and Sharon Newman, two of the show's core families. As she grew up, Hope became a central figure in the Newman family, often finding herself entangled in their various dramas and schemes.

The Genesis of "Daddy's Monkey Business"

The "Daddy's Monkey Business" storyline emerged in the late 1980s, when Hope Harper was a young adult. At the time, her father, Nick Newman, was involved in some shady business dealings, which would eventually come to light as "Monkey Business." This plot thread was expertly woven into the fabric of the show, keeping viewers on the edge of their seats as they waited to see how the story would unfold.

Part 1: The Revelation

In "Daddy's Monkey Business Part 1," Hope Harper discovered that her father, Nick, had been involved in some illicit activities. As the story progressed, it became clear that Nick had been embezzling funds from his business partners, using the money to finance his own ventures. The revelation shook Hope to her core, forcing her to confront the harsh reality that her father was not the man she thought he was.

The aftermath of this discovery had significant repercussions for the Newman family. Hope struggled to come to terms with her father's actions, feeling torn between her love for him and her disgust at his behavior. Meanwhile, Nick faced backlash from his business associates and the law, who were determined to bring him to justice. hope harper daddys monkey business part 1 and 2

Part 2: The Consequences

In "Daddy's Monkey Business Part 2," the consequences of Nick's actions began to unfold. As the authorities closed in on him, Nick was forced to confront the full extent of his misdeeds. The once-respected businessman found himself facing financial ruin, imprisonment, and a damaged reputation.

For Hope, the fallout from her father's actions was equally devastating. She struggled to reconcile her feelings towards Nick, grappling with the pain and betrayal she felt as a result of his deception. As the family dynamic began to shift, Hope found herself at odds with her father, leading to a series of intense and emotional confrontations.

The Impact on The Young and the Restless

The "Daddy's Monkey Business" storyline had a lasting impact on The Young and the Restless. It marked a significant turning point in the show's history, as it explored themes of family, loyalty, and deception. The plot twist also led to a series of character developments, as Hope Harper and other Newman family members were forced to navigate the complex web of relationships and alliances.

The Legacy of Hope Harper and "Daddy's Monkey Business"

Today, the "Daddy's Monkey Business" storyline remains one of the most iconic and memorable moments in The Young and the Restless history. It serves as a testament to the show's ability to craft compelling narratives that resonate with audiences. For Hope Harper, the experience was a defining moment in her character development, as she transitioned from a naive young woman to a strong and independent individual.

As a soap opera, The Young and the Restless continues to captivate audiences with its intricate storylines and complex characters. The "Daddy's Monkey Business" storyline is just one example of the show's enduring appeal, demonstrating its ability to tackle tough themes and create a lasting impact on its viewers.

Conclusion

In conclusion, the "Hope Harper Daddy's Monkey Business Part 1 and 2" storyline is a pivotal moment in The Young and the Restless history. This dramatic plot twist not only explored the complexities of family dynamics but also showcased the show's ability to craft compelling narratives that keep audiences engaged. As a character, Hope Harper's journey has been marked by growth and transformation, making her one of the most beloved and relatable figures in the world of soap operas.

The legacy of "Daddy's Monkey Business" continues to inspire new storylines and character developments, ensuring that The Young and the Restless remains a staple of daytime television. For fans of the show, the memories of Hope Harper's journey and the shocking revelations of "Monkey Business" will forever be etched in their minds, a testament to the enduring power of soap opera storytelling.

The Highly Anticipated "Hope Harper's Daddy's Monkey Business Part 1 and 2": A Game-Changing Series

The world of adult entertainment has been abuzz with excitement over the upcoming release of "Hope Harper's Daddy's Monkey Business Part 1 and 2". This highly anticipated series has been generating significant buzz among fans and critics alike, and for good reason. Starring the talented and charismatic Hope Harper, this two-part series promises to deliver a unique blend of excitement, drama, and intrigue that will leave viewers on the edge of their seats.

The Story Behind the Series

"Hope Harper's Daddy's Monkey Business Part 1 and 2" is a carefully crafted narrative that explores the complex and often tumultuous relationship between Hope Harper's character and her father. The series takes viewers on a journey of self-discovery, as Hope's character navigates the challenges of her family dynamics and confronts the consequences of her father's actions.

According to sources close to the production, the series was inspired by real-life events and draws heavily from the experiences of the cast and crew. "We wanted to create a series that would resonate with audiences on a deeper level," explains a production spokesperson. "By exploring themes of family, loyalty, and redemption, we aimed to create a story that would spark meaningful conversations and connections."

Meet Hope Harper: The Star of the Series

Hope Harper is a rising star in the adult entertainment industry, known for her captivating on-screen presence and undeniable charm. With a background in modeling and acting, Hope brings a level of sophistication and nuance to her performances that sets her apart from her peers. In "Daddy's Monkey Business Part 2," Hope's journey

In an exclusive interview, Hope shared her thoughts on the series and her experience working on "Hope Harper's Daddy's Monkey Business Part 1 and 2". "I'm incredibly proud of what we've accomplished with this series," she explains. "The story is complex and multifaceted, and I feel honored to be a part of it."

The Making of a Masterpiece: Part 1

The first installment of the series sets the stage for the dramatic events that unfold in Part 2. "Hope Harper's Daddy's Monkey Business Part 1" introduces viewers to Hope's character, a strong-willed and determined individual who is struggling to come to terms with her father's antics.

As the story unfolds, Hope's character finds herself drawn into a world of chaos and uncertainty, where the lines between right and wrong are constantly blurred. With its expertly crafted dialogue and intense performances, Part 1 is a masterclass in suspense and intrigue.

The Grand Finale: Part 2

The second installment of the series picks up where Part 1 left off, plunging viewers into a world of drama and intensity. "Hope Harper's Daddy's Monkey Business Part 2" is a thrilling conclusion to the series, as Hope's character faces her greatest challenges yet.

With its shocking twists and turns, Part 2 is a wild ride that will keep viewers on the edge of their seats. As the series reaches its climax, Hope's character must confront the consequences of her father's actions and make a choice that will change her life forever.

What to Expect from the Series

Fans of Hope Harper and the adult entertainment industry can expect a lot from "Hope Harper's Daddy's Monkey Business Part 1 and 2". Here are just a few highlights:

Conclusion

"Hope Harper's Daddy's Monkey Business Part 1 and 2" is a game-changing series that promises to deliver a unique and unforgettable viewing experience. With its talented cast, expertly crafted narrative, and intense performances, this series is a must-watch for fans of Hope Harper and the adult entertainment industry.

Whether you're a seasoned fan or just discovering Hope Harper's talents, "Hope Harper's Daddy's Monkey Business Part 1 and 2" is an event you won't want to miss. So, sit back, relax, and get ready to experience the drama, excitement, and intrigue that has been generating so much buzz in the industry.

Where to Watch

"Hope Harper's Daddy's Monkey Business Part 1 and 2" is now available for streaming on various adult entertainment platforms. Fans can also purchase individual episodes or the entire series on DVD or digital download.

Get Ready for the Ride of a Lifetime

With its complex narrative, intense performances, and unforgettable twists, "Hope Harper's Daddy's Monkey Business Part 1 and 2" is an event that will leave viewers talking for weeks to come. Don't miss out on the opportunity to experience this highly anticipated series for yourself. Watch "Hope Harper's Daddy's Monkey Business Part 1 and 2" today and discover why it's generating so much buzz in the industry!

Daddy's Monkey Business " (Parts 1 and 2) is a specialized adult video series featuring performer Hope Harper

. Because this is adult content, standard entertainment guides or detailed plot analyses are rarely found on mainstream review sites like Series Overview Conclusion "Hope Harper's Daddy's Monkey Business Part 1

The series follows a specific fantasy-based narrative common in adult media. Part 1 establishes the initial premise, while Part 2 continues the storyline with the same characters. Where to Find Information Official Studios

: The most reliable way to find descriptions and full cast lists is through the official production studio's website or their authorized distributors. Performer Profiles

: You can check Hope Harper's official social media or professional profiles for her filmography, which will list these titles. Adult Databases : Websites like

(Internet Adult Film Database) provide technical credits, including release dates and additional cast members for both parts.

Note: Accessing these sites typically requires you to be at least 18 years old.

It sounds like you're referring to a specific adult or fetish-themed story or video series titled Hope Harper: Daddy's Monkey Business (Parts 1 & 2). This content is not part of mainstream or publicly available educational material, and I don't have access to or detailed knowledge of niche adult productions.

If you're looking for:

If you meant something else entirely (e.g., a children's book, a different "Hope Harper" series, or a non-adult indie film), please clarify with more details (author, genre, or a brief description of the non-explicit plot). I'm happy to help with appropriate, safe-for-work topics.

Draft Piece: "Hope Harper's Daddy's Monkey Business Part 1 and 2"

The first part of "Daddy's Monkey Business" broke out in [insert time frame], sending shockwaves through the community. It started with cryptic messages and hints dropped by Hope Harper on her social media accounts, suggesting a deep-seated family issue that she felt compelled to expose. The initial revelations included accusations of manipulation, financial deceit, and a possible cover-up involving her father and his associates.

As more information surfaced, it became clear that Hope Harper was alleging a significant breach of trust and potentially illegal actions by her father. The term "monkey business" was used metaphorically to describe the shady dealings and unethical behavior she claimed to have uncovered.

The second part of the saga took a more dramatic turn, with Hope Harper presenting what she claimed was concrete evidence of her father's wrongdoings. This included financial records, correspondence, and testimony from individuals close to the family. The allegations escalated to include accusations of fraud, embezzlement, and a complex scheme to deceive investors and authorities.

The release of "Part 2" sparked a heated debate, with some defending Hope Harper's actions as a necessary step to expose truth and others criticizing her for what they saw as a public airing of dirty laundry. The media frenzy around "Daddy's Monkey Business Part 1 and 2" reached a boiling point, with many outlets speculating about the potential legal repercussions for those involved.

Implications and Public Reaction

The case of Hope Harper and "Daddy's Monkey Business Part 1 and 2" has significant implications, not just for those directly involved but also for the broader public. It raises questions about family dynamics, power, and the lengths to which individuals will go to protect their interests.

The public reaction has been mixed, with some expressing sympathy for Hope Harper and her quest for truth and justice, while others have raised concerns about the potential harm such public accusations can cause, especially to family members who may be innocent.

Conclusion

The saga of Hope Harper and "Daddy's Monkey Business Part 1 and 2" is a complex and multifaceted case that continues to unfold. As more information comes to light, it's clear that this story has the potential to impact not just the lives of those directly involved but also to contribute to ongoing conversations about ethics, power, and accountability.

In the end, the truth behind Hope Harper's allegations and the full extent of "Daddy's Monkey Business" will be determined through legal channels and further investigation. What is certain, however, is that this case has already left an indelible mark on the public consciousness, serving as a reminder of the often blurred lines between private lives and public scrutiny.

"Hope Harper's Daddy's Monkey Business Part 1 and 2" appears to be episodes or parts of a story, likely from a television series or a serialized narrative. Without specific context, it's challenging to provide detailed information. However, I can offer a general overview and some insights based on common knowledge.


Execute (as root) following commands (First script change the permissions, second script is configuring execution for specific runlevels):
chmod 750 /etc/init.d/oraemctl
chkconfig --add oraemctl --level 0356

3. (Optional) You may consider to use rlwrap for comfortable work with sqlplus and rman utility.
RPM package for RedHat compatible (x86) distribution you can download here.
RPM package for RedHat compatible (x86_64) distribution you can download here.
su -
# rpm -ivh rlwrap*.rpm
# exit
echo "alias sqlplus='rlwrap sqlplus'" >> /home/oracle/.bash_profile
echo "alias adrci='rlwrap rman'" >> /home/oracle/.bash_profile
. /home/oracle/.bash_profile


Common Installation Errors

DISPLAY not set. Please set the DISPLAY and try again.
Solution: Execute "export DISPLAY=:0.0" when you perform installtion on local machine or "export DISPLAY=:0.0 when you perform installation on remote machine connected over SSH". Don't forget to execute "xhost +" command on client machine.

Exception java.lang.UnsatisfiedLinkError: /tmp/OraInstall2005-07-07_09-40-45AM/jre/1.4.2/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory occurred.. java.lang.UnsatisfiedLinkError: /tmp/OraInstall2005-07-07_09-40-45AM/jre/1.4.2/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory
Solution: RH 3, WB 3, Centos 3 - Install the XFree86-libs-4.3.0-81.EL.i386.rpm and dependent packages.
RH 4, WB 4, Centos 4 - Install the xorg-x11-deprecated-libs-6.8.2-1.EL.13.6.i386.rpm package.
RH 5, OEL 5, Centos 5 - Install the libXp-1.0.0-8.1.el5.i386.rpm package.

error while loading shared libraries: libaio.so.1: cannot open shared object file: No such file or directory
Solution: Install libaio and libaio-devel packages. If packages already installed and error still occurs try execute "ldconfig" as root.

Check complete. The overall result of this check is: Failed <<<<
Solution: Install missing package or set check system parameters (See reason of failure).


Comments, suggestions, questions, errors (also grammatical :) )? Feel free to contact me.