Skip Headers

Oracle Internet File System Installation Guide
Release 9.0.1.1.0 for Microsoft Windows NT/2000

Part Number A85272-03
Go To Table Of Contents
Contents
Go To Index
Index

Go to previous page Go to next page

7
Client Packages Installation

This chapter describes installation of the client packages used with Oracle 9iFS. Various clients are provided for administrators and end users. Topics include:

Installing the Oracle 9iFS Windows Utilities

The Oracle 9iFS Windows Utilities provides users with Microsoft Windows clients access to content management features such as check-in/check-out and versioning.


Note:

Installing the Oracle 9iFS Windows Utilities is not required to connect to Oracle 9iFS through Microsoft Windows. This installation only adds some dialogs and menu options that are not part of a standard Microsoft Windows configuration. Without these utilities, users still have the ability to map to Oracle 9iFS as a network drive or browse to it using Network Neighborhood. 


The Oracle 9iFS Windows Utilities installation package is loaded into the Oracle 9iFS server, in the /ifs/clients/winui directory. To access this directory from a Windows client, users can map a network drive using SMB or use the Network Neighborhood. They can also access this directory using FTP.


Note:

Oracle 9iFS Windows Utilities will prompt users to deinstall any existing version of the utilities. Users must re-boot their PC after deinstallation and before installing Oracle 9iFS Windows Utilities. 


To install the Oracle 9iFS Windows Utilities, users should follow these steps:

  1. Save and exit all Windows applications.

  2. Locate the Setup.exe file in the /ifs/clients/winui/ directory.

  3. Double-click to run the Setup.exe program, or run it from the Run command in the Start Menu.

  4. Follow all instructions and accept the defaults unless your system administrator tells you otherwise.

    By default, the Oracle 9iFS Windows Utilities are installed in the following directory:

    C:\Program Files\Oracle\iFS

    Three required Microsoft components will be installed if they are not already on your system:

    1. Windows Sockets Version 2 (WinSock2)--All Windows platforms after Windows 95 should already have WinSock2 preinstalled with the operating system. The Oracle 9iFS Installer will install WinSock2 on Windows 95 clients that do not already have it.

    2. Common Control 4.0 Upgrade--If your system does not have Microsoft Common Control 4.0, the Oracle 9iFS Installer will install the upgrade. You must select "Yes" when you are asked for whether or not you want to upgrade.

    3. HTML Help 4.0--If your system does not have Microsoft HTML Help 4.0, the Oracle 9iFS Installer will install it. You must select "Yes" when you are prompted to upgrade in order to access the help for Oracle 9iFS Windows Utilities properly.

  5. After you install the Oracle 9iFS Windows Utilities, you must restart the machine.

    Once you've installed the Oracle 9iFS Windows Utilities, the Windows Explorer File menu and the Windows Explorer context menu (right-click menu) will include utilities for advanced Oracle 9iFS features. To view the context menu, right-click a file or folder on an Oracle 9iFS drive.

Accessing Oracle 9iFS through HTTP

To access Oracle 9iFS through HTTP, use the following URL:

http://<server-name>:<port-number>/ifs/files

This URL is required for the following:

Registering the Oracle 9iFS Portlet with Oracle Portal

The Oracle 9iFS portlet is a Portal component that gives users a summary of information about their Oracle 9iFS data. On the portlet, users can see their quotas, initiate a search, list documents or folders, and upload documents. The portlet links to the Oracle 9iFS Web interface.

Oracle Portal administrators can add the Oracle 9iFS portlet to their own installation of Oracle Portal, by registering it as a Web Provider on the portal:

  1. On the portal, click the Administer tab.

  2. In the Provider portlet, click the Add a Portlet Provider link.

  3. Fill out the form to create a Web Provider.

Parameter  Value 

Name 

9iFS 

Display Name 

Oracle 9iFS 

Timeout 

100 

Timeout Message 

9iFS portlet timedout 

Implementation Style 

Web 

Register on Remote Node 

No 

Provider Login Frequency 

Once per User Session 

URL 

http://<hostname>:<port>/ifs/portlet 

Web provider in the same cookie domain as the portal 

Do not check the checkbox.

 

  1. Click OK.

For more instructions on adding the portlet to a portal page see the Oracle Portal documentation.

Figure 7-1 The Oracle 9iFS Portlet


Text description of 5portlet.gif follows.
Text description of the illustration 5portlet.gif

Installing the Oracle 9iFS FileSync Component

The FileSync component provides users with a restricted disconnected client for Oracle 9iFS. This component is only installable on a Windows client PC. To install the FileSync component, users execute the Setup.exe self-installing file located in the /ifs/clients/filesync directory in an Oracle 9iFS repository. They can access this file using SMB, WebFolders, or the Web interface. The steps for users to follow are:

  1. Download the Setup.exe file from /ifs/clients/filesync onto your PC and execute the file. This will install the FileSync component on your local PC.

  2. Click the Oracle 9iFS FileSync program icon, which is on your Start -> Programs program listing.


