<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Oracle installation in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-installation/m-p/2545361#M866367</link>
    <description>3 html guide&lt;BR /&gt;install to the same dir as the above folder.&lt;BR /&gt;&lt;BR /&gt;Later,&lt;BR /&gt;Bill</description>
    <pubDate>Wed, 27 Jun 2001 10:04:16 GMT</pubDate>
    <dc:creator>Bill McNAMARA_1</dc:creator>
    <dc:date>2001-06-27T10:04:16Z</dc:date>
    <item>
      <title>Oracle installation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-installation/m-p/2545354#M866360</link>
      <description>I am an Ingres database person, and very shortly I will become an Oracle person instead.  I have my machine, I have my installation (?) disks.  For the life of me I can't find intallation instructions for HP/UX - I can find lots and lots for Windows NT/2000 but nothing else.&lt;BR /&gt;&lt;BR /&gt;I've searched &lt;A href="http://www.oracle.com" target="_blank"&gt;www.oracle.com&lt;/A&gt; and I've looked over my many CD's Oracle sent.  I know the instructions are so close that they could bite me, but please someone tell me where they are.&lt;BR /&gt;&lt;BR /&gt;BTW... is it Friday yet?</description>
      <pubDate>Tue, 26 Jun 2001 18:01:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-installation/m-p/2545354#M866360</guid>
      <dc:creator>Tracey</dc:creator>
      <dc:date>2001-06-26T18:01:16Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle installation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-installation/m-p/2545355#M866361</link>
      <description>Hi Tracey,&lt;BR /&gt;&lt;BR /&gt;No it's not Friday.&lt;BR /&gt;&lt;BR /&gt;Go to &lt;A href="http://docs.oracle.com" target="_blank"&gt;http://docs.oracle.com&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Under databases you will find the installation manuals for HP-UX.&lt;BR /&gt;&lt;BR /&gt;Clay</description>
      <pubDate>Tue, 26 Jun 2001 19:14:24 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-installation/m-p/2545355#M866361</guid>
      <dc:creator>A. Clay Stephenson</dc:creator>
      <dc:date>2001-06-26T19:14:24Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle installation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-installation/m-p/2545356#M866362</link>
      <description>Hello Tracey,&lt;BR /&gt;&lt;BR /&gt;it really is not friday, yet ;-)&lt;BR /&gt;To install Oracle8.1[67] on HP-UX 11.00 you need:&lt;BR /&gt;1) setup PFS (portable filesystem) to moutn the CD&lt;BR /&gt;2) create user "oracle"/group "dba" and setup his/her&lt;BR /&gt;    ".profile"&lt;BR /&gt;3) mount a big enough filesystem for the Oracle codes&lt;BR /&gt;    and give proper permissions to mount-point and&lt;BR /&gt;    mounted filesystem&lt;BR /&gt;4) start the "runInstaller" as user "oracle" from the &lt;BR /&gt;    mounted CD using a working $DISPLAY&lt;BR /&gt;5) follow instructions of the JAVA GUI&lt;BR /&gt;6) unmount the CD (NOT with "umount"!)&lt;BR /&gt;7) relax&lt;BR /&gt;&lt;BR /&gt;in more detail:&lt;BR /&gt;1) #use "ioscan -fnkC disk" to know the name of your&lt;BR /&gt;    #CD-drives block-device - say it is "/dev/dsk/c0t0d0"&lt;BR /&gt;    #and you are going tomount it onto "/cdrom":&lt;BR /&gt;    #create the "/etc/pfs_fstab" file and the directory:&lt;BR /&gt;&lt;BR /&gt;    mkdir /cdrom&lt;BR /&gt;    echo "/dev/dsk/c0t0d0 /cdrom pfs-rrip xlat=unix 0 0" &amp;gt; /etc/pfs_fstab&lt;BR /&gt;&lt;BR /&gt;    #check that the NFS portmapper is running:&lt;BR /&gt;    &lt;BR /&gt;    ps -ef| grep "rpcbind"     # rpcbind is needed!&lt;BR /&gt;&lt;BR /&gt;    #start the PFS daemons into background:&lt;BR /&gt;&lt;BR /&gt;    pfs_mountd &amp;amp;&lt;BR /&gt;    pfsd &amp;amp;&lt;BR /&gt;&lt;BR /&gt;2) #create the group for the oracle administrators:&lt;BR /&gt;&lt;BR /&gt;    groupadd dba&lt;BR /&gt;&lt;BR /&gt;    #create the user as member of the group:&lt;BR /&gt;&lt;BR /&gt;    useradd -g dba -m oracle&lt;BR /&gt;&lt;BR /&gt;    #create his/her ".profile" containing the env&lt;BR /&gt;    #variables $ORACLE_HOME and $ORACLE_SID:&lt;BR /&gt; &lt;BR /&gt;    echo "#!/usr/bin/sh&lt;BR /&gt;    export ORACLE_HOME=/u01/product/8.1.7&lt;BR /&gt;    export ORACLE_SID=DEMO&lt;BR /&gt;    export PATH=$PATH:$ORACLE_HOME/bin&lt;BR /&gt;    " &amp;gt; /home/oracle/.profile&lt;BR /&gt;&lt;BR /&gt;    #give proper permissions to ".profile":&lt;BR /&gt;&lt;BR /&gt;    chown -R oracle:dba /home/oracle&lt;BR /&gt;&lt;BR /&gt;3) #you'll need about 2GB of space for 8.1.7,&lt;BR /&gt;    #and still about 1.5GB for 8.1.6!&lt;BR /&gt;    #hence create a filesystem big enough:&lt;BR /&gt;&lt;BR /&gt;    lvcreate -L 2048 -n oracle vgXX&lt;BR /&gt;    mkfs /dev/vgXX/roracle&lt;BR /&gt;&lt;BR /&gt;    #create mount-point with proper permissions:&lt;BR /&gt;&lt;BR /&gt;    mkdir /u01&lt;BR /&gt;    chown oracle:dba /u01&lt;BR /&gt;    chmod 775 /u01&lt;BR /&gt;&lt;BR /&gt;    #mount that filesystem, create sub-dirs, set&lt;BR /&gt;    #proper permissions:&lt;BR /&gt;&lt;BR /&gt;    mount /dev/vgXX/oracle /u01&lt;BR /&gt;    mkdir -p /u01/product/8.1.7  # path as in step 2)&lt;BR /&gt;    chown -R oracle:dba /u01&lt;BR /&gt;    chmod -R 755 /u01&lt;BR /&gt;&lt;BR /&gt;4) #switch user-id to "oracle" and set and test $DISPLAY:&lt;BR /&gt;&lt;BR /&gt;    su - oracle&lt;BR /&gt;    export DISPLAY=yourdisplay:0.0&lt;BR /&gt;    xlock -geom 500x500&lt;BR /&gt;&lt;BR /&gt;    #do you see a big xclock on screen?&lt;BR /&gt;    #YES =&amp;gt; close it, OK&lt;BR /&gt;    #NO =&amp;gt; you DO need X-Windows! Get it and come &lt;BR /&gt;    #            back to step 4)&lt;BR /&gt;&lt;BR /&gt;    # start the installer without doing a "cd"!!!&lt;BR /&gt;&lt;BR /&gt;    /cdrom/runInstaller &amp;amp;&lt;BR /&gt;&lt;BR /&gt;5) #Follow instructions as shown on screen&lt;BR /&gt;    #when you are told to exchange the CD,&lt;BR /&gt;    #use the "browse" button to go to the&lt;BR /&gt;    #root directory "/" and then you will need&lt;BR /&gt;    #another terminal window where you are &lt;BR /&gt;    #logged in as "root". Now unmount the CD:&lt;BR /&gt;&lt;BR /&gt;    pfs_umount /cdrom&lt;BR /&gt;&lt;BR /&gt;    #swap the CDs, and mount the new one:&lt;BR /&gt;&lt;BR /&gt;    pfs_mount /dev/dsk/c0t0d0 /cdrom&lt;BR /&gt;&lt;BR /&gt;    #go back to you Java GUI and use the browser&lt;BR /&gt;    #dialog to select "/cdrom" again.&lt;BR /&gt;&lt;BR /&gt;6) #When the installation is done, click on "exit"&lt;BR /&gt;    #in the installer window, and log off as user&lt;BR /&gt;    #"oracle":&lt;BR /&gt;&lt;BR /&gt;    exit&lt;BR /&gt;&lt;BR /&gt;    #now unmount the CD:&lt;BR /&gt;&lt;BR /&gt;    pfs_umount /cdrom&lt;BR /&gt;&lt;BR /&gt;    #you could kill the two daemons "pfsd" and&lt;BR /&gt;    #"pfs_mountd" now, in that order, without&lt;BR /&gt;    #options for kill!!! &lt;BR /&gt;&lt;BR /&gt;7) Voila - Oracle 8i is installed!&lt;BR /&gt;    In order to actually USE it, you will need to&lt;BR /&gt;    build your kernel with a lot of different parameters,&lt;BR /&gt;    but you did not ask for that instruction ;-)&lt;BR /&gt;&lt;BR /&gt;    Hence, relax!&lt;BR /&gt;&lt;BR /&gt;HTH,&lt;BR /&gt;    Wodisch</description>
      <pubDate>Tue, 26 Jun 2001 20:33:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-installation/m-p/2545356#M866362</guid>
      <dc:creator>Wodisch</dc:creator>
      <dc:date>2001-06-26T20:33:36Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle installation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-installation/m-p/2545357#M866363</link>
      <description>hi,&lt;BR /&gt;&lt;BR /&gt;check the link &lt;A href="http://metalink.orcale.com/oracleinstall" target="_blank"&gt;http://metalink.orcale.com/oracleinstall&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;here u get orcale installation procedure for all OS's</description>
      <pubDate>Wed, 27 Jun 2001 06:30:55 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-installation/m-p/2545357#M866363</guid>
      <dc:creator>Ravi_8</dc:creator>
      <dc:date>2001-06-27T06:30:55Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle installation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-installation/m-p/2545358#M866364</link>
      <description>see the following html docs and images.&lt;BR /&gt;&lt;BR /&gt;Later,&lt;BR /&gt;Bill&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Wed, 27 Jun 2001 10:00:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-installation/m-p/2545358#M866364</guid>
      <dc:creator>Bill McNAMARA_1</dc:creator>
      <dc:date>2001-06-27T10:00:25Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle installation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-installation/m-p/2545359#M866365</link>
      <description>1 images:&lt;BR /&gt;extract to directory&lt;BR /&gt;oracleinstall_fichiers</description>
      <pubDate>Wed, 27 Jun 2001 10:02:09 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-installation/m-p/2545359#M866365</guid>
      <dc:creator>Bill McNAMARA_1</dc:creator>
      <dc:date>2001-06-27T10:02:09Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle installation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-installation/m-p/2545360#M866366</link>
      <description>2 images&lt;BR /&gt;extract to the same dir as above</description>
      <pubDate>Wed, 27 Jun 2001 10:03:27 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-installation/m-p/2545360#M866366</guid>
      <dc:creator>Bill McNAMARA_1</dc:creator>
      <dc:date>2001-06-27T10:03:27Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle installation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-installation/m-p/2545361#M866367</link>
      <description>3 html guide&lt;BR /&gt;install to the same dir as the above folder.&lt;BR /&gt;&lt;BR /&gt;Later,&lt;BR /&gt;Bill</description>
      <pubDate>Wed, 27 Jun 2001 10:04:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-installation/m-p/2545361#M866367</guid>
      <dc:creator>Bill McNAMARA_1</dc:creator>
      <dc:date>2001-06-27T10:04:16Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle installation</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/oracle-installation/m-p/2545362#M866368</link>
      <description>Thank you! Thank you! Thank you!&lt;BR /&gt;&lt;BR /&gt;Thanks to you guys my day is starting off much better than yesterday.&lt;BR /&gt;&lt;BR /&gt;Wodisch,&lt;BR /&gt;&lt;BR /&gt;I found the other threads with the oracle kernel parameters, but if I have more questions, I won't hesitate to ask.&lt;BR /&gt;&lt;BR /&gt;Tracey</description>
      <pubDate>Wed, 27 Jun 2001 10:36:25 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/oracle-installation/m-p/2545362#M866368</guid>
      <dc:creator>Tracey</dc:creator>
      <dc:date>2001-06-27T10:36:25Z</dc:date>
    </item>
  </channel>
</rss>

