Installing ECC 6.0 on Sun Solaris 10

I am currently planning on installing ECC 6.0 on the following:
- Hardware: SunFire V490 4CPUs/32GB RAM
- OS: Solaris 10 Release 06/06
Can someone validate this approach and provide me with a link to SAP documentation that supports this HW/OS combination?  Thanks.

Go to:
SAP Support Portal >
Release & Upgrade Info >
Installation & Upgrade Guides >
MY SAP Business Suite Applications >
MY SAP ERP 2005
Check the Master Guide...
Or
SAP Support Portal >
Downloads >
SAP Software Distribution Center >
Download > Installation and Upgrades
Entry by Application Group >
SAP Application Components >
SAP ERP
SAP ERP 2005
IDES-VERSION
Hope it helps...
Leonardo De Araujo

Similar Messages

  • ECC 6.0 on Sun Solaris.

    Hi,
    I need to install the ECC 6.0 on Sun Solaris.
    Please suggest the File system Setup to be created for installation.
    Please Suggest on urgent Basis.
    Regards,
    Ravi Ghangurde

    Create the following mount points:
                          13501964   7706552   5109540  61% /usr/sap
    /dev/mapper/VolGroup10-vol03
                           5039616   1542080   3244032  33% /sapmnt
    /dev/mapper/VolGroup10-vol01
                         143125240 107200156  28658860  79% /oracle
    /dev/mapper/VolGroup10-vol02
                           5039616    144952   4638664   4% /oracle/SID/oraarch
    Best regards,
    Olivier

  • How to install jdk 1.5 in Sun Solaris 8

    Hi All,
    I have sun solaris 8 server UNIX platform.i already have JDK 1.3.3 in my server.i want to clean that and to install jdk 1.5 in my server.does any body knows how to setup JDK 1.5 in sun solaris 8 UNIX Platform and where to set JAVA_HOME Environment Variable.
    Thanks in Advance.

    http://java.sun.com/j2se/1.5.0/install-solaris.html
    r
    http://www.google.com/search?q=How+to+install+jdk+1.5+in+Sun+Solaris+8+in+unix+platform+++&client=netscape-pp&rls=com.netscape:en-US

  • ECC instalation on Sun Solaris

    Hi,
    I need to install the ECC 6.0 on Sun Solaris.
    Please suggest the File system Setup to be created for installation.
    Please Suggest on urgent Basis.
    Regards,
    Ravi Ghangurde

    Hi,
    Please go in below link and download related document and implement accordingly.
    https://websmp105.sap-ag.de/instguides
    Regards,
    Anil

  • How to install Apache Web Server with PHP on Sun Solaris Sparc machine

    Hi,
    We are trying to install the Apache Web Server and the PHP package on a Sun Solaris Sparc machine running on SunOS 5.8. We are having compilation problems with the source code of both these packages.
    Does anybody know if there are ready solaris packages for Apache and PHP available from where we can download and install instead of source code compilation?
    Or any instructions / things to watch for when installing Apache with PHP (if anybody has tried installing Apache with PHP on Sun Solaris earlier) is most welcome.
    Thanks,
    Harish

    Apache should be bundled along with Solaris check in "/var/apache" in Solaris 8 and Solaris 9
    php is available at www.php.net
    I found an old document for installing PHP maybe this will help.
    Cheers
    -Dhruva
    +++++++++++++++++++++++++++++++++++++++++++++++++++++++Installing PHP 3.x for Apache 1.x.x on Solaris
    Introduction
    This document describes how to install PHP for Apache on Solaris.
    You should have Apache installed before trying to install PHP.
    If you want to use PHP with MySQL then you must install MySQL first.
    Before we Begin
    1. These instructions assume that you have Apache installed according to instructions.
    Getting PHP
    1. You must be logged in as root to perform this installation.
    su root
    2. I save all my downloads in:
    /usr/local/dist
    If you don't already have one, you may need to create that directory now:
    mkdir /usr/local/dist
    3. You can get PHP 3.0.14 from here(www.php.net).
    cd /usr/local/dist
    ftp ftp.php.net
    cd pub/distributions
    bin
    get php-3.0.14.tar.gz
    bye
    Installing PHP
    1. We will install PHP in /usr/local/build, but use a tricky tar command
    to do it in on hit from the download directory:
    cd /usr/local/dist
    tar xvfz php-3.0.12.tar.gz -C ../build
    Compiling PHP
    1. First let's get where the action is:
    cd /usr/local/build/php-3.0.14
    2. You now have 3 options:
    * Simple PHP install without MySQL - goto step 3
    * Simple PHP install with MySQL - goto step 4
    * Custom PHP install - goto step 5
    3. Simple PHP install without MySQL. Next, jump to step 6.
    ./configure --with-apache=../apache_1.3.12
    4. Simple PHP install with MySQL. MySQL must be installed before you can configure PHP to use it. I recommend that MySQL should always be reachable with /usr/local/mysql. Even if you install it else where you
    should create a symbolic link from /usr/local/mysql. Otherwise the compiler can have problems finding the mysqlclient library. The command
    should look like this:
    ./configure with-mysql=/usr/local/mysql with-apache=../apache_1.3.12
    Next, jump to step 6.
    5. Custom PHP install. Take a look at the available configuration directives by using this command:
    ./configure --help
    6. Now we can make the PHP executable. This may take a while.
    make
    7. Now we install the PHP module with:
    make install
    Adding the PHP Module to Apache
    1. Now we have to setup Apache to include the PHP module:
    cd ../apache_1.3.12
    2. Re-configure Apache to use the PHP module. You should use your previous Apache configure command along with the PHP activate module directive.
    You can see your previous Apache configure command by doing:
    cat config.status
    You can configure Apache using the previous command with the added PHP module by doing:
    ./config.status --activate-module=src/modules/php3/libphp3.a
    If you used the simple Apache install from instructions the command will look like this:
    ./configure prefix=/usr/local/apache activate-module=src/modules/php3/libphp3.a
    3. Make and install Apache with PHP enabled:
    make
    4. We need to stop the server before installing the files:
    /usr/local/apache/bin/apachectl stop
    5. Now we can install the new binaries:
    make install
    6. Start apache again (now running the new php enabled version):
    /usr/local/apache/bin/apachectl start
    Setting Up PHP
    1. We have to tell Apache to pass certain file extensions to PHP. We do this in Apache's httpd.conf file.
    cd /usr/local/apache/conf
    2. Edit the httpd.conf file. If you do a search for php you will find a couple of commented out lines telling Apache to use the PHP module. You should uncomment them to look like this.
    AddType application/x-httpd-php3 .php3
    AddType application/x-httpd-php3-source .phps
    3. I prefer to use the extension .phtml, you can use whatever extension you like (even .html) by adding lines to httpd.conf like this:
    AddType application/x-httpd-php3 .phtml
    Check that it Works
    1. We have to restart Apache to make these changes take effect on the running server.
    cd /usr/local/apache/bin
    ./apachectl restart
    2. Apache should now be running with PHP enabled. The server version should include PHP/3.0b2.
    ./apachectl status
    Apache Server Status for dev.synop.com
    Server Version: Apache/1.3.9 (Unix) PHP/3.0.12
    Server Built: Oct 25 1999 00:37:07
    3. Now it is time to test PHP with a page. The simplest thing to do is create a page called test.php3. My file is here. This file contains the
    following text:
    <?php phpinfo(); ?>
    4. Point your browser at this file on the virtual host which you used:
    http://localhost/test.php3

  • Installing and Conifuguring Oracle 9i/10g on Sun Solaris

    Hi,
    I am planning to install Oracle 9i/10g on Sun Solaris. Below are the activities I need to do. Can some body provide me Step-by-Step procedure to be followed for below activities.
         Pre-Installation Activities
         Creating a install User
         Configuring OS Memory and shared memories
         Creating distinct file systems for Oracle -- Capacity planning
         Installing the product
         Post product installations
    Thanks in Advance
    Sampath

    Please have a look in the document "Installation Guide" found here on Oracle Technology Network (OTN). All your questions are answered there!!!

  • OS Level parameters for Sun Solaris 11

    Dear SDN,
    We are Planning to install the SAP ECC 6.0 on sun solaris version 11.
    Please suggest need to set the os level parameters.
    kindly specify the list if you have.
    Regards,
    Ravi Ghangurde

    Hi,
    Please download installation guide form service.sap.com with sun soloris and installation accordingly.
    Please see below link:-
    https://websmp105.sap-ag.de/instguides
    http://help.sap.com/saphelp_nw04s/helpdata/en/3d/a00b233aac964792843e0fc7a1a791/content.htm
    Anil

  • Oracle 9i RAC on Sun Solaris 5.10/64 bit version.Is that supported ?

    I want to install Oracle 9i RAC on Sun Solaris 10 64 bit. Is that officially supported ?
    I dont this combination on metalink certify matrix

    I know we dont get support from oracle.But, you initially mentioned that you couldn't find the required information on metalink, therefore I provided that information, which I thought you were looking for.
    Is anybody still using this combination ? Does it work ? yes, we are using it and it has been working fine for over 4 years...of course we patched it to the latest - 9.2.0.8 to be on the supported release/patch.

  • Minimum requirement, hardware of SUN Solaris with ECC 6.0

    hi all
    can anyone tell me what is minimum requirement of hardware of SUN Solaris with ECC 6.0
    i serach out in marketplace but didn't get the answer.
    so any one can solve my problem
    rgds
    aftab

    hi juan
    i go to quick sizing but its looks too confusing like FI, HR, SCM etc and asking too many values which we don't need to specify in our case. We only need hardware minimum / maximum requirement to install SAP ECC6 SR3 on Solaris Sparc machine..
    tell me how can i do in simplified way
    thanks in advance
    Rgds+
    Aftab

  • Is it Possible to install oracle 9i  32 bit on Sun Solaris Intel Edition

    Dear OTN Members ,
    It is possible to install ORACLE 9I Sun SPARC Solaris (32 Bit) on
    Sun Solaris Intel Editon 2.8 . Please inform me on
    email :-
    [email protected]
    [email protected]
    Thanking You
    Piyush Patel
    - Server name :- pi.com
    - Filename
    - Date/Time
    - Browser + Version : Netscape 4.7
    - O/S + Version : Sun Solaris Intel Edition 2.8

    857211 wrote:
    I just need some advice on installing oracle 11gWhat part/product of "oracle 11g" exactly?
    Installation Guides should be clear enough, if read. Also read Release Notes for additional support/unsupport info.
    http://docs.oracle.com/cd/E11882_01/install.112/e24186/reqs.htm#CHDHGGFE
    http://docs.oracle.com/cd/E11882_01/install.112/e24187/pre_install.htm
    However the Installation Guide for Database Client adds:
    "Note: Oracle provides 32-bit (Windows x86) and 64-bit (Windows x64) versions of Oracle Database Client. _Oracle certifies 32-bit Oracle Database Client on Windows x64_." (underline added)

  • Problems in installing msi k9n6gm-v drivers in sun solaris

    I have problems in installing drivers of my msi motherboard. Please help me. Also im new in using sun solaris. I dont know how to run executable and .ini files format which is windows compatible.

    You are new to the forum, so some advice:
    Do not post the same question to multiple forums.
    Pick one and place it there.
    You will get a response or you will not get a response.
    Cross-posting will not get any answer, any faster, and it is considered bad forum manners.
    ini and exe files are for Microsoft's OS.
    They don't work in *NIX.
    Your motherboard drivers are for Windows and cannot be used for Solaris.
    Here are a few links for you to spend some time with:
    http://www.sun.com/bigadmin/hcl/hcts/device_detect.html
    http://www.sun.com/bigadmin/hcl/
    http://72.5.124.61/software/solaris/howtoguides/installationhowto.jsp
    http://docs.sun.com/app/docs/doc/817-0544/

  • Trying to install ecc 5.0 on solaris 10.

    hi , can anyone send pdf or steps how to install ecc 5.0 on solaris 10....
    thanks,

    Check
    http://service.sap.com/instguides
    Everything you need is in that guide (including notes for the parameters you need to set on Solaris)
    Markus

  • How to install oracle 8i on sun solaris OS.

    Dear all,
    how to install oracle 8i on sun solaris OS.
    please guide in detail.
    Thanks
    Muhammad Nadeem

    OTN has much to offer including installation guides:
    http://www.oracle.com/technology/documentation/oracle8i.html
    Werner

  • Install Oracle 10g in Sun Solaris 10 x86_x64

    Hi,
    We installed Sun Solaris 10 x86_x64 and are trying to install Oracle 10g in that.
    When check for required packages. SUNWsprox is missing.
    # ./CheckPackage.sh
    system SUNWarc Lint Libraries (usr)
    system SUNWarcr Lint Libraries (root)
    system SUNWbtool CCS tools bundled with SunOS
    system SUNWhea SunOS Header Files
    system SUNWlibm Math & Microtasking Library Headers & Lint Files (Usr)
    system SUNWlibmr Math Library Lint Files (Root)
    system SUNWlibms Math & Microtasking Libraries (Usr)
    system SUNWlibmsr Math & Microtasking Libraries (Root)
    system SUNWlibms Math & Microtasking Libraries (Usr)
    system SUNWlibmsr Math & Microtasking Libraries (Root)
    system SUNWsprot Solaris Bundled tools
    system SUNWtoo Programming Tools
    system SUNWi1of ISO-8859-1 (Latin-1) Optional Fonts
    system SUNWxwfnt X Window System platform required fonts
    system SUNWi1cs X11 ISO8859-1 Codeset Support
    system SUNWi15cs X11 ISO8859-15 Codeset Support
    How can we install the package and what is the role of the packge.
    Thansk,
    Selva

    The SUNWfoo and SUNWfoox packages were generally merged for Solaris 10 SPARC packages. The foox would represent 64-bit binaries/libraries and may be left out of a 32-bit system install.
    Since Solaris 10 only runs a 64-bit kernel on SPARC, there's no reason to supply both packages and they were merged.
    For x86, 32-bit kernel mode is still supported, and the package separation exists.
    Darren

  • Minimum Hardware req of SUN Solaris with ECC 6.0

    hi all
    can anyone tell me what is minimum requirement of hardware of SUN Solaris with ECC 6.0
    i serach out in marketplace but didn't get the answer.
    so any one can solve my problem
    rgds
    aftab

    Hi Aftab,
    Once you finish with Sizing and always recomended you contact SAP-SUN Competent Center with your Quick Sizer Project reference.  They will always help you to do the final sizing..
    Check the following links
    https://websmp210.sap-ag.de/quicksizing
    http://www.saponsolaris.com
    Hope these info. will help in this regards.
    Regards
    Rayees Palot

Maybe you are looking for