Note:

In some instances, the conflict resolution screen will have only the Skip option enabled. This indicates a conflict that FileSync does not know how to resolve. For example, a file may have been renamed on the client, while the same file on the server may have been deleted because its parent folder was removed. Syncing this file must be postponed in order for all your other files to be synced normally; this is what the Skip option enables you to do. 


Refer to the online Help facility for details on using FileSync.

Installing the Command Line Client Utilities

The Oracle 9iFS Command Line Client Utilities are available on any machine where Oracle 9iFS has been installed. They can also be installed on a Solaris client or a PC, or by copying a directory from the Oracle 9iFS server to a directory on your local machine.

You can map a network drive using SMB or use the Network Neighborhood on your local machine to access these directories. You can also access these directories using FTP.


Note:

You do not need to perform any of the following tasks if you are not installing the Command Line Utilities on a separate client machine. 


To install the Oracle 9iFS Command Line Utilities:

  1. Change to the directory on your local machine into which you want to place the Command Line Utilities. For example, on a Windows client machine:

    c:\cd cmdline
    

  2. Using the Windows NT/2000 client or FTP software, map a network drive the Oracle 9iFS server. The specific location depends on the client:

For more information on the Command Line Utilities, see the Oracle Internet File System Setup and Administration Guide.

NFS Client Configuration

The Network File System (NFS) protocol is used to provide file sharing between a client machine and a server machine across a network. The NFS protocol is a standard protocol widely used for file sharing on UNIX platforms. Although used primarily on UNIX platforms, the NFS protocol is designed to be operating system-independent and implementations of the NFS protocol exist for other platforms, such as Windows. This section describes how to install NFS clients for the various platforms.

Solaris 2.7, 2.8

If the Oracle 9iFS NFS server is running as the primary NFS server on the host, then a standard mount command can be used to mount Oracle 9iFS.

Syntax:

    mount <host>:<pathname> <mount_point> 

Example:

    mount ifsserver:home /data/ifs 

If the Oracle 9iFS NFS server is not the primary NFS server on the host, then the port number for the Oracle 9iFS NFS server must be explicitly specified. Either of the following two commands can be used to mount a secondary iFS server.

Syntax:

    mount -o port=4049,public <host>:<pathname> <mount_point> 

Example:

    mount -o port=4049,public ifsserver:home /data/ifs 

Syntax:

    mount nfs://<host>:4049/<pathname> <mount_point> 

Example:

    mount nfs://ifsserver:4049/home /data/ifs 

Red Hat Linux 6.2

If the Oracle 9iFS NFS server is running as the primary NFS server on the host, then a standard mount command can be used to mount Oracle 9iFS.

Syntax:

    mount <host>:<pathname> <mount_point> 

Example:

    mount ifsserver:home /data/ifs 

If the Oracle 9iFS NFS server is not the primary NFS server on the host, then the port number for the Oracle 9iFS NFS server and the Oracle 9iFS Mount server must be explicitly specified. The following command can be used to mount a secondary Oracle 9iFS server.

Syntax:

    mount -o port=4049,mountport=4048 <host>:<pathname> <mount_point> 

Example:

    mount -o port=4049,mountport=4048 ifsserver:home /data/ifs 

Hummingbird NFS Maestro 7.0

Before using the Hummingbird NFS Maestro client to access the Oracle 9iFS NFS server, you will need to check that the NFS Maestro client is properly configured.

Configuring Hummingbird NFS Maestro

  1. From the Control Panel, bring up the Network settings.

  2. Find NFS Maestro Client and display its properties. The precise steps for locating the NFS Maestro Client properties will vary depending upon whether you are on Windows 98, Windows NT or Windows 2000. The Hummingbird NFS Maestro Client Properties dialog will be displayed:

Figure 7-2 Hummingbird NFS Maestro Client Properties


