Hitachi

JP1 Version 12 JP1/Base User's Guide


JP1/Base administrator console (for Windows)

Organization of this page

Overview of the JP1/Base administrator console

JP1/Base provides a number of administrator commands that require the administrator privilege to execute the commands. The JP1/Base administrator console can be used as the command prompt to execute the administrator commands. If User Account Control (UAC) for Windows is enabled, you must execute the command from the administrator console.

Starting the administrator console

From the Windows Start menu, choose Programs, JP1_Base, and then JP1_Base Console.

Stopping the administrator console

Enter the exit command from the command prompt, or click the Close button (X).

Customizing the behavior

You can customize the configuration to be used when starting the JP1/Base administrator console to set an environment variable or change a current path by editing the profile batch program provided by the JP1/Base administrator console.

The profile batch program is located in installation-folder\conf\jbsadmin\profile.bat.

Default contents of the profile batch program:
@echo off
 
rem #--------------------------------------------------------
rem # In this space you can set the profile information (such as an environment variable)
rem # for the administrator console of JP1/Base.
rem #--------------------------------------------------------
 
echo JP1/Base - Administrator Console
 
@echo on

For example, to specify logical for the environment variable JP1_HOSTNAME, enter the following definition in the profile batch program file:

@echo off
 
rem #--------------------------------------------------------
rem # In this space you can set the profile information (such as an environment variable)
rem # for the administrator console of JP1/Base.
rem #--------------------------------------------------------
 
echo JP1/Base - Administrator Console
set JP1_HOSTNAME=logical
 
@echo on