Installing 9iAS on SunOS plus 5.8 - Apache question

Hi!
I've sucessfully instaled and use 9iAS on Win2000. Now I want to move my Portal to Sun.
During instalation on Windows I found an information, that I should stop existing Apache server and then install 9iAS (Minimal Edition). I also should start database.
I didn't find anything like that in installation guide on ONT. Also I didn't find information if I have to change parameters in (of my database) init.ora file:
large_pool_java
java_pool
processes
open_coursor
shared_pool_size
According to installation guide all I have top do is:
set environment variables
change port of my database?
Thanks for help.

Hi!
I've sucessfully instaled and use 9iAS on Win2000. Now I want to move my Portal to Sun.
During instalation on Windows I found an information, that I should stop existing Apache server and then install 9iAS (Minimal Edition). I also should start database.
I didn't find anything like that in installation guide on ONT. Also I didn't find information if I have to change parameters in (of my database) init.ora file:
large_pool_java
java_pool
processes
open_coursor
shared_pool_size
According to installation guide all I have top do is:
set environment variables
change port of my database?
Thanks for help.

Similar Messages

  • Installing 9iAS on Sun Solaris 5.7

    Hi,
    I am trying to install 9ias on SunOS 5.7. We have a 8i database up and running
    on the boxalready. During the 9ias installation, we entered a separate
    oracle_home, for a new instance we created. After, a dialog box poped up and
    asked me to open another terminal and login as root to run root.sh in that
    terminal- what I want to know is what will this root.sh script do to my
    existing(original)oracle_home, environment variables, .profile etc.?
    Your help is much appreciated.
    null

    You can read the root.sh script in your 9iAS home (copy below). Make sure that when root is logged in the ORACLE_HOME gets set properly so the CHMODs etc act in the correct directories.
    John H.
    #!/bin/sh
    # the following commands need to run as root after installing
    # the OEM Agent. They take care of fresh installs as well as
    # in-place upgrades from earlier versions.
    RMF="/bin/rm -f"
    CHOWN="/bin/chown"
    CHMOD="/bin/chmod"
    TEST="/bin/test"
    ECHO="/bin/echo"
    ORACLE_HOME=/Apps/oracle/9iAS
    ORACLE_OWNER=oracle
    # change owner and permissions of the dbsnmp executable
    $CHOWN root $ORACLE_HOME/bin/dbsnmp
    $CHMOD 6750 $ORACLE_HOME/bin/dbsnmp
    # remove all previously created log and trace files
    $RMF $ORACLE_HOME/network/trace/dbsnmp*.trc
    $RMF $ORACLE_HOME/network/trace/oratcl*.trc
    $RMF $ORACLE_HOME/network/log/dbsnmp*.log
    $RMF $ORACLE_HOME/network/log/nmiconf.log
    $RMF $ORACLE_HOME/bin/dbsnmp0
    $RMF $ORACLE_HOME/bin/oemevent0
    $RMF $ORACLE_HOME/bin/oratclsh0
    # remove previously created pkgIndex.tc file
    $RMF $ORACLE_HOME/network/agent/library/pkgIndex.tcl
    # remove previously created snmp_ro.ora file
    $RMF $ORACLE_HOME/network/admin/snmp_ro.ora
    $RMF $TNS_ADMIN/snmp_ro.ora
    # adjust owner of snmp_rw.ora
    if $TEST -f $ORACLE_HOME/network/admin/snmp_rw.ora
    then
    $CHOWN $ORACLE_OWNER $ORACLE_HOME/network/admin/snmp_rw.ora
    $CHMOD 660 $ORACLE_HOME/network/admin/snmp_rw.ora
    fi
    if $TEST -f $TNS_ADMIN/snmp_rw.ora
    then
    $CHOWN $ORACLE_OWNER $TNS_ADMIN/snmp_rw.ora
    $CHMOD 660 $TNS_ADMIN/snmp_rw.ora
    fi
    # adjust owner of the agent queues and other associated files
    $CHOWN $ORACLE_OWNER $ORACLE_HOME/network/agent/*
    $CHMOD 770 $ORACLE_HOME/network/agent/*
    $CHMOD 750 $ORACLE_HOME/network/agent/jobs
    $CHMOD 750 $ORACLE_HOME/network/agent/events
    $CHMOD 750 $ORACLE_HOME/network/agent/config
    $CHMOD 750 $ORACLE_HOME/network/agent/library
    $CHMOD 750 $ORACLE_HOME/network/agent/tcl
    $CHMOD 750 $ORACLE_HOME/network/agent/mibs
    $CHMOD 750 $ORACLE_HOME/network/agent/jobs
    $CHMOD 777 $ORACLE_HOME/network/agent/jobout
    $ECHO "IMPORTANT NOTE: Please delete any log and trace files previously"
    $ECHO " created by the Oracle Enterprise Manager Intelligent"
    $ECHO " Agent. These files may be found in the directories"
    $ECHO " you use for storing other Net8 log and trace files."
    $ECHO " If such files exist, the OEM IA may not restart."
    null

  • Install 9iAS on same box as database?

    Is there a downside to installing 9iAS on the same box (HP 9000) as our data warehouse? Will it require a lot of resources that will slow down access to the data warehouse?
    The scenario is that we want to install 9iAS ONLY to enable us to use Discoverer Plus. It will not be used for any thing else. Management wants to install on the existing box where the database is so they don't have to buy another machine just for 9iAS. Is this a viable solution?

    We have done this on NT servers without any problems. We serve hundreds of users this way. Discoverer users spend most of their time reading screens anyway, so the CPU can do DB stuff most of the time.

  • Succes installing 9iAS R2 (release 2) on RedHat Linux 7.3

    I had success installing 9iAS release 2 on RedHat Linux 7.3. I used the instructions on http://www.puschitz.com/OracleOnLinux.shtml.
    At first, I tried this on RedHat 8.0. Funny thing is: installation of infrastructure failed even though I followed the instructions. Then I downloaded 7.3, followed EXACTLY the same instructions and voila, works like a charm.
    Puschitz' instructions are for 9i and not for 9iAS though. Some additions:
    1) One of the pre-installation steps there says to set some environment variables, one of them being the SID. It's set to 'test', but of course with standard settings the sid of the database that comes along with 9iAS has a SID of 'iasdb'.
    2) Also what I did, was to downgrade the binutils package to the version provided by Oracle here: http://otn.oracle.com/software/products/oracle9i/files/binutils_readme.html. As an alternative, Puschitz says to change some makefiles. I didn't try this.
    3) I then installed the infrastructure. When finished, I exited the installation and rebooted. After the reboot:
    4) I changed to the /bin directory and typed (as root):
    ln -s /sbin/fuser
    5) Changed back to user 'oracle' and started the infrastructure with:
    $ORACLE_HOME/bin/sqlplus
    connect / as sysdba
    startup
    exit
    $ORACLE_HOME/bin/lsnrctl start
    $ORACLE_HOME/bin/oidmon connect=iasdb start
    $ORACLE_HOME/bin/oidctl connect=iasdb server=oidldapd instance=1 start
    $ORACLE_HOME/opmn/bin/opmnctl startall
    6) Then started the installer and did the middletier installation. Rebooted.

    Following your instructions i've also succesfull installation of ias9iR2 Infrastructure on Redhat7.3. Checked the database Iasdb and Enterprise Manager Website (on http://liminwang:1810), everything works fine. Hence i try to install Portal & Wireless on the same machine on a different Oracle_home (but on the same Oracle_base) according to the installation guide. The installation stuck when i've chosen the Portal and Wireless option. I get a warning that the Enterprise Manager Website Process is still running and it must be stopped to proceed the stallation. So i stopped this process by: $oracle_home/bin/emctl stop
    Still i get the same warning. Stopping the database also doesn't help. Even when i deinstalled the Enterprise Manager Website component i get the same warning.
    Please help!

  • Installing 9iAS on Windows XP Pro

    Hi folks,
    is it possible to install 9iAS on Windows XP ?
    which version ?
    thanks,
    Alexandre

    Hi,
    iAS Rel1 cannot be installed on Windows XP however Rel2 will be installable on Windows XP.
    Thanks,
    Mathew

  • Can a 128 ssd storage still effectively work if I install windows 8.1 plus msoffice and a window-based proposal system? I plan to buy a macbook air entry level with 1.7 gh i5 processor.

    Can a 128 ssd storage still effectively work if I install windows 8.1 plus msoffice and a window-based proposal system? I plan to buy a macbook air entry level with 1.7 gh i5 processor.

    If you are going to use Mac OS X and its associated applications, and a BootCamp partition with Windows 8, and MS Office and all of the work created there, you will more than likely run out of space on a 128 GB SSD pretty quickly...especially if you put any music, photos or videos on it.  Those things take a lot of space so you will have to be very, very careful about what you want to put on a 128 GB storage space.  You would be better off going for 512 GB with what you plan on doing with it.

  • I am running Lightroom 6 in conjunction with 64 bit Photoshop CS6. I need to install Camera Raw 9 plus other relevan updates for the Adobe Design and Web Premium CS6 package. Running Adobe Application manager finds the relevant updates but won't download

    I am running Lightroom 6 in conjunction with 64 bit Photoshop CS6. I need to install Camera Raw 9 plus other relevan updates for the Adobe Design and Web Premium CS6 package. Running Adobe Application manager finds the relevant updates but won't download / install them. Clicking the update button results in an error message "Application Manager has stopped working". This is a windows system running 64 bit Windows 7

    update manually:
    pre cc updates:  http://www.adobe.com/downloads/updates/
    cc updates:  http://prodesigntools.com/adobe-cc-updates-direct-links-windows.html
    cc 2014 updates:  win (http://prodesigntools.com/adobe-cc-2014-updates-links-windows.html) / mac (http://prodesigntools.com/adobe-cc-2014-updates-links-mac.html)

  • Clean install of Mountain Lion plus bootcamp?

    Clean install of Mountain Lion plus bootcamp?
    Genius Bar guy suggested getting rid of fusion on my 2008 machine, doing a clean install, and using Bootcamp for windows.
    Best way to proceed?

    http://www.apple.com/support/bootcamp/
    https://discussions.apple.com/community/windows_software/boot_camp

  • Problems with installing 9ias infrastructure

    Iam trying to install oracle 9ias application server on a windows 2000 professional edition.
    so before installing application server iam trying to install 9ias infrastructure.
    my initial attempts have failed so iam trying to reinstall it again after deinstalling the existing infrastructure.
    the error iam getting is that the user who installed earlier is different from current user.
    i use only one account on the machine. how can i correct the problem.
    thanks
    chakri

    The server has 2 500mhz Pentium Processors.
    Actually, I was able to bypass the issue by forcing the OUI to use 1 processer (Note 229478.1), but I am now having issues with the Infrastructure Schema Configuration Assistant. Even though it says it succeeded, the log says otherwise.

  • Installing 9ias Rel 2 on RH Linux 8.0

    Hi, Guys
    I am installing 9ias 9.0.2 on linux RH 8
    I fail on post-steps , waiting on
    "Oracle Net Configuration Assistant",
    When I try to start listener manually , I get error :
    TNS-01150 : address of specified listener incorrect
    TNS-01153 : Failed to process string ...
    My tnsnsmaes.ora does not exist.
    My listener is :
    # LISTENER.ORA Network Configuration File: /home/oraias/infrastructure/network/admin/listener.ora
    # Generated by Oracle configuration tools.
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = panther.emea.oracle.com)(PORT = 1521))
    SID_LIST_LISTENER =
    (SID_LIST =
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME = /home/oraias/infrastructure)
    (PROGRAM = extproc)
    and sqlnet.ora is :
    # SQLNET.ORA Network Configuration File: /home/oraias/infrastructure/network/admin/sqlnet.ora
    # Generated by Oracle configuration tools.
    NAMES.DEFAULT_DOMAIN = emea.oracle.com
    NAMES.DIRECTORY_PATH= (TNSNAMES, ONAMES, HOSTNAME)
    ========================================================
    My /etc/hosts have 2 strings:
    1-st identify localhost
    2-nd machin-name (panther)
    ========================================================
    Ping panther is working
    dnsdomainname return right value (domain name)
    domainname returns the value of it should to be
    ========================================================
    IF ANYONE CAN HELP ME TO RESOLVE THE ISSUE, ANY HELP WILL BE APPRECIATED.
    REGARDS

    Slava,
    this might help you:
    http://oracle.com/forums/thread.jsp?forum=135&thread=169840&tstart=15&trange=15

  • Installing 9iAS 1.0.2.2.1 with 9i Db 9.0.1

    After installing 9i Db, when installing 9iAS, after the Component Configuration and Startup screen, the installation starts thens hangs with the message 'Enterprise Manager Common files Missing Dependices' Missing oracle.swd.jre1.1.8.10.0.
    Any ideas, I have cleaned out my system for a restall in cluding the registries but the same problem reappears.
    Any help would be greatly appreciated.
    Regards Stu.

    Hi Stuard,
    You may want to follow the following steps to install 9iDB with 9iAS 10221.
    You can also refer to the early msg disussion in this forum on the same subject.
    Thanks,
    Yuning
    ==============
    below are some steps you need to make to install 9iAS 1.0.2.2.1,
    some of the steps are not needed for 1.0.2.2.2
    install 9iAS v1.0.2.2.2 in Oracle 9i Environment (windows 2000)
    9i DB <OH>: d:\oracle\ora90
    9iAS <OH>: d:\oracle\iSuites
    1. Delete the spfile.ora. Go to the d:\oracle\ora90\database and
    delete the file spfile.ora OR you can rename it.
    2. Modify the following init.ora parameters
    a. db_cache_size=33554432
    b. open_cursors=300
    c. java_pool_size=67108864
    d. large_pool_size=67108864
    e. processes=200
    f. O7_dictionary_accessibility=true
    g. job_queue_processes=3
    3.Restart the database
    4. Use the JDBC lib files from the 9i Database environment to
    iAS home d:\oracle\ora90\jdbc\lib to d:\oracle\iSuites\jdbc\lib
    5. Remove the Oracle HTTP server from the Oracle database home
    6. Resize the database tablespaces
    INDX: 50 MB
    SYSTEM: 550 MB
    UNDOTBS: 150 MB
    USERS: 200 MB
    TEMP: 100 MB

  • Installing 9iAS 1.0.2.2.2 with 9iDB9.0.1.1?

    Did you have successful experience installing 9iAS 1.0.2.2.2
    with 9iDB 9.0.1.1 on Win2k prof SP2?
    Thanks.

    below are some steps you need to make to install 9iAS 1.0.2.2.1,
    some of the steps are not needed for 1.0.2.2.2
    install 9iAS v1.0.2.2.2 in Oracle 9i Environment (windows 2000)
    9i DB <OH>: d:\oracle\ora90
    9iAS <OH>: d:\oracle\iSuites
    1. Delete the spfile.ora. Go to the d:\oracle\ora90\database and
    delete the file spfile.ora OR you can rename it.
    2. Modify the following init.ora parameters
    a. db_cache_size=33554432
    b. open_cursors=300
    c. java_pool_size=67108864
    d. large_pool_size=67108864
    e. processes=200
    f. O7_dictionary_accessibility=true
    g. job_queue_processes=3
    3.Restart the database
    4. Use the JDBC lib files from the 9i Database environment to
    iAS home d:\oracle\ora90\jdbc\lib to d:\oracle\iSuites\jdbc\lib
    5. Remove the Oracle HTTP server from the Oracle database home
    6. Resize the database tablespaces
    INDX: 50 MB
    SYSTEM: 550 MB
    UNDOTBS: 150 MB
    USERS: 200 MB
    TEMP: 100 MB
    Regards,
    --Tao                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Installing 9iAS 1.0.2.2 (Portal) on 9i database

    Installing 9iAS 1.0.2.2 on 9i database and getting an
    error: "ORA-04031: unable to allocate 40972 bytes of shared
    memory ("large pool","unknown object","koh-kghu sessi","pl/sql
    Errors encountered in the Install process. Installation
    Aborted."
    Error occured on 49% of installation process of Portal
    configuration!!!!
    Anyone have any ideas?
    Thanks,
    Janez

    I had the same problem. Try this:
    Please see if the Windows NT 4.0 Option Pack is installed. You can normally see
    this in Control Panel, Add/Remove Programs.
    There are two solutions/workarounds:
    Solution One: Make a Registry Export
    1. Start REGEDIT. Navigate to the key HKEY_LOCAL_MACHINE\Software\
    Microsoft\Transaction Server\Setup(OCM)
    2. Choose Registry, Export Registry File. Select to export the current branch.
    3. Enter a filename, e.g. pre-ias.reg
    4. With 'Setup(OCM)' highlighted, press the Delete key. At the 'confirm key
    delete' prompt, answer Yes.
    5. Install the 9i Application Server.
    6. Re-establish the registry key by double clicking the filename you created.
    Solution Two: Uninstall the Option Pack
    This solution takes more time, but if you don't need the Option Pack you can
    remove it.
    Remove the NT Option Pack, install 9iAS, then you can install the Option Pack
    again.
    Explanation
    It appears that the Universal Installer hangs on a specific registry key that
    belongs to a component of the Option Pack.
    null

  • EXPERIENCE Installing 9iAS r2 on RH 7.3 or Suse 8 ?

    Hi:
    Anyone have experience installing 9ias r2 on RH7.3 or Suse 8 ?
    I would prefer RH 7.3!
    If anyone know the tricks and steps to get it installed please post them here gently :)))
    Thanks in advance.

    Hello
    I did a clean install with suse 8.0 . This is my configuration and basic installation steps.
    Installed suse8 with pdksh (k shell, will not install by default )and Swap space 1GB
    The hostname and IP adrress was in /etc/hosts file (Some shell scripts hardcode IP, Lot of problems when try to change IP address after installation)
    Created iasdba group (didnt use the oracle user comes with suse)
    Created ias user (made the home directory as /u1/ias , u1 is another mount point or can be a subdirectory under root )
    logged in as ias user and set all env variables (created a shell script called set_ias_inf and put everything in it)
    Install the infrastructure first (watch for the creation of genclntsh in $ORACLE_HOME/bin directory, as soon as it created from installation , made the following modification in the line starting with SYSLIBS, added the following line after -lc ,
    -lgcc -L/usr/lib/gcc-lib/i486-suse-linux/2.95.3/
    Installation completed and all required services started without any problem
    To check did http://server:1810 and connect to em with ias_admin and passwd
    stop the em from the suse box
    emctl stop
    Login as ias and created another shell script called set_ias_as (copied from the previous one and change the ORACLE_HOME to /u1/ias/90200/as for AS installation
    Completed the AS installation with everything and did the same change as INF installation
    Select the default character set
    select the instance as instance2
    Completed the installation
    All services started successfully
    HTH
    Santhoshkumar M Nair

  • Install 9iAS on Linux

    Hi,
    I am currently trying to install 9iAS on Linux, I get the following error:
    Error in invoking target install of makefile /orahome1/sqlplus/lib/ins_sqlplus.mk
    I'ved tried orahome1/relink all
    This didn't work got loads of no such file or directory errors.
    Then tried a make on ins_sqlplus.mk from another forum, this had an error (I'll try it again and post the error, had something like env_sql.mk in it).
    As you might have guessed I am new to Oracle and Linux so this is a big problem, if anyone can help that would be great.
    Thanks in advance.
    Phil Maskell

    Check this Link out:->
    http://www.puschitz.com/InstallingOracle9i.shtml
    an excellent place to get started.
    Things to watch for:-
    Which Linux? Have you set up all your environment variables and stuff like KERNEL.SHMMAX? Is your Path set correctly. Do you have the correct pre-requisites i.e pdksh etc.

Maybe you are looking for

  • How to print extra page in Sapscript

    Hi Gurus, I have a sapscript form with 3 windows namely Main, Barcode and Footer. My footer displays the Page # of #. I have a requirement that if the total number of pages is odd number, I will add another blank page. I tried to put below command my

  • Dual booting Windows on my Mac HD

    My current HD in my MBP is partitioned into 4 and all of them uses the Journaled file system of OS X. I plan to wipe out one logical drive so that I can dedicate it to a Windows OS (version 7/8). I don't want to boot Windows in a virtualized environm

  • Migration SQL Server 6.5 to Oracle 8.0.5

    I am migrating from SQL Server 6.5 to Oracle 8.0.5 using migration Workbench Ver. 1.2.2. The stored procedures are not migrated properly where temporary tables are used to store the intermediate results of a query on SQL Server 6.5 side. I want to lo

  • Custom Administration Setting (Visual Studio form dll)

    I am developing a custom extension to SCSM that needs an administration settings page. I have the MP created and the SCSM part in place. Also the WPF User Control dll part, but the link between the two is the trouble. I have used Travis Wright's arti

  • I recently purchased Photoshop and Premiere Elements 13

    I recently purchased Photoshop and Premiere Elements 13.  Now, I have bought a new, faster computer.  I am trying to move that software to the new computer but I can't figure out how to install it on the new computer. What am I doing wrong?