|
Oracle® Business Intelligence Installation Guide
10g Release 2 (10.1.2.1) for Microsoft Windows and Solaris Operating System (SPARC) B16030-01 |
|
![]() Previous |
![]() Next |
Before installing Oracle Business Intelligence, ensure that your computer meets the requirements for Reports Services described in this chapter.
This chapter contains the following sections:
Section 3.1, "About specifying an SMTP Server for Reports Services"
Section 3.2, "New Element for Specifying Port Numbers for CORBA Communication"
Section 3.5, "Windows System Files (wsf.exe) (Microsoft Windows)"
Section 3.12, "The /etc/hosts (Solaris) and %WINDIR%\system32\drivers\etc\hosts (Windows) File"
Section 3.13, "Network Topics (Microsoft Windows and Solaris)"
Section 3.14, "Prerequisite Checks Performed by the Installer (Microsoft Windows and Solaris)"
During installation, the Provide Outgoing Mail Server Information screen appears. Enter the outgoing mail (SMTP) server to be used by Reports Services.
Example: smtp.oracle.com
|
Note: This field is optional. However, you cannot distribute reports through e-mail until you have configured the mail server information. Refer to Oracle Application Server Reports Services Publishing Reports to the Web for more information on specifying the outgoing mail server information. |
Oracle Reports 10g Release 2 (10.1.2) introduces the ORBPorts element in the server configuration file to allow you to explicitly specify the port numbers used by Reports Server and engines for communication through CORBA. You can specify either a range of ports or individual ports separated by commas. For example:
<ORBPorts value="15000-15010"/> (Range of values)
<ORBPorts value="15000,16000,17000,18000"/> (Comma-separated values)
By default, the ORBPorts element is not present in the server configuration file. If this element is missing, Reports Server chooses a random port for CORBA communication. For more information about the ORBPorts element, see the chapter "Configuring OracleAS Reports Services" in the Oracle Application Server Reports Services Publishing Reports to the Web manual.
|
Note: TheORBPorts element should be defined only if your administrator has enabled TCP port filtering on your server where Reports Server is running. If port filtering is enabled, your administrator can open few ports for Reports Server, then use ORBPorts to specify them in the server configuration file for Reports Server and engine communication. If any of the ports are not available, Reports Server or engines may fail to start and an error displays.
|
Check that your computer contains the following operating system packages. If the packages are not present, the installer cannot continue.
SUNWarc
SUNWbtool
SUNWhea
SUNWlibm
SUNWlibms
SUNWsprot
SUNWsprox
SUNWtoo
SUNWi1of (the character after the i is the number 1, not the letter ell)
SUNWxwfnt
SUNWi1cs (the character after the i is the number 1, not the letter ell)
SUNWi15cs (the character after the i is the number 1, not the letter ell)
The last two packages (SUNWi1cs and SUNWi15cs) are required for the ISO8859-1 and ISO8859-15 codesets.
To check if an operating system package is installed on your computer, run the pkginfo command with the name of the package. The syntax for running pkginfo is:
pkginfo package_name1 package_name2 ...
For example, to check if all the listed packages are installed on your computer, run the following command:
prompt> pkginfo SUNWarc SUNWbtool SUNWhea SUNWlibm SUNWlibms SUNWsprot SUNWsprox SUNWtoo SUNWi1of SUNWxwfnt SUNWi1cs SUNWi15cs
If your computer is missing a package, contact your system administrator.
The computers on which you plan to install Oracle Business Intelligence require their kernel parameters to be set to the minimum values shown in Table 3-1 and Table 3-2.
Kernel parameter values are stored in the /etc/system file. If your /etc/system file does not specify the parameters, you have to add lines to the file to specify them.
Table 3-1 Kernel Parameters Required by OracleAS Web Cache
| Parameter | Line in /etc/system Showing the Minimum Value | Description |
|---|---|---|
|
|
|
Defines the hard limit on file descriptors that a single process can have open. |
Table 3-2 Kernel Parameters Required by OracleAS Metadata Repository
| Parameter | Line in /etc/system Showing the Minimum Value | Description |
|---|---|---|
|
|
|
Defines the maximum number of semaphore sets in the entire system. |
|
|
|
Defines the maximum semaphores on the system. The 256 is only a minimum value for computers that will be running a single database (the OracleAS Metadata Repository that you are installing). If you are already running a database on the computer, see the "To determine the minimum value for the semmns parameter" section. |
|
|
|
Defines the minimum recommended value, for initial installation only. |
|
|
|
Defines the maximum allowable size of one shared memory segment (4 GB = 4294967295). |
|
|
|
Defines the minimum allowable size of a single shared memory segment. Note: This parameter is not used in Solaris 9. |
|
|
|
Defines the maximum number of shared memory segments in the entire system. |
|
|
|
Defines the maximum number of shared memory segments one process can attach. Note: This parameter is not used in Solaris 9. |
To determine the minimum value for the semmns parameter
If you are installing the OracleAS Metadata Repository on a computer that is not already running an Oracle database (that is, the OracleAS Metadata Repository will be the only Oracle database running on the computer), set the semmns parameter to a minimum of 256.
If you are installing the OracleAS Metadata Repository on a computer that is already running an Oracle database, set the semmns parameter to the sum of the processes initialization parameter for each Oracle database (including the OracleAS Metadata Repository), adding the largest one twice, and then adding an additional 10 for each database.
The default value of the processes parameter for the OracleAS Metadata Repository database is 150.
Example: The computer is already running an Oracle database, and its processes parameter is set at 200. In this case, you must set the semmns parameter to at least 770:
Sum of the processes parameter for all Oracle database: 200 for the existing database + 150 for the OracleAS Metadata Repository that you are installing = 350
Add the largest one twice: 200 + 200 = 400
Add 10 for each database: 10 + 10 = 20
Total: 350 + 400 + 20 = 770
To determine the value of the processes parameter for an Oracle database, run the following command in SQL*Plus:
prompt> sqlplus "sys/password as sysdba"
password specifies the password for the SYS user.
SQL> show parameters processes
To add or update kernel parameter values
Log on as the root user on the computer where you need to change the values.
Make a backup copy of the /etc/system file. For example, the following command makes a backup copy called system.back.
# cp /etc/system /etc/system.back
Using a text editor such as vi or emacs, update the values or add new lines in the /etc/system file as necessary. For example, the following lines show sample values for the parameters:
set semsys:seminfo_semmni=300 set semsys:seminfo_semmns=1024 set semsys:seminfo_semmsl=256 set shmsys:shminfo_shmmax=4294967295 set shmsys:shminfo_shmmin=1 set shmsys:shminfo_shmmni=512 set shmsys:shminfo_shmseg=150
|
Tip: The comment character for the/etc/system file is the asterisk (*), not #.
|
Restart the computer for the new values to take effect.
|
Note: Perform this procedure only if prompted by the installer. |
Oracle Business Intelligence requires minimum versions of some system files in the Windows system directory (typically C:\Windows\system32 or C:\Winnt\system32). When you run the installer for Oracle Business Intelligence, the installer checks the Windows system files on your computer. If it finds old versions of these files, and the files are in use by other processes, then it prompts you to exit the installer and run wsf.exe to install the latest Windows system files. (If it finds old versions of the files, but the files are not in use by other processes, then it just replaces the files and you do not have to run wsf.exe.)
wsf.exe is located in the same directory as the installer.
To run wsf.exe, which you need to do only if prompted by the installer, perform these steps:
Start wsf.exe, which starts Oracle Universal Installer to install the Windows system files.
CD-ROM (assumes E: is the CD-ROM drive):
E:\> wsf.exe
DVD-ROM (assumes E: is the DVD-ROM drive):
E:\> cd application_server E:\> wsf.exe
Follow the screens in the installer:
Table 3-3 Screens for Installing Windows System Files
|
|
Screen | Action |
|---|---|---|
|
1. |
Welcome |
Click Next. |
|
2. |
Specify File Locations |
Destination Name: Enter a name for the Oracle home for wsf. Destination Path: Enter any full path. The installer installs the files in the proper system directories, regardless of the value you enter in this field. Click Next. |
|
3. |
Warning: System Reboot Required |
If you see this screen, the installer reboots your computer automatically at the end of this installation to complete the Windows system files installation. Save and close applications (other than this installer) that you have running on your computer. Click Next. |
|
4. |
Summary |
Click Next to start installing the Windows system files. |
|
5. |
End of Installation |
Click Exit to exit the installer. |
If the installer displayed the Warning: System Reboot Required screen during installation, the installer now reboots your computer. If not, reboot your computer before continuing.
Many Oracle Business Intelligence components, such as Oracle HTTP Server, OracleAS Web Cache, and Oracle Enterprise Manager 10g, use ports. You can have the installer assign default port numbers, or use port numbers that you specify.
Why the Default Port for Oracle HTTP Server Is Port 7777 and Not Port 80
By default, the installer configures Oracle HTTP Server to use port 7777, not port 80. Port 7777 is the default port because on UNIX, components that use port numbers lower than 1024 require additional steps to be done as the root user before the components can run. Because the installer does not have root access, it has to use a port greater than 1024.
If you want Oracle HTTP Server to use a different port, such as port 80, use the static ports feature, which enables you to specify port numbers for components. Although you can change the port number after installation, it is easier to set the port number during installation.
Problem: Components Cannot Start Up Because of Conflicts with Ephemeral Ports
On rare occasions, Oracle Application Server processes are unable to start because required ports are not available. Processes may fail to start or report that they are unable to bind to ports. The behavior may be transient in that if you try to restart the affected process later, it does start successfully.
The cause of this problem is that by default, Oracle Application Server uses a number of ports that fall into the range of ephemeral ports. Ephemeral ports are usually used on the client ends of client/server TCP/IP connections. Because client processes usually are unconcerned with the port value used on the client side of the connection, all TCP/IP implementations enable clients to defer to the operating system the choice of the port value to use for the client side. The operating system selects a port from the ephemeral port range for each client connection of this type.
On the other hand, server processes (for example, Oracle Application Server processes) cannot use ephemeral ports. They must use fixed port values so that clients can always connect to the same server port to communicate with the server.
Port conflicts with ephemeral ports arise when an Oracle Application Server process is configured to use a port in the ephemeral port range. The Oracle Application Server process tries to start up, but discovers that the port that it needs is already in use by a client process (the client received the ephemeral port assignment from the operating system). This client can be any process on the computer capable of communicating via TCP/IP. The Oracle Application Server process fails to start up when the port that it needs is unavailable.
This problem occurs relatively more frequently on Microsoft Windows than on other operating systems because by default Windows uses a small range of ports for ephemeral client connections.
Ephemeral Port Range
The ephemeral port range on Microsoft Windows is ports 1024 through 5000, inclusive.
Only the upper end of this range is adjustable in Windows. In most other operating systems, the ephemeral range by default is much larger, and the lower and upper bounds of the range are adjustable.
Several Application Server processes, including Oracle HTTP Server, OracleAS Web Cache, Oracle Enterprise Manager 10g Application Server Control, and OC4J, use ports in the ephemeral port range. These processes cannot start up if the ports that they need are already in use by clients.
Avoiding Conflicts with Ephemeral Ports
To avoid conflicts with ephemeral ports, you have these options:
Install Oracle Business Intelligence using staticports.ini so that Oracle Business Intelligence components do not use ports within the ephemeral range. In the staticports.ini file, use port numbers below 1024 or above 5000.
See Section 3.6.4, "Using Custom Port Numbers (the Static Ports Feature)" for details.
If you have already installed Oracle Business Intelligence, you can reconfigure the components to use ports below 1024 or above 5000. See the Oracle Application Server Administrator's Guide to learn to change the current ports used by Application Server processes.
(This option can be done post-installation.) Modify the ephemeral port range on your computer. Use this option only if you cannot use any of the alternatives above. This option is the least preferred because it makes changes to the Windows registry, and it affects all products that you run on your computer.
This option moves the ephemeral port range to a new location. Before making the change, you must verify that none of the products you are using (Oracle or non-Oracle) on your computer use non-ephemeral ports within the ephemeral port range. If any products do so, you must relocate them to the new ReservedPorts range (see below), above the new ephemeral range, or below port 1024.
To implement this option, perform these steps:
Raise the upper bound of the ephemeral port range to expand the size of the range.
Set the MaxUserPort value in the registry to at least 13000, but no higher than 65534. MaxUserPort is the upper bound of the ephemeral port range.
For steps, see Microsoft Knowledge Base article 196271: http://support.microsoft.com/default.aspx?scid=kb;[LN];196271.
Reserve a portion of the newly expanded ephemeral port range for use by Oracle Application Server.
Set the ReservedPorts value in the registry so that ports 1024 through 8000 are reserved for Oracle Application Server. The reserved range incorporates the range of ports normally used by Oracle Application Server.
For steps, see Microsoft Knowledge Base article 812873: http://support.microsoft.com/default.aspx?scid=kb;[LN];812873.
Restart your computer for the changes to take effect.
After performing the steps, you end up with the following: ports from 1024 through 8000 are reserved for Oracle Application Server, and ports 8001 through 13000 are the new ephemeral port range (assuming you set the MaxUserPort to 13000). The reserved range incorporates the range of ports normally used by Oracle Application Server, and the ephemeral range has the same size as the original.
To check if a port is being used, run the netstat command as follows:
prompt> netstat -an | grep portnum
C:\> netstat -an | find "portnum"
Note that you need double-quotes around the port number.
If you want to use the default port numbers for components, you do not have to do anything. Make sure that at least one port is available in the port range for each component. If the installer is unable to find a free port in the range, the installation fails.
Note the following points:
The installer assigns the default ports to components only if the ports are not in use by other applications. If the default port is in use, the installer tries other ports in the port number range for the component. For example, the default non-SSL port for Oracle HTTP Server for the middle tier is port 80. If this port is in use by another application, the installer assigns a port in the 7777 - 7877 range.
The default ports for Oracle HTTP Server depend on the installation type (Table 3-4). The middle tier gets ports 80 and 443 because it is where you would deploy your applications. Users would send requests to the middle tier's Oracle HTTP Server/OracleAS Web Cache to access the applications.
In Table 3-4, the values in parenthesis indicate the ports that the installer tries to assign to Oracle HTTP Server if the default port is already in use.
The installer no longer checks the services file to determine if a port is in use. In earlier releases, the installer would not assign a port number if the port number was listed in the file.
The services file is located in the C:\%SystemRoot%\system32\drivers\etc directory, where %SystemRoot% is winnt on Windows 2000, and windows on Windows XP and Windows 2003.
To instruct the installer to assign custom port numbers for components:
Create a file containing the component names and port numbers. Section 3.6.4.1, "Format of the staticports.ini File" describes the file format. This file is typically called staticports.ini, but you can name it anything you want.
In the installer, on the Specify Port Configuration Options screen, select Manual and enter the complete path to the staticports.ini file.
If you do not specify the complete path to the file, the installer will not be able to find the file. The installer then assigns default ports for all the components, and it does this without displaying any warning.
|
Difference from Previous Release: In 10g (9.0.4), you used command-line options to specify thestaticports.ini file. In this release, you specify the file in the new Specify Port Configuration Options screen.
|
The staticports.ini file has the following format. Replace port_num with the port number that you want to use for the component.
# J2EE and Web Cache Oracle HTTP Server port = port_num Oracle HTTP Server Listen port = port_num Oracle HTTP Server SSL port = port_num Oracle HTTP Server Listen (SSL) port = port_num Oracle HTTP Server Diagnostic port = port_num Java Object Cache port = port_num DCM Java Object Cache port = port_num DCM Discovery port = port_num Oracle Notification Server Request port = port_num Oracle Notification Server Local port = port_num Oracle Notification Server Remote port = port_num Application Server Control port = port_num Application Server Control RMI port = port_num Oracle Management Agent port = port_num Web Cache HTTP Listen port = port_num Web Cache HTTP Listen (SSL) port = port_num Web Cache Administration port = port_num Web Cache Invalidation port = port_num Web Cache Statistics port = port_num Log Loader port = port_num ASG port = port_num # Business Intelligence and Forms Reports Services SQL*Net port = port_num Reports Services discoveryService port = port_num Reports Services bridge port = port_num # Infrastructure Oracle Internet Directory port = port_num Oracle Internet Directory (SSL) port = port_num Oracle Certificate Authority SSL Server Authentication port = port_num Oracle Certificate Authority SSL Mutual Authentication port = port_num Ultra Search HTTP port number = port_num
The easiest way to create the file is to use the staticports.ini file on the CD-ROM (Disk 1) or DVD-ROM as a template:
Copy the staticports.ini file from the CD-ROM or DVD-ROM to your hard disk.
Edit the local copy (the file on the hard disk) to include the required port numbers.
You do not need to specify port numbers for all components in the staticports.ini file. If a component is not listed in the file, the installer uses the default port number for that component.
The following example sets the Application Server Control port and some OracleAS Web Cache ports. For components not specified, the installer assigns the default port numbers.
Application Server Control port = 2000 Web Cache Administration port = 2001 Web Cache Invalidation port = 2002 Web Cache Statistics port = 2003
When installation is complete, you can check the portlist.ini file to see the assigned ports.
|
Notes on Choosing Port Numbers:
|
The installer verifies that the ports specified in the file are available by checking the memory. This means that it can only detect ports that are being used by running processes. It does not look in configuration files to determine which ports an application is using.
If the installer detects that a specified port is not available, it displays an alert. The installer does not assign a port that is not available. To fix this:
Edit the staticports.ini file to specify a different port, or shut down the application using the port.
Click Retry. The installer re-reads the staticports.ini file and verifies the entries in the file again.
Using portlist.ini as the staticports.ini File
The staticports.ini file uses the same format as the portlist.ini file, which is created after a Oracle Business Intelligence installation. If you have installed Oracle Business Intelligence and want to use the same port numbers in another installation, use the portlist.ini file from the first installation as the staticports.ini file for subsequent installations.
The portlist.ini file is located in the following directory:
ORACLE_HOME/install/portlist.ini (on Solaris)
ORACLE_HOME\install\portlist.ini (on Windows)
However, note this difference: in staticports.ini, the Oracle Management Agent port line corresponds to the Enterprise Manager Agent port line in portlist.ini.
Check the staticports.ini file carefully because a mistake can cause the installer to use default ports without displaying any warning. Here are some things that you should check:
If you specify the same port for more than one component, the installer uses the specified port for the first component, but for the other components, it uses the components' default ports. The installer does not warn you if you have specified the same port for multiple components.
If you have syntax errors in the staticports.ini file (for example, if you omitted the = character for a line), the installer ignores the line. For the components specified on such lines, the installer assigns the default ports. The installer does not display a warning for lines with syntax errors.
If you misspell a component name, the installer assigns the default port for the component. Names of components in the file are case-sensitive. The installer does not display a warning for lines with unrecognized names.
If you specify a non-numeric value for the port number, the installer ignores the line and assigns the default port number for the component. It does this without displaying any warning.
If you specify a relative path to the staticports.ini file (for example, ./staticports.ini (on Solaris) or .\staticports.ini (on Microsoft Windows) or just staticports.ini), the installer will not find the file. The installer continues without displaying a warning and assigns default ports to all components. You must specify a complete path to the staticports.ini file.
Ensure that you understand the following when setting ports for these components.
In the httpd.conf file for Oracle HTTP Server, the Port and the Listen directives specify the ports used by OracleAS Web Cache and Oracle HTTP Server. The correct lines in the staticports.ini file for setting these ports depend on the components that you are configuring.
If You Are Configuring OracleAS Web Cache and Oracle HTTP Server
Set the port for OracleAS Web Cache.
OracleAS Web Cache uses the port specified by the Port directive (Figure 3-1). To set this port, use this line in the staticports.ini file:
Web Cache HTTP Listen port = port_number
To configure the SSL port for OracleAS Web Cache, use the following line:
Web Cache HTTP Listen (SSL) port = port_number
You cannot set the port number using the Oracle HTTP Server port line in this case. If the staticports.ini file contains both the Oracle HTTP Server port and the Web Cache HTTP Listen port lines, the Oracle HTTP Server port line is ignored. For example, if you have these lines in staticports.ini:
Web Cache HTTP Listen port = 7979 Oracle HTTP Server port = 8080
the Port directive is set to 7979.
Set the port for Oracle HTTP Server.
Oracle HTTP Server uses the port specified by the Listen directive. To set this port, use this line in the staticports.ini file:
Oracle HTTP Server Listen port = port_number
To configure the SSL Listen port, use the following line:
Oracle HTTP Server Listen (SSL) port = port_number
Figure 3-1 Configuring Both OracleAS Web Cache and Oracle HTTP Server
If You Are Configuring Oracle HTTP Server Only (no OracleAS Web Cache)
If you are configuring Oracle HTTP Server only, then Oracle HTTP Server uses both Port and Listen directives (Figure 3-2). In this case, you must set both directives to use the same port number.
To set these ports, use the Oracle HTTP Server port and Oracle HTTP Server Listen port lines in the staticports.ini file. For example:
Oracle HTTP Server port = 8080 Oracle HTTP Server Listen port = 8080
To set the SSL version of these ports, use the following lines. As in the non-SSL version, the port numbers must be the same.
Oracle HTTP Server SSL port = 443 Oracle HTTP Server Listen (SSL) port = 443
If you also specify the Web Cache lines in staticports.ini, they are ignored because you are not configuring OracleAS Web Cache.
Figure 3-2 Configuring Only Oracle HTTP Server
This section describes some common scenarios for using staticports.ini.
In this scenario, create a staticports.ini file that includes the following lines:
Web Cache HTTP Listen port = 80 Oracle HTTP Server Listen port = 81 Web Cache HTTP Listen (SSL) port = 443 Oracle HTTP Server Listen (SSL) port = 444
The ports for Oracle HTTP Server Listen and SSL Listen can be any available port. The example uses ports 81 and 444. These port numbers do not have to be less than 1024. If you select port numbers less than 1024, start Oracle HTTP Server and OracleAS Web Cache as the root user.
In this scenario, create a staticports.ini file that includes the following lines:
Oracle HTTP Server port = 80 Oracle HTTP Server Listen port = 80 Oracle HTTP Server SSL port = 443 Oracle HTTP Server Listen (SSL) port = 443
|
Note: Because you are using ports less than 1024, you have to configure Oracle HTTP Server to run as the root user. |
You must create operating system groups if you plan to install Oracle Business Intelligence on a computer that does not have Oracle products installed. In this case, create a group to own the inventory directory. See "Creating a Group for the Inventory Directory".
Use the Solaris Management Console to create a local operating system group. To do this:
Set the DISPLAY environment variable to point to the monitor on which you want the Solaris Management Console window to appear. For information on setting the environment variable, see Section 3.10.4, "DISPLAY".
Start the Solaris Management Console.
prompt> /usr/sadm/bin/smc
In the left frame, expand This Computer, and then expand System Configuration.
Click Users to display the Log In window.
Log on as the root user.
In the left frame, expand Users and select Groups.
Select Action, and then select Add Group.
In the Group Name field, enter a name for the group.
In the Group ID Number field, enter an ID for the group. The ID must be a number. This is an optional field.
Click OK.
You have created a local operating system group. For more information about operating system users and groups, see your operating system documentation or contact your system administrator.
Creating a Group for the Inventory Directory
If you plan to install Oracle Business Intelligence on a computer that does not have Oracle products installed, create a group to own the inventory directory. The installer writes its files in the inventory directory to keep track of the Oracle products installed on the computer.
This guide uses the oinstall name for this operating system group.
By having a separate group for the inventory directory, different users can install Oracle products on the computer. Users must have write permission for the inventory directory. To have write permission, users must belong to the oinstall group.
When an Oracle product is installed for the first time on a computer, the installer displays a screen where you enter a group name for the inventory directory. After this the installer displays a screen where you enter the location of the inventory directory.
The default name of the inventory directory is oraInventory.
If you are not sure whether an inventory directory already exists on the computer, check the /var/opt/oracle/oraInst.loc file. This file lists the location of the inventory directory and the group that owns it. If this file does not exist, it means that no Oracle products are installed on the computer.
Create an operating system user to install and upgrade Oracle products. The operating system user running the installer must have write permission for the following directories:
the Oracle home directory, which contains files for the product you are installing
the inventory directory, which is used by the installer for all Oracle products
If the computer contains other Oracle products, then it means that you may already have an operating system user. Check the /var/opt/oracle/oraInst.loc file. This file lists the location of the inventory directory and the group that owns it. If this file does not exist, it means that no Oracle products are installed on your computer.
If you do not already have a user for installing Oracle products, create a user with the properties listed in Table 3-7.
Table 3-7 Properties of the Operating System User Who Runs the Installer
| Item | Description |
|---|---|
|
Login name |
You can use any name for the user. This guide refers to the user as the oracle user. |
|
Group identifier |
The primary group of the oracle user must have write permission for the You can use any name for the group. This guide uses the name |
|
Home directory |
The home directory for the oracle user can be consistent with the home directories of other users. |
|
Login shell |
The default login shell can be the C, Bourne, or Korn shell. |
|
Note: Use the oracle user only for installing and maintaining Oracle products. Never use theoracle user for purposes unrelated to the installer. Do not use root as the oracle user.
|
Creating a Local Operating System User
Use the Solaris Management Console to create a local operating system user. To do this:
Set the DISPLAY environment variable to point to the monitor where you want the Solaris Management Console window to appear. For information on setting the environment variable, see Section 3.10.4, "DISPLAY".
Start the Solaris Management Console.
prompt> /usr/sadm/bin/smc
In the left frame, expand This Computer, then expand System Configuration.
Click Users to display the Log In window.
In the User Name field, enter root. In the Password field, enter the root password.
In the left frame, expand Users and select User Accounts.
Select Action, Add User, and then With Wizard.
In the User Name field, enter the name of the user. For example, enter oracle. The Full Name and Description fields are optional.
Click Next.
In the User ID Number field, accept the default value.
Click Next.
Select User Must Use This Password At First Login, and enter a password for the user.
Click Next.
From the Primary Group list, select the primary group for the user. This is the group you created earlier to own the inventory directory. See "Creating a Group for the Inventory Directory".
Click Next.
In the Path field, enter a home directory for the user.
Click Next.
Review the mail server information for the user and click Next.
Review the user information and click Finish.
The local operating system user has been created.
To check the groups to which an operating system user belongs, run the groups command with the name of the user. For example:
prompt> groups oracle
For more information about operating system users and groups, see the operating system documentation or contact your system administrator.
The operating system user performing the installation must belong to the Administrators group. Perform the following steps to check if the operating system user belongs to the Administrators group.
To check if a user belongs to the administrators group:
Display the Computer Management dialog box.
Windows 2000 / Windows XP: Right-click My Computer on the desktop, and click Manage.
Windows 2003: Right-click the local computer icon on the desktop, and click Manage.
On the left side, expand Local Users and Groups, and select Users.
On the right side, right-click the user and click Properties to display the Properties dialog box.
Select the Member Of tab.
If you are not a member of the Administrators group, get an administrator to add you to the group or log in as a user who is a member of the Administrators group.
The operating system user who will be installing Oracle Business Intelligence needs to set (or unset) the environment variables listed in Table 3-8.
Table 3-8 Summary of Environment Variables for Solaris
| Environment Variable | Set or Unset |
|---|---|
|
|
Does not matter (the installer unsets these two environment variables). |
|
PATH, CLASSPATH, and LD_LIBRARY_PATH |
Must not contain references to directories in any Oracle home directories |
|
|
Set it to the monitor on which you want to the installer window to appear. |
|
|
Optional. If unset, defaults to |
|
|
Must not be set. |
|
|
Default set to YES. If set to NO, ensure that you specify the appropriate display. |
Here are some tips when working with environment variables:
If you set environment variables in the .profile file, they may not be read. To ensure environment variables are set to the correct values, check their values in the shell where you run the installer.
To check the value of environment variables, use the env command. This command displays all the currently defined environment variables and their values.
% env
If you use the su command to switch users (for example, switching from the root user to the oracle user), check the environment variables when you are the new user because the environment variables may not be passed to the new user. This can happen even if you run su with the - parameter (su - user).
# /* root user */ #su - oracle%env
It does not matter if these environment variables are set or unset when you start the installer because the installer unsets these environment variables.
Edit the PATH, CLASSPATH, and LD_LIBRARY_PATH environment variables so that they do not reference any Oracle home directories.
Set the DISPLAY environment variable to point to the X server that displays the installer. The format of the DISPLAY environment variable is:
hostname:display_number.screen_number
Example (C shell):
% setenv DISPLAY test.mydomain.com:0.0
Example (Bourne or Korn shell):
$ DISPLAY=test.mydomain.com:0.0; export DISPLAY
You can test the display by running the xclock program:
$ /usr/openwin/bin/xclock &
Oracle Business Intelligence requires a running X server during installation only. The frame buffer X server installed with your operating system requires that you remain logged in and have the frame buffer running during installation. If you do not want to do this, then use a virtual frame buffer, such as X Virtual Frame Buffer (XVFB) or Virtual Network Computing (VNC).
Visit Oracle Technology Network at http://www.oracle.com/technology/products/ for information about obtaining and installing XVFB or other virtual frame buffer solutions. Search OTN for "frame buffer".
During installation, the installer needs to write temporary files to a temporary directory. By default, the temporary directory is /tmp.
If you want the installer to use a directory other than /tmp, set the TMP environment variable to the full path of the alternate directory.
Example (C shell):
% setenv TMP /tmp2
Example (Bourne or Korn shell):
$ TMP=/tmp2; export TMP
If you do not set this environment variable, and the default directory does not have enough space, then the installer displays an error message that says the environment variable is not set. You can either set the environment variable to point to a different directory or free up enough space in the default directory. In either case, you have to restart the installation.
This section describes two requirements:
The TNS_ADMIN environment variable must not be set.
The /etc and the /var/opt/oracle directories must not contain a tnsnames.ora file.
These requirements are necessary to prevent conflicts between the Net configuration files for different Oracle products.
If you need to set TNS_ADMIN or have the tnsnames.ora file in /etc or /var/opt/oracle, perform the following steps before installing Oracle Business Intelligence.
If you have the tnsnames.ora file in /etc or /var/opt/oracle, move the file from these directories to a different directory. Alternatively, you can rename the file.
Make sure the TNS_ADMIN environment variable is not set.
Example (C shell):
% unsetenv TNS_ADMIN
Example (Bourne or Korn shell):
$ unset TNS_ADMIN
After installation, you can merge the contents of the newly created tnsnames.ora file with the existing tnsnames.ora file.
The REPORTS_DEFAULT_DISPLAY environment variable specifies whether to implement the following for Oracle Reports:
Elimination of dependency on DISPLAY
Elimination of dependency on having a valid printer defined for font information
ScreenPrinter (screenprinter.ppd) for surface resolution for images and font information
Advanced Imaging Support
For Oracle Reports, if REPORTS_DEFAULT_DISPLAY=YES, it overrides any value set for the DISPLAY environment variable. For more information about REPORTS_DEFAULT_DISPLAY, see the Oracle Application Server Reports Services Publishing Reports to the Web manual.
|
Note: REPORTS_DEFAULT_DISPLAY is used for Oracle Reports only and is not applicable to the Oracle Application Server installer. The installer continues to use the DISPLAY environment variable even if REPORTS_DEFAULT_DISPLAY is set to YES.
|
The operating system user who installs Oracle Business Intelligence must set (or unset) the environment variables listed in Table 3-9.
Table 3-9 Environment Variable Summary for Microsoft Windows
| Environment variable | Set or Unset |
|---|---|
|
|
Does not matter (the installer unsets these two environment variables). |
|
PATH |
Must not be longer than 1023 characters. |
|
TNS_ADMIN |
Must not be set. |
|
|
Optional. If unset, defaults to |
To set environment variables in Windows:
Display the System control panel.
Windows 2000: Select Start > Settings > Control Panel > System.
Windows 2003: Select Start > Control Panel> System.
Windows XP: Select Start > Control Panel, and then double-click System.
Click the Advanced tab.
Click Environment Variables.
To change the value of a variable, select the variable and click Edit.
The installer unsets the ORACLE_HOME and ORACLE_SID environment variables when you start the installer regardless of whether these environment variables were set or unset.
The PATH environment variable cannot be longer than 1023 characters. Otherwise, the installation may fail.
During installation, the installer needs to write temporary files to a temporary directory. By default, the temporary directory is C:\temp.
If you want the installer to use a directory other than C:\temp, set the TEMP environment variable to the full path of an alternate directory.
If you do not set this environment variable, and the default directory does not have enough space, then the installer displays an error message that says the environment variable is not set. You can either set the environment variable to point to a different directory or free up enough space in the default directory. In either case, you have to restart the installation.
The hosts file for Windows is located at %WINDIR% \system32\drivers\etc\, where %WINDIR% specifies the Windows operating system directory. Typically, it is C:\WINDOWS for Windows 2003, and C:\WINNT for Windows 2000.
The contents of the /etc/hosts (on Solaris) or %WINDIR%\system32\drivers\etc\hosts (on Microsoft Windows) file affect the location of the default Oracle Identity Management realm and the hostname for Oracle Application Server Single Sign-On.
The installer provides alternative methods for you to enter the values that you want without editing the hosts file. For more information, see the Oracle Application Server Installation Guide.
Typically, the computer on which you want to install Oracle Business Intelligence is connected to the network, has local storage to contain the Oracle Business Intelligence installation, has a display monitor, and has a CD-ROM or DVD-ROM drive.
This section describes the procedure to install Oracle Business Intelligence on computers that do not meet the typical scenario. It covers the following cases:
Section 3.13.2, "Installing on Multihomed (Multi-IP) Computers"
Section 3.13.3, "Installing on Computers With Multiple Aliases"
Section 3.13.7, "Copying CD-ROMs or DVD-ROM to Hard Drive, and Installing from the Hard Drive"
Section 3.13.8, "Installing from a Remote CD-ROM or DVD Drive"
Section 3.13.9, "Installing on Remote Computers Using Remote Control Software"
Section 3.13.11, "Running Multiple Instances from One Installation"
Section 3.13.14, "Installing on Computers With Multiple Network Cards"
Note this limitation when running Oracle Business Intelligence on DHCP computers: Oracle Business Intelligence instances on DHCP computers cannot communicate with instances running on other computers. All the instances that need to communicate with each other must run on the same computer. There are no limitations on clients; clients from other computers can access instances running on the DHCP computer, as long as the client computer can resolve the DHCP computer on the network.
Before installing Oracle Business Intelligence on a DHCP computer, perform these steps:
Install a loopback adapter on the DHCP computer.
When you install a loopback adapter, the loopback adapter assigns a local IP for your computer. Having a loopback adapter and a local IP address means that you do not have to run the chgiphost script after installation each time the IP address changes (due to DHCP).
Which Is the Primary Network Adapter?
Windows considers loopback adapters as a type of network adapter. After installing a loopback adapter on your computer, you have at least two network adapters on your computer: your network adapter and the loopback adapter.
Windows must use the loopback adapter as the primary adapter. The primary adapter is determined by the order in which you installed the adapters:
On Windows 2000, the primary adapter is the last adapter installed. You can just install the loopback adapter. However, if you install additional network adapters after installing the loopback adapter, deinstall the loopback adapter and reinstall it.
To install a loopback adapter on the different Windows platforms, see Section 3.13.6, "Installing a Loopback Adapter".
Ping each computer on which you plan to install Oracle Business Intelligence.
Ping the computer from itself, using only the hostname and the fully qualified name.
For example, if you installed a loopback adapter on a computer called mycomputer, check the following:
prompt> ping mycomputer Ping itself using just the hostname. Reply from 10.10.10.10 Returns local IP. prompt> ping mycomputer.mydomain.com Ping using a fully qualified name. Reply from 10.10.10.10 Returns local IP.
Ping the computer from other computers on the network, using only the hostname and the fully qualified name.
In this case, the ping command returns the network IP of the computer.
prompt> ping mycomputer Ping using the hostname. Reply from 139.185.140.166 Returns network IP. prompt> ping mycomputer.mydomain.com Ping using a fully qualified name. Reply from 139.185.140.166 Returns network IP.
If ping fails, then contact your network administrator.
A multihomed computer is associated with multiple IP addresses. This is achieved by having multiple network cards on the computer. Each IP address is associated with a hostname; additionally, you can set up aliases for the hostname. By default, Oracle Universal Installer uses the ORACLE_HOSTNAME environment variable setting to find the hostname. If ORACLE_HOSTNAME is not set and you are installing Oracle Business Intelligence on a computer that has multiple network cards, Oracle Universal Installer determines the hostname by using the first name in the /etc/hosts file (on Solaris) or the hosts file on Microsoft Windows (typically located in DRIVE_LETTER:\WINDOWS\system32\drivers\etc).
Clients must be able to access the computer using this hostname (or using aliases for this hostname). To check, ping the hostname from the client computers using the short name (hostname only) and the full name (hostname and domain name). Both must work.
For information on setting environment variables on Microsoft Windows, see Section 3.11.1, "Setting Environment Variables (on Windows)".
A computer with multiple aliases refers to a computer registered with the naming service under a single IP but with multiple aliases. The naming service resolves any of those aliases to the same computer.
Before installing Oracle Business Intelligence on such computers, you must:
Install a loopback adapter on the computer.
Make sure the loopback adapter is the primary network adapter.
The loopback adapter ensures that when Oracle Business Intelligence queries for the hostname, it always gets the same name (because the queries are done locally). Without the loopback adapter, the queries can return any of the aliases for the computer (because the queries get the response from the naming service).
For information on the method in which Windows determines the primary adapter, see "Which Is the Primary Network Adapter?".
For steps on installing a loopback adapter, see Section 3.13.6, "Installing a Loopback Adapter".
You can install Oracle Business Intelligence on a non-networked computer, such as a laptop. Because a non-networked computer has no access to other computers, you must install all the components that you need on the computer.
If you want to install Oracle Business Intelligence on a non-networked computer and do not want to connect the computer to a network after installation, then install Oracle Business Intelligence on your non-networked computer.
|
Note: If you are installing on a non-networked computer, then configure the Common Object Service (COS) naming service to access the Reports Server. For information about configuring the naming service, see the Oracle Application Server Reports Services Publishing Reports to the Web manual. |
However, if you want to connect the computer to a network after installation, perform these steps before installing Oracle Business Intelligence on the non-networked computer.
Install a loopback adapter on the computer. See Section 3.13.6, "Installing a Loopback Adapter".
The loopback adapter and local IP address simulate a networked computer. If you connect the computer to the network, Oracle Business Intelligence uses the local IP and hostname.
Ping the computer from itself, using only the hostname and the fully qualified name.
For example, if you installed a loopback adapter on a computer called mycomputer, check the following:
prompt> ping mycomputer Ping itself using just the hostname. Reply from 10.10.10.10 Returns local IP. prompt> ping mycomputer.mydomain.com Ping using a fully qualified name. Reply from 10.10.10.10 Returns local IP.
|
Note: When you ping a computer from itself, theping command should return the local IP (the IP of the loopback adapter).
|
If ping fails, then contact your network administrator.
Connecting the Computer to the Network After Installation
If you connect the computer to a network after installation, then the Oracle Business Intelligence instance on your computer can work with other instances on the network. Recall that you must have installed a loopback adapter on your computer. Your computer can use a static IP or DHCP, depending on the network to which you are connected.
See the Oracle Application Server Administrator's Guide for details.
If you plan to install Oracle Business Intelligence on a networked computer with static IP and be able to run Oracle Business Intelligence when you disconnect the computer from the network, perform the following steps before installing Oracle Business Intelligence:
Install a loopback adapter on your computer. See Section 3.13.6, "Installing a Loopback Adapter" for details.
Without a loopback adapter, Oracle Business Intelligence cannot function correctly when you disconnect the computer from the network because the static IP is no longer available.
Make sure the loopback adapter is the primary network adapter. See "Which Is the Primary Network Adapter?". To check, ping the computer from itself using (1) the hostname only and (2) the fully qualified name.
For example, if you installed a loopback adapter on a computer called mycomputer, you can run these commands:
prompt> ping mycomputer Ping itself using just the hostname. Reply from 10.10.10.10 Returns loopback adapter IP. prompt> ping mycomputer.mydomain.com Ping using a fully qualified name. Reply from 10.10.10.10 Returns loopback adapter IP.
When you ping a computer from itself, the ping command should return the IP of the loopback adapter. It should not return the network IP of the computer.
These steps are required regardless of whether the computer is using static IP or DHCP. If this is a DHCP computer, you already know you need a loopback adapter; see Section 3.13.1, "Installing on DHCP Computers".
When you disconnect the computer from the network, the computer has no access to any network resources.
A loopback adapter is required if:
You are installing on a DHCP computer (see Section 3.13.1, "Installing on DHCP Computers").
You are installing on a non-networked computer and plan to connect the computer to a network after installation (see Section 3.13.4, "Installing on Non-Networked Computers").
The procedure for installing a loopback adapter depends on the version of Windows:
Section 3.13.6.1, "Checking If a Loopback Adapter Is Installed on Your Computer"
Section 3.13.6.2, "Installing a Loopback Adapter - Windows 2000"
Section 3.13.6.3, "Installing a Loopback Adapter - Windows 2003 / Windows XP"
Section 3.13.6.4, "Removing a Loopback Adapter - Windows 2000 / Windows 2003 / Windows XP"
To check if a loopback adapter is installed on your computer, run the ipconfig /all command:
prompt> ipconfig /all
If there is a loopback adapter installed, you will see a section that lists the values for the loopback adapter. For example:
Ethernet adapter Local Area Connection 2: Connection-specific DNS Suffix . : Description . . . . . . . . . . . : Microsoft Loopback Adapter Physical Address. . . . . . . . . : 02-00-4C-4F-4F-50 DHCP Enabled. . . . . . . . . . . : Yes Autoconfiguration Enabled . . . . : Yes Autoconfiguration IP Address. . . : 169.254.25.129 Subnet Mask . . . . . . . . . . . : 255.255.0.0
Windows 2000 reports on the last network adapter installed. This means that if you install additional network adapters after installing the loopback adapter, remove and reinstall the loopback adapter. The loopback adapter must be the last network adapter installed on the computer.
To install a loopback adapter on Windows 2000:
Select Start > Settings > Control Panel.
Double-click Add/Remove Hardware to start the Add/Remove Hardware wizard. The Welcome page is displayed.
On the Welcome page, click Next to display the Choose a Hardware Task page.
On the Choose a Hardware Task page, select Add/Troubleshoot a Device.
Click Next to display the Choose a Hardware Device page.
On the Choose a Hardware Device page, select Add a new device.
Click Next to display the Find New Hardware page.
On the Find New Hardware page, select No, I Want to Select the Hardware from a List.
Click Next to display the Hardware Type page.
On the Hardware Type page, select Network Adapters.
Click Next to display the Select Network Adapter page.
On the Select Network Adapter page:
Select Microsoft from the Manufacturers list.
Select Microsoft Loopback Adapter from the Network Adapter list.
Click Next to display the Start Hardware Installation page.
On the Start Hardware Installation page, click Next to display the Completing the Add/Remove Hardware Wizard page.
On the Completing the Add/Remove Hardware Wizard page, click Finish.
Right-click My Network Places on the desktop and choose Properties. This displays the Network and Dial-up Connections control panel.
Right-click the connection that was just created. This is usually Local Area Connection 2. Choose Properties.
On the General tab, select Internet Protocol (TCP/IP), and click Properties.
In the Properties dialog box (Figure 3-3), enter the following values:
IP Address: Enter a non-routable IP for the loopback adapter. The following non-routable addresses are recommended:
192.168.x.x (x is any value between 1 and 255)
10.10.10.10
Subnet mask: Enter 255.255.255.0.
Leave all other fields empty.
Click OK.
Figure 3-3 Internet Protocol (TCP/IP) Properties Dialog Box Showing Values for the Loopback Adapter
Click OK in the Local Area Connection 2 Properties dialog box.
Reboot the computer.
Add a line to the C:\winnt\system32\drivers\etc\hosts file with the following format:
IP_address hostname.domainname hostname
This line should come after the localhost line in the file.
Replace IP_address with the non-routable IP address you entered in step 19.
Replace hostname and domainname with the appropriate values.
Example:
10.10.10.10 mycomputer.mydomain.com mycomputer
Check the network configuration:
Open the System control panel, and select the Network Identification tab. In Full Computer Name, make sure you see the host name and the domain name (Figure 3-4).
Figure 3-4 System Control Panel, Network Identification Tab
Click Properties. In Computer name, you should see the host name, and in Full Computer Name, you should see the hostname and domain name (Figure 3-5).
Figure 3-5 Identification Changes Dialog Box
Click More. The domain name is displayed in the Primary DNS Suffix of This Computer field as displayed in Figure 3-6.
Figure 3-6 DNS Suffix and NetBIOS Computer Name Dialog Box
To install a loopback adapter on Windows 2003 or Windows XP:
Select Start / Control Panel.
Double-click Add Hardware. This starts the Add Hardware wizard.
On the Welcome page, click Next to display the Is the Hardware Connected page.
On the Is the Hardware Connected? page, select Yes, I Have Already Connected the Hardware.
Click Next to display the The Following Hardware is Already Installed on Your Computer page
On the The Following Hardware is Already Installed on Your Computer page, select Add a new hardware device.
Click Next to display the The Wizard Can Help You Install Other Hardware page.
On the The Wizard Can Help You Install Other Hardware page, select Install the Hardware That I Manually Select From a List.
Click Next to display the From the List Below, Select the Type of Hardware You Are Installing page.
On the From the List Below, Select the Type of Hardware You Are Installing page, select Network adapters.
Click Next to display the Select Network Adapter page.
On the Select Network Adapter page:
From the Manufacturer list, select Microsoft.
From the Network Adapter list, select Microsoft Loopback Adapter.
Click Next to display the The Wizard is Ready to Install Your Hardware page.
On the The Wizard is Ready to Install Your Hardware page, click Next to display the Completing the Add Hardware Wizard page.
On the Completing the Add Hardware Wizard page, click Finish.
(Windows 2003 only) Reboot your computer.
Right-click My Network Places on the desktop and choose Properties. This displays the Network Connections control panel.
Right-click the connection that was just created. This is usually Local Area Connection 2. Choose Properties.
On the General tab, select Internet Protocol (TCP/IP), and click Properties.
In the Properties dialog box (Figure 3-3), enter the following values:
IP Address: Enter a non-routable IP for the loopback adapter. The following non-routable addresses are recommended:
192.168.x.x (x is any value between 1 and 255)
10.10.10.10
Subnet mask: Enter 255.255.255.0.
Leave all other fields empty.
Click OK.
Click OK in the Local Area Connection 2 Properties dialog box.
Reboot the computer.
Add a line to the C:\windows\system32\drivers\etc\hosts file with the following format:
IP_address hostname.domainname hostname
This line should come after the localhost line in the file.
Replace IP_address with the non-routable IP address you entered in step 20.
Replace hostname and domainname with the appropriate values.
Example:
10.10.10.10 mycomputer.mydomain.com mycomputer
Check the network configuration:
Open the System control panel, and select the Computer Name tab. In Full Computer Name, make sure you see the host name and the domain name.
Click Change. In Computer Name, you should see the host name, and in Full Computer Name, you should see the hostname and domain name (Figure 3-5).
Click More. In Primary DNS Suffix of This Computer, you should see the domain name (Figure 3-6).
To remove the loopback adapter on Windows 2000 or Windows XP:
Display the System control panel.
Windows 2000: Select Start / Settings / Control Panel, then double-click System.
Windows 2003: Select Start / Control Panel / System.
Windows XP: Select Start / Control Panel, then double-click System.
On the Hardware tab, click Device Manager.
In the Device Manager window, expand Network adapters. You should see Microsoft Loopback Adapter.
Right-click Microsoft Loopback Adapter and select Uninstall.
Instead of installing from the Oracle Business Intelligence CD-ROMs or DVD-ROM, you can copy the contents of the CD-ROMs or DVD-ROM to a hard drive and install from the hard drive. This might be easier if you plan to install many instances of Oracle Business Intelligence on your network, or if the computers on which you want to install Oracle Business Intelligence do not have CD-ROM or DVD-ROM drives.
You can also install from remote CD-ROM or DVD-ROM drives. See Section 3.13.8, "Installing from a Remote CD-ROM or DVD Drive".)
When you install from the hard drive, the installer does not prompt you to swap CD-ROMs. It can find all the files if they are in the proper locations.
Accessing the Hard Drive from Other Computers
If you want to install Oracle Business Intelligence on remote computers from the hard drive where you copied the contents of the CD-ROM or DVD-ROM, perform the following steps:
On the local computer, share the hard drive.
On the computers where you want to install Oracle Business Intelligence, map to the shared hard drive.
Run the installer from the remote computers on which you want to install Oracle Business Intelligence.
Note that you have to use the drive letter for the mapped drive to access the installer (for example, H:\orawinfrs_10_1_2\setup.exe).
You cannot use the universal naming convention (UNC) syntax (\\hostname\sharename) to access the installer.
To Copy the CD-ROMs:
Create a parent directory (for example, orasolfrs, orawinfrs) and, under the parent directory, create subdirectories called Disk1, Disk2, and so on. The names of the subdirectories must be DiskN, where N is the CD-ROM number.
Copy the contents of each CD-ROM into the corresponding directory.
prompt> cp -pr /cdrom_mount_point/10.1.2disk1/* /path/to/hard/drive/Disk1/ prompt> cp -pr /cdrom_mount_point/10.1.2disk2/* /path/to/hard/drive/Disk2/ ... Repeat for each CD-ROM.
You can copy the files using Windows Explorer or the command line. If you are using the command line, you can use the xcopy command.
The following example assumes E: is the CD-ROM drive, and C:\orawinfrs\DiskN are the directories that you want to copy the CD-ROMs to.
E:\> xcopy /e /i E:\1012disk1 C:\orawinfrs\Disk1 E:\> xcopy /e /i E:\1012disk2 C:\orawinfrs\Disk2 ... Repeat for each CD-ROM.
To run the installer from the copied files, invoke the runInstallersetup.exe executable from the Disk1 directory. Run it from the computer that will be running Oracle Business Intelligence.
prompt> /path/to/hard/drive/Disk1/runInstaller
C:\> cd orawinfrs\Disk1 C:\orawinfrs\Disk1> setup.exe
To Copy the orasolfrsorawinfrs Directory from the DVD-ROM
Copy the orasolfrs directory from the DVD-ROM to your hard disk.
prompt> cp -pr /dvd_mount_point/orasolfrs /path/to/hard/drive
You can copy the orawinfrs directory using Windows Explorer or the command line. If you are using the command line, here are the steps:
(optional) Create a directory to contain the orawinfrs directory.
Copy the orawinfrs directory from the DVD to your hard disk.
The example assumes E: is the DVD-ROM drive, and C:\orawinfrs is the destination directory:
E:\> xcopy /e /i E:\orawinfrs C:\orawinfrs
To run the installer from the copied files, invoke the runInstallersetup.exe executable from the computer that will be running Oracle Business Intelligence:
prompt> /path/to/hard/drive/orasolfrs/runInstaller
C:\> cd orawinfrs C:\orawinfrs> setup.exe
If the computer on which you want to install Oracle Business Intelligence does not have a CD-ROM or DVD drive, you can perform the installation from a remote CD-ROM or DVD drive. Check that you have performed these steps:
You need to share the remote CD-ROM or DVD-ROM drive through NFS.
On the remote computer that has the CD-ROM or DVD-ROM drive:
CD-ROM: Insert Oracle Business Intelligence Disk 1 into the CD-ROM drive.
DVD-ROM: Insert the Oracle Business Intelligence DVD-ROM into the DVD-ROM drive.
Share the CD-ROM or DVD-ROM drive.
CD-ROM:
prompt> su Password: root_password # share -F nfs -o ro /cdrom/disk1
The path /cdrom/disk1 specifies the path to the CD-ROM in the CD-ROM drive. You can use any path you like.
DVD-ROM:
prompt> su Password: root_password # share -F nfs -o ro /cdrom
The path /cdrom specifies the path to the DVD-ROM in the DVD-ROM drive. You can use any path you like.
On the local computer, access the CD-ROM or DVD-ROM and run the installer as follows:
CD-ROM:
prompt> /net/remote_computer_hostname/cdrom/disk1/runInstaller
DVD-ROM:
prompt> /net/remote_computer_hostname/cdrom/orasolfrs/runInstaller
Replace remote_computer_hostname with the name of the remote computer.
This bullet point, switching CD-ROMs, does not apply to DVDs.
When the installer prompts you to switch CD-ROMs, you need to unshare the CD-ROM drive, eject the CD-ROM, insert the requested CD-ROM, and share the CD-ROM drive again. If you do not unshare, you will not be able to eject the CD-ROM.
|
Note: The installer must be running when you are switching CD-ROMs. Do not exit the installer when switching CD-ROMs. If you exit the installer, it is unable to continue from where it left off. In addition, the partial installation that it created is not usable, and may need to be removed manually. |
On the remote computer (which has the CD-ROM drive):
prompt> su Password: root_password # unshare /cdrom/disk1 # eject cdrom ... Remove the CD-ROM, and insert the CD-ROM requested by the installer (for ... example, Disk 2). ... Share the CD-ROM. # share -F nfs -o ro /cdrom/disk2
On the Remote Computer, Share the CD-ROM or DVD Drive
The remote CD-ROM or DVD drive that you want to use must allow shared access. To set this up, perform these steps on the remote computer (the computer that has the CD-ROM or DVD drive):
Log on to the remote computer as an Administrator user.
Start up Windows Explorer.
Right-click the CD-ROM or DVD drive letter and choose Sharing (Windows 2000) or Sharing and Security (Windows 2003, Windows XP).
On the Sharing tab (Figure 3-7):
Select Share this folder.
Share name: Give it a share name such as cdrom or dvd. You will use this name when you map the CD-ROM or DVD drive on the local computer. See step d.
Click Permissions. The user who accesses this folder to install Oracle Business Intelligence will need at least read permission.
Click OK when done.
CD-ROM: Insert Oracle Business Intelligence Disk 1 into the CD-ROM drive.
DVD: Insert the Oracle Business Intelligence DVD into the DVD drive.
On the Local Computer, Map the CD-ROM or DVD Drive
Perform these steps on the local computer to map the CD-ROM or DVD drive and to run the installer:
Map the remote CD-ROM or DVD drive.
Start up Windows Explorer on the local computer.
Select Tools > Map Network Drive. This displays the Map Network Drive dialog box.
Select a drive letter to use for the remote CD-ROM or DVD drive.
In Folder, enter the location of the remote CD-ROM or DVD drive using the following format:
\\remote_hostname\share_name
Replace remote_hostname with the name of the remote computer with the CD-ROM or DVD drive.
Replace share_name with the share name that you entered in step 4.
Example: \\computer2\cdrom
If you need to connect to the remote computer as a different user, click Different User Name, and enter the username.
Click Finish.
Run the installer from the mapped CD-ROM or DVD drive.
When the installer prompts you to switch CD-ROMs, eject the CD-ROM and insert the requested CD-ROM.
|
Note: The installer must be running when you are switching CD-ROMs. Do not exit the installer when switching CD-ROMs. If you exit the installer, it is unable to continue from where it left off. In addition, the partial installation created is not usable and may need to be removed manually. |
You can run the installer on a remote computer (remote_computer), but have the installer screens display on your local computer (local_computer). The installer installs Oracle Business Intelligence on the remote computer.
Allow remote_computer to display on local_computer. Run this command on the local computer's console.
local_computer> xhost +remote_computer
If you do not run xhost, you may get an Xlib error similar to "Failed to connect to server", "Connection refused by server," or "Can't open display" when starting the installer.
On local_computer, perform a remote login (using telnet or rlogin) to remote_computer. Log on as the oracle user, as described in Section 3.8, "Operating System User for Solaris". Ensure that the user has set the environment variables correctly, as described in Section 3.10, "Environment Variables for Solaris".
local_computer> rlogin -l oracle remote_computer.mydomain.com
- OR -
local_computer> telnet remote_computer.mydomain.com
Set the DISPLAY environment variable on remote_computer to point to local_computer.
Example (C shell):
remote_computer> setenv DISPLAY local_computer.mydomain.com:0.0
Example (Bourne or Korn shell):
remote_computer> DISPLAY=local_computer.mydomain.com:0.0; export DISPLAY
Run the installer.
|
Note: You can use a PC X emulator to run the installer if it supports a PseudoColor color model or PseudoColor visual. Set the PC X emulator to use a PseudoColor visual, and then start the installer. Refer to the X emulator documentation for instructions on changing the color model or visual settings. |
If you want to install and run Oracle Business Intelligence on a remote computer (that is, the remote computer has the hard drive and will run Oracle Business Intelligence components), but you do not have physical access to the computer, you can still perform the installation on the remote computer if it is running remote control software such as VNC or Symantec pcAnywhere. You also need the remote control software running on your local computer.
You can install Oracle Business Intelligence on the remote computer in one of these two ways:
If you have copied the contents of the Oracle Business Intelligence CD-ROM or DVD to a hard drive, then you can install from the hard drive.
You can insert the CD-ROM or DVD into a drive on your local computer, and install from the CD-ROM or DVD.
Installing from a Hard Drive
If you have copied the contents of the Oracle Business Intelligence CD-ROM or DVD to a hard drive, then you can install from the hard drive. To install from the hard drive:
Ensure that the remote control software is installed and running on the remote and local computers.
Share the hard drive that contains the Oracle Business Intelligence CD-ROM or DVD.
On the remote computer, map a drive letter to the shared hard drive. Use the remote control software to do this on the remote computer.
Using the remote control software, run the installer on the remote computer. You can access the installer from the shared hard drive.
Installing from a Remote CD-ROM or DVD Drive
You can insert the CD-ROM or DVD into a drive on your local computer, and install from the CD-ROM or DVD. This is similar to the scenario described in Section 3.13.8, "Installing from a Remote CD-ROM or DVD Drive". To install from a remote CD-ROM or DVD:
Ensure that the remote control software is installed and running on the remote and local computers.
On the local computer, share the CD-ROM or DVD drive.
On the remote computer, map a drive letter to the shared CD-ROM or DVD drive. Use the remote control software to do this on the remote computer.
These steps are described in Section 3.13.8, "Installing from a Remote CD-ROM or DVD Drive".
Using the remote control software, run the installer on the remote computer. You can access the installer from the shared CD-ROM or DVD drive.
You cannot install and run Oracle Business Intelligence on Sun computers with standard NFS. You must use a certified NFS-mounted storage system, such as Network Appliance (NetApp) Filers. Oracle Business Intelligence is certified to run on NFS-mounted storage systems.
The NetApp system must be exported to at least the remote install user and remote root user. You can do this using exportfs command:
prompt> exportfs -i /vol/vol1
To check the latest certification list for any updates, visit Oracle Technology Network (http://www.oracle.com/technology).
Oracle Business Intelligence components are intended to be run only on the computer on which they are installed. You cannot run the components on remote computers even though the computers can access the files through NFS.
You can install and run Oracle Business Intelligence in NIS and NIS+ environments. See the Oracle Application Server Installation Guide for more information on these environments.
You may need different character settings for different locales. For Solaris Font Packages for Java, you always need both SUNWi1of and SUNWxwfnt font packages for all locales. You may need additional font packages depending on your locale. For a list of Solaris Font Packages, see http://java.sun.com/j2se/1.4.1/font-requirements.html
If you are installing Oracle Business Intelligence on a computer with multiple network cards, the installer uses the first name in the /etc/hosts file. You may need to re-order the lines in this file so the required hostname appears first. You can change the file back to its original state after installation.
Table 3-10 lists the checks performed by the installer on Solaris:
Table 3-10 Prerequisite Checks Performed by the Installer on Solaris
| Item | Description |
|---|---|
|
CPU |
Checks that the CPU meets the minimum speed requirement. |
|
Operating system version |
See Section 2.2, "Operating system requirements" for supported versions. |
|
Operating system patches |
See Section 2.2, "Operating system requirements" for a list of required patches. |
|
Operating system packages |
See Section 3.3, "Operating System Packages (Solaris)" for a list of required packages. |
|
Operating system kernel parameters |
See Section 3.4, "Kernel Parameters (Solaris)" for a list of required kernel parameters. |
|
Memory |
See Section 2.2, "Operating system requirements" for recommended values. |
|
Swap space |
See Section 2.2, "Operating system requirements" for recommended values. |
|
TMP space |
See Section 2.2, "Operating system requirements" for recommended values. |
|
Instance name |
The installer checks that the computer on which you are installing Oracle Business Intelligence does not already have an instance of the same name. |
|
Oracle home directory name |
The installer checks that the Oracle home directory name does not contain any spaces. |
|
Path to Oracle home directory |
The installer checks that the path to the Oracle home directory is not longer than 127 characters. |
|
Oracle home directory contents |
The installer checks that the Oracle home directory does not contain any files that may interfere with the installation. |
|
Oracle home directory |
You should install Oracle Business Intelligence in a new directory, unless you are expanding middle tier or installing middle tier in an Oracle home that contains Oracle Developer Suite. Here are some examples of installations that are not allowed:
|
|
Port 1521 |
The installer displays a warning if port 1521 is in use by any application, including database listeners of any version. You must stop the application using port 1521, then click Retry in the warning dialog box. If a database listener is using port 1521, you may be able to use it for the metadata repository database. If another application is using port 1521, stop it or configure it to use a different port. Alternatively, you can change the database listener to use a port other than 1521, but you can do this only after installation. See the Oracle Application Server Administrator's Guide for details. |
|
Static port conflicts |
The installer checks the ports listed in the |
|
Monitor |
The installer checks that the monitor is configured to display at least 256 colors. |
|
Display permission |
The installer checks that the user has permissions to display on the monitor specified by the |
|
|
The installer checks that the |
|
|
The There must not be a |
|
Oracle Enterprise Manager directories are writable |
The installer runs this check only if you are expanding a middle tier or reinstalling Oracle Business Intelligence in the same Oracle home. The installer checks that these directories are writable by the operating system user running the installer:
|
|
Oracle Enterprise Manager files exist |
The installer runs this check only if you are expanding a middle tier or if you are reinstalling Oracle Business Intelligence in the same Oracle home. The installer checks that these files exist:
|
Table 3-11 lists the checks performed by the installer on Microsoft Windows:
Table 3-11 Prerequisite Checks Performed by the Installer on Microsoft Windows
| Item | Description |
|---|---|
|
User |
The installer checks that the user has administrative privileges. |
|
Processor |
See Section 2.2, "Operating system requirements" for the processor speed requirements. |
|
Monitor |
The installer checks that the monitor is configured to display at least 256 colors. |
|
Operating system version |
See Section 2.2, "Operating system requirements" for supported versions. |
|
Windows service pack |
See Section 2.2, "Operating system requirements" for supported service packs. |
|
Memory |
See Section 2.2, "Operating system requirements" for recommended values. |
|
Total pagefile (virtual memory) size |
See Section 2.2, "Operating system requirements" for recommended values. |
|
Space in TEMP directory |
See Section 2.2, "Operating system requirements" for recommended values. |
|
Instance name |
The installer checks that the computer on which you are installing Oracle Business Intelligence does not already have an instance of the same name. |
|
Oracle home directory name |
The installer checks that the Oracle home directory name does not contain any spaces. |
|
Path to the Oracle home directory |
The installer checks that the path to the Oracle home directory is not longer than 127 characters. |
|
Oracle home directory contents |
The installer checks that the Oracle home directory does not contain any files that may interfere with the installation. |
|
Oracle home directory |
You should install Oracle Business Intelligence in a new directory. Here are some examples of installations that are not allowed:
|
|
Static port conflicts |
The installer checks the ports listed in the |
|
Oracle Enterprise Manager directories are writable |
The installer runs this check only if you are expanding a middle tier or if you are reinstalling Oracle Business Intelligence in the same Oracle home. The installer checks that these directories are writable by the operating system user running the installer:
|
|
Oracle Enterprise Manager files exist |
The installer runs this check only if you are expanding a middle tier or if you are reinstalling Oracle Business Intelligence in the same Oracle home. The installer checks that these files exist:
|