This section provides notes on installing an application server as a component of the operation test environment.
Microsoft Visual C++ 2005 Redistributable Package
Microsoft Visual C++ 2005 Redistributable Package is required for using the application server. If the package has not been installed on your computer, the installer of this product automatically installs the package.
Do not uninstall Microsoft Visual C++ 2005 Redistributable Package while this product is used.
Installation destination file system
The application server must be installed in NTFS. When installing the application server, specify an NTFS folder as the installation destination of this product.
When Windows(R) 8.3 format (short name) path generation is disabled
The application server must be installed in an environment in which 8.3 format file name path generation is enabled. If the application server is installed in an environment in which 8.3 format file name path generation is disabled, it may not be possible to start the service.
Use the following procedure to check that the 8.3 format file name path generation is enabled. If it is disabled, enable it before installing the application server.
Check the following registry value:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem\NtfsDisable8dot3NameCreation
0: Enabled
1: Disabled
If the registry setting is "1 (disabled)", change it to "0 (enabled)", then restart the computer.
Install the Application Server of this product.
Execute the following command and check the value displayed in disable8dot3:
C:\> fsutil behavior query disable8dot3 disable8dot3 = 0
0: Enabled
1: Disabled
If the disable8dot3 setting is "1 (disabled)", change it to "0 (enabled)" then restart the machine.
C:\> fsutil behavior set disable8dot3 0
Install the Application Server of this product.
Characters recommended for the host name
Use the following characters for the host name:
Uppercase (A to Z)
Lowercase (a to z)
Numbers (0 to 9) (*1)
Hyphens ('-') (*2)
Periods ('.') (*2)
*1: Numbers cannot be used after the last periods of the host name.
*2: Hyphens and periods cannot be used as the first character of the host name. Additionally, periods cannot be specified at the end of the host name.
Characters used in the host name must not violate RFC2396.
If an underscore "_" or other characters that are not recommended are used in the host name, after installation is completed, the message 'IS: ERROR: is40003: Could not connect to Interstage JMX service' will be displayed when you log in to the Interstage Management Console, and Interstage will not be able to operate.
Interstage data store
The Interstage data store service is also installed when the application server is installed. Note the following points:
If the user account (oms) for accessing repositories has not been registered in the system, a new oms user account is created.
The initial value of the port number used by Interstage data store services is [9700].
To change the initial value of the port number used by Interstage data store services, change it to a number that is not being used by another application or Interstage data store data store using the following command:
..
%IS_HOME%\Enabler\server\bin\omschangeport.exe -u "New port number"
..
To change the Interstage data store services port number, the following conditions must be met:
- A Interstage data store service must be running
- The Interstage Directory Service repository must not be running
The port number used by the Interstage data store service is defined in the file below. The value defined in "OMS_SERVICE=" is the port number used by the Interstage data store service.
..
%IS_HOME%\Enabler\server\param\enabler.conf
..
The initial value of the port number used by the repository is a number from 6000 to 65535 that is not being used when the repository is generated. If you want to change the port number used by the repository from the initial value, use the method below to change it to a port number that is not being used by other applications or by other data stores of Interstage data store.
..
%IS_HOME%\Enabler\server\bin\omschangeport.exe "Repository name" -pn "New port number"
..
The port numbers being used by the data stores of Interstage data store can be checked using the method below.
..
%IS_HOME%\Enabler\server\bin\omslist.exe -l
[Example]
-------------------------------------------
rep001: server=host01 port=6000 XF
rep002: server=host01 port=6001 XF
-------------------------------------------
The "port" value is the port number being used by the data store of Interstage data store.
..