Text description of 6nfspro1.gif follows.
Text description of the illustration 6nfspro1.gif
  • Set the Default Authentication to System/UNIX. This is the only authentication method supported by the Oracle 9iFS NFS server.

  • Set the Default Filename Case to Preserve Case.

  • Set the Miscellaneous values as follows:

  • Select the Properties button for System/UNIX authentication to display the Location of the Authentication Server dialog (Figure 7-3).

    Figure 7-3 Location of the Authentication Server


    Text description of 6nfspro2.gif follows.
    Text description of the illustration 6nfspro2.gif
  • Enter the location of the authentication server and click OK. NFS Maestro requires an authentication server to validate that the username and password used when linking to an NFS server is a valid Unix username and password.

    NFS Maestro will first try to access an authentication server on the NFS server machine. If an authentication server is not running on the NFS server machine, NFS Maestro will try to use the default authentication server. Check with your system administrator to determine if you will need to specify a default authentication server.

    Linking an NFS Directory Using the NFS Maestro Network Access Tool

    1. From the NFS Maestro folder, start the NFS Network Access tool. The NFS Network Access dialog displays (Figure 7-4).

    Figure 7-4 NFS Network Access Dialog


    Text description of 6nfs1acc.gif follows.
    Text description of the illustration 6nfs1acc.gif
  • Enter the host name of the Oracle 9iFS NFS server and the pathname in the Network Path field using the following format: \\<host>\<pathname>.

  • In the Authentication Details area, enter the Unix username and password used to access the Oracle 9iFS NFS server. The System/UNIX Authentication choice should be selected as the Authentication Protocol.

  • The Miscellaneous values should be set as follows:

  • Select the Advanced button to bring up the Advanced Connection Properties dialog (Figure 7-5).

    Figure 7-5 Advanced Connection Properties Dialog


    Text description of 6nfs2acc.gif follows.
    Text description of the illustration 6nfs2acc.gif
  • For Filename Case, select Preserve Case.

  • If the Oracle 9iFS NFS server is running as a secondary NFS server, change the NFS Port number from the standard port (2049) to the alternate port number that the Oracle 9iFS NFS server is using.

  • If you want to use a TCP instead of a UDP connection to the NFS server, check the Use TCP box. Note: A TCP connection will always use the standard NFS port (2049). Do not check this box if the Oracle 9iFS NFS server is running on an alternate port.

    Linking an NFS Directory Using the Command Line

    If the Oracle 9iFS NFS server is running as the primary NFS server on the host, then the following NFS Maestro nfs link command can be used to mount Oracle 9iFS.

    Syntax:

        nfs link <drive>: \\<host>\<pathname> <username> 
    
    

    Example:

        nfs link n: \\ifsserver\home scott 
    
    

    If the Oracle 9iFS NFS server is not the primary NFS server on the host, then the port number for the Oracle 9iFS NFS server must be explicitly specified. The following command can be used to mount a secondary Oracle 9iFS server.

    Syntax:

        nfs link <drive>: \\<host>\<pathname> <username> /n:<port_number> 
    
    

    Example:

        nfs link n: \\ifsserver\home scott /n:4049 
    
    

    If no other options are specified, the nfs link command will use the default values configured for the NFS Maestro Client. If the NFS Maestro Client has not been configured for Oracle 9iFS, the following options can be used to set the proper values for the Oracle 9iFS NFS server.

    Troubleshooting

    Mount reports 'NFS service not responding.'

    Check that the correct host name and port number are specified and that the Oracle 9iFS NFS server is running.

    Mount reports 'Permission denied.'

    Check that the host name and pathname are correctly specified. Also check that the correct port is specified for the Oracle 9iFS NFS server. If the Oracle 9iFS NFS server is not on the standard port number then the 'public' option must be specified on Solaris and the mount port must be specified on Linux. Note: The 'public' option is not supported in Solaris 2.6.

    The NFS Maestro client appears to hang.

    If you are using DOS-style sharing and the hclnfsd daemon is not running on the server machine, or you are using UNIX lock manager, the NFS Maestro client will appear to hang or respond very slowly. Uncheck the DOS-style sharing and UNIX lock manager options or specify '/L:' on the command line.

    From a command prompt, enter the command 'nfs use'. This will list your current NFS Maestro mapped drives and their parameters. Check that the locking parameter is '/L:'.

    NFS Maestro reports 'Network Timeout or HCLNFSD/PCNFSD not running on Host.'

    NFS Maestro was unable to connect to the authentication server. Check with the system administrator if the hclnfsd daemon is running or check if the default authentication server is specified correctly. Also, see the troubleshooting section for "NFS Maestro reports 'Bad Network Name.'"

    NFS Maestro reports 'Authorization Error.'

    The username and password may have been specified incorrectly. Make sure that a Unix username and password which are valid on the authentication server are specified.

    NFS Maestro reports 'Bad Network Name.'

    Check that the host name and pathname are correctly specified. If these are correctly specified, then use the NFS Maestro Rpcinfo tools to check if the NFS server, program number 100003, is running on the host. If Rpcinfo does not show an NFS server running on the host, check with the system administrator to see if the NFS server is running.

    NFS Maestro 'nfs link' command hangs.

    Check that the correct host name and port number are specified and that the Oracle 9iFS NFS server is running.

    NFS Maestro reports 'Access denied by server.'

    Check that the correct port number is being used for the Oracle 9iFS NFS server. Note: A TCP connection will always use the standard NFS port (2049). Do not use this option if the Oracle 9iFS NFS server is running on an alternate port.


  • Go to previous page Go to next page
    Oracle
    Copyright © 2001 Oracle Corporation.

    All Rights Reserved.
    Go To Table Of Contents
    Contents
    Go To Index
    Index