Skip Headers
Oracle® Application Server Installing and Getting Started with Standard Edition One
10g Release 2 (10.1.2) for Microsoft Windows (32 Bit)
Part No. B15881-02
  Go To Documentation Library
Home
Go To Table Of Contents
Contents
Go To Index
Index

Previous
Previous
Next
Next
 

6 Post-Installation Tasks

This chapter contains the following topics:

6.1 State of Oracle Application Server Instances After Installation

After installation, the components that you have configured are started up.

You can view the Welcome page and the Application Server Control page in a browser. The URLs for these pages are shown in the last screen of the installer. You can view the contents of the last screen in the file ORACLE_HOME\install\setupinfo.txt.

Some of the Oracle Application Server components run as Windows services. You can see them in the Services dialog. To display the Services dialog:

Windows 2000: Select Start > Programs > Administrative Tools > Services.

Windows 2003: Select Start > Administrative Tools > Services.

Windows XP: Select Start > All Programs > Administrative Tools > Services.

You can use scripts or you can use the Oracle Enterprise Manager Application Server Control to start and stop Oracle Application Server instances. See Chapter 9 or Oracle Application Server Administrator's Guide for details.

6.2 Restarting the Computer After Installation

If you restart the computer after installation, be aware that not all components will be started up automatically upon restart. Only services are started up automatically. Components that do not use services, such as OracleAS Portal or Oracle Internet Directory, will remain down until you start them up manually. For instructions on how to start up processes and the start-up order, see Chapter 9 or Oracle Application Server Administrator's Guide.

6.3 Passwords for Oracle Application Server Components

By default, all passwords for Oracle Application Server Standard Edition One components, with the exception of the OracleAS Metadata Repository schema passwords, are set to be the same as the Oracle Application Server Standard Edition One instance password (the ias_admin password). For security reasons, you should change the passwords of the various components to have different values.

See the Oracle Application Server Administrator's Guide and the component guides in the Oracle Application Server Documentation Library for details on how to alter the passwords for the components you have installed.

6.4 Backup and Recovery

After installation would be a good time to start backing up the files, and to set up your backup and recovery strategy. For more information about backup and recovery, see Chapter 14 or the Oracle Application Server Administrator's Guide.

6.5 Enabling SSL

By default, most components are not configured for SSL. To enable SSL, see Chapter 13 or the SSL section in the Oracle Application Server Administrator's Guide.

6.6 Regional and Language Option Settings and the NLS_LANG Parameter

Make sure the language setting of your account is consistent with the system default language. Based on the language setting, the NLS_LANG parameter is automatically defined in the Windows registry.After installation, do not change the system default language. Otherwise, the NLS_LANG parameter and the language setting will be inconsistent.

For more information about language and locale settings, see Section 1.4.6.

6.7 Component Configuration After Installation

By default, some components are not configured during the Oracle Application Server Standard Edition One installation. You can configure these components after the installation is complete.

6.7.1 Configuring mod_osso (Required for Oracle Delegated Administration Services)

Oracle Delegated Administration Services can be configured using Oracle Enterprise Manager Application Server Control.

