본문 바로가기

UNIX/OEL

Oracle Linux Release 6 - weblogic server: console mode 로 설치하기

Starting .bin Installation Programs in Console Mode

To start the console-mode installation process with .bin installation files, follow these steps:

  1. Log in to the target UNIX system.

  2. Go to the directory that contains the installation program.

  3. Launch the installation by entering the following command:

    chmod a+x file_name.bin ./file_name.bin -mode=console

  4. Proceed to Chapter 4, "Running the Installation Program in Console Mode."

Starting .bin Installation Programs in Silent Mode

To start the silent-mode installation process by using .bin installation files, follow these steps:

  1. Log in to the target UNIX system.

  2. Create a silent.xml file that defines the configuration settings normally entered by a user during an interactive installation process, such as graphical-mode or console-mode installation. For information about creating a silent.xml file, see Creating a silent.xml File for Silent-Mode Installation.

    Note:

    Incorrect entries in the silent.xml file can cause installation failures. To help you determine the cause of a failure, we recommend that you create a log file when you start the installation.
  3. Go to the directory that contains the installation program.

  4. Launch the installation program by entering the following command:

    chmod a+x file_name.bin ./file_name.bin -mode=silent -silent_xml=path_to_silent.xml

    file_name.bin is the name of the installation file.

    path_to_silent.xml is the full path of the silent.xml file.

    An Installer window is displayed, indicating that the files are being extracted. No other prompt or text is displayed.

    A Sample silent.xml File for Silent-Mode Installation

    <?xml version="1.0" encoding="UTF-8"?>
    <!-- Silent installer option: -mode=silent -silent_xml=C:\bea\silent.xml -->
    <!-- Specify values for each data-value name as follows: 
     
         BEAHOME            Complete pathname to the BEA Home directory that 
                            will contain this installation.
     
         WLS_INSTALL_DIR    Complete pathname to the product installation 
                            directory in which to install WebLogic Server.
     
         COMPONENT_PATHS    Components and subcomponents to be installed.
                            To install multiple components, separate the components
                            with a bar (|).
                            To install subcomponents, specify a 
                            component/subcomponent combination. For example,
                            to install Core Application Server, use
                            "WebLogic Server/Core Application Server".
         
         INSTALL_NODE_MANAGER_SERVICE  Install Node Manager as a Windows 
                                       service. The default is "no".
                                       Requires Administrator privileges.
     
         NODEMGR_PORT       Node Manager listen port number. If none specified,
                            installer uses default port 5556. 
                            INSTALL_NODE_MANAGER_SERVICE must be set to "yes".
         
         INSTALL_SHORTCUT_IN_ALL_USERS_FOLDER
                            The Windows Start menu folder in which you want the 
                            Start menu shortcuts created.
                            The user performing the installation must have 
                            Administrator privileges to install the shortcuts 
                            in the All Users folder.
                            Possible values:
                            true/yes  The shortcuts are created in 
                                      the All Users folder (default)
                            false/no  The shortcuts are created in 
                                      the local user's folder    
    
         BEA_BUNDLED_JVMS
                            Option to select BEA bundled JVMS (for e.g. either
                            jrockit_160_05 or jdk160_05 for Windows and Linux
                            platforms). The default value is all BEA bundled JVMs
                            for selected platform.
    
         LOCAL_JVMS
                            Option to select supported JVM, which is already
                            installed.Note: The presence of either(BEA_BUNDLED_JVMS
                            or LOCAL_JVMS) or both of these tokens negates any
                            default selection and only sets the values assigned for
                            these tokens as user selection. The value of the token
                            can be a pipe ('|') separated JavaHomes.
    
         See the Installation Guide for more information.
    
    <?xml version="1.0" encoding="UFF-8"?>
       <bea-installer> 
         <input-fields>
           <data-value name="BEAHOME" value="D:\Oracle\Middleware_Home" />
           <data-value name="WLS_INSTALL_DIR" value="D:\Oracle\Middleware_Home\wlserver_10.3" />
           <data-value name="COMPONENT_PATHS"
            value="WebLogic Server/Core Application Server|WebLogic Server
    /Administration Console|WebLogic Server/Configuration Wizard and Upgrade 
    Framework|WebLogic Server/Web 2.0 HTTP Pub-Sub Server|WebLogic Server/WebLogic 
    JDBC Drivers|WebLogic Server/Third Party JDBC Drivers|WebLogic Server
    /WebLogic Server Clients|WebLogic Server/WebLogic Web Server Plugins
    |WebLogic Server/UDDI and Xquery Support|WebLogic Server/Server Examples" />
           <data-value name="INSTALL_NODE_MANAGER_SERVICE" value="yes" />
           <data-value name="NODEMGR_PORT" value="5559" />
           <data-value name="INSTALL_SHORTCUT_IN_ALL_USERS_FOLDER" value="yes"/>
        <!--
        <data-value name="LOCAL_JVMS" value="D:\jrockit_160_05|D:\jdk160_11"/>
        -->
     
       </input-fields> 
    </bea-installer>



     

ref: http://download.oracle.com/docs/cd/E15523_01/doc.1111/e14142/start.htm#i1077535