Oracle Delegated Administration Services requires Oracle Application Server Single Sign-On and mod_osso. mod_osso is an Oracle HTTP Server module that communicates with the Single Sign-On server. If mod_osso is not configured, you have to configure it before you can configure Oracle Delegated Administration Services. Here are the steps:

  1. Ensure that Oracle Application Server Single Sign-On is configured against Oracle Internet Directory. This is done for you if you have installed and configured these two components from the installer.

  2. Check if mod_osso is configured in the ORACLE_HOME where you want to configure Oracle Delegated Administration Services.

    Examine the following line in the ORACLE_HOME\Apache\Apache\conf\httpd.conf file. ORACLE_HOME refers to the directory where you want to configure Oracle Delegated Administration Services.

    include "ORACLE_HOME\Apache\Apache\conf\mod_osso.conf"
    
    

    If the line starts with #, then it is commented out and mod_osso is not configured in this installation. Perform step 3 to configure mod_osso.

    If the line is not commented out, mod_osso is already configured. You can go ahead and configure Oracle Delegated Administration Services using Application Server Control. Go to step 5.

  3. To configure mod_osso manually, perform these steps:

    1. Set the ORACLE_HOME environment variable to the full path of the directory where you want to configure Oracle Delegated Administration Services.

    2. Set the PATH environment variable to contain %ORACLE_HOME%\lib.

    3. Run the following command (all on one line). Note: for the -classpath parameter, do not type any space characters after the semicolon (;) characters, as indicated by <no spaces>:

      prompt> %ORACLE_HOME%\jdk\bin\java
       -classpath .;%ORACLE_HOME%\sso\lib\ossoreg.jar;<no spaces>
       %ORACLE_HOME%\jlib\ojmisc.jar;<no spaces>
       %ORACLE_HOME%\jlib\repository.jar;<no spaces>
       %ORACLE_HOME%\j2ee\home\jazn.jar;<no spaces>
       %ORACLE_HOME%\jdk\lib\dt.jar;<no spaces>
       %ORACLE_HOME%\jdk\lib\tools.jar;%ORACLE_HOME%\jlib\infratool.jar
       oracle.ias.configtool.UseInfrastructure i
       -f %ORACLE_HOME%\config\infratool_mod_osso.properties
       -h OIDhost -p OIDport -u OIDadminName -w OIDclearTextPassword
       -o ORACLE_HOME -m ASinstanceName
       -infra infraGlobalDBName -mh host -sso true
       -sslp sslPort -sslf false
      
      

      Table 6-1 describes the parameters where you have to supply values:

      Table 6-1 Parameters for Configuring mod_osso

      Parameter Description

      -h OIDhost

      Specifies the name of the computer where Oracle Internet Directory is running. You can determine this value from the OIDhost parameter in the ORACLE_HOME\config\ias.properties file.

      -p OIDport

      Specifies the port number on which Oracle Internet Directory is listening. You can determine this value from the OIDport parameter in the ORACLE_HOME\config\ias.properties file.

      -u OIDadminName

      Specifies the login name for Oracle Internet Directory. Use the superuser: cn=orcladmin.

      -w OIDclearTextPassword

      Specifies the password for the Oracle Internet Directory user.

      -o ORACLE_HOME

      Specifies the full path to the directory where you installed OracleAS Infrastructure.

      -m ASinstanceName

      Specifies the name of the OracleAS Infrastructure instance where you want to configure mod_osso. You can determine this value from the IASname parameter in the ORACLE_HOME\config\ias.properties file.

      -infra infraGlobalDBname

      Specifies the name of the OracleAS Metadata Repository database. You can determine this value from the InfrastructureDBCommonName parameter in the ORACLE_HOME\config\ias.properties file.

      -mh host

      Specifies the full hostname (including the domain name) of the computer where you want to configure Oracle Delegated Administration Services.

      -sslp sslPort

      Specifies the SSL port for Oracle Internet Directory. You can determine this value from the OIDsslport parameter in the ORACLE_HOME\config\ias.properties file.


  4. Restart OC4J and Oracle HTTP Server. You can do this using the opmnctl command.

    C:\> %ORACLE_HOME%\opmn\bin\opmnctl restartproc ias-component=OC4J
    C:\> %ORACLE_HOME%\opmn\bin\opmnctl restartproc ias-component=HTTP_Server
    
    
  5. Once mod_osso is configured, you can configure Oracle Delegated Administration Services using the Application Server Control. See the Oracle Internet Directory Administrator's Guide for details.

6.8 Components that Require Post-Installation Tasks

If you plan to use Oracle Ultra Search in Oracle Application Server Standard Edition One, you need to perform some steps specific to this component after installation before you can use Oracle Ultra Search. For more information, refer to Oracle Ultra Search Administrator's Guide.

6.9 What Should I Do Next?

After installing Oracle Application Server Standard Edition One, you should read the chapters in Part II and the Oracle Application Server Administrator's Guide. Specifically, you should read the "Getting Started" chapter in both Part II and the Oracle Application Server Administrator's Guide.

You should also perform a complete environment backup after installing Oracle Application Server Standard Edition One. This enables you to restore a working environment in case something goes wrong. For details on how to perform a complete environment backup, see Chapter 14 or the Oracle Application Server Administrator's Guide.

You should also perform a complete environment backup after each successful patchset upgrade and after each successful configuration change.