mfdepinst command

Installs the service interface contained in a deployment package (.car) file to an enterprise server.
Restriction: This topic applies only when the Enterprise Server feature is enabled.

The mfdepinst command handles the server-side part of the process of deploying a service to an enterprise server. The tool installs the files contained in a .car to an enterprise server instance by extracting the deployment package files (.int, .idt, etc.) from the .car file, updating the Directory Service directory for the new services and packages, and if the enterprise server is running, informs it of the new services so they are available for use.

Syntax:

mfdepinst [install-options] myservice.car

Parameters:

myservice.car
The name of the .car file containing the service to be deployed.
install-options
install-options enable you to modify the installation. These options will override any settings specified in an .mfdeploy file. The available options are:
-m location
Set MFDS location
-s
Log to stderr rather than to a deploylog.txt file.
-u
Enable updates to existing services.
-- environment name=value
Set an environment variable.
--server name
Specify a server name.
--listener name
Specify a listener name.
--username name
Specify a username for connecting to MFDS.
--password password
Specify a password for connecting to MFDS.

Dependencies:

Run mfdepinst from a Visual COBOL command prompt from the same directory that contains the .car file.

You can specify mfdepinst installation options in one of the following ways:

  • Specify any required install-options at the command line. This method was first introduced in release 6.0.
  • Add an .mfdeploy file in the parent directory of the directory that contains the .car file (../.mfdeploy).

    If using .mfdeploy, before running mfdepinst, copy the .mfdeploy file in the %ProgramFiles(x86)%\Micro Focus\Visual COBOL\deploy to the parent directory of the directory that contains the .car file.

Important: If both methods are used, the install-options specified at the command-line options will override the settings in the .mfdeploy file.

Comments:

The mfdepinst command extracts files from the .car file and installs them on the enterprise server specified as specified using install-options at the command line or in an .mfdeploy file in the parent directory (../.mfdeploy).

The .mfdeploy file specifies the location, name, and listener for the enterprise server to which the service interface is deployed. So, for example, if the .car file is in %COBDIR%\myservice\myservice.deploy , the .mfdeploy file must be in %COBDIR%\myservice .

Edit .mfdeploy as necessary to specify values other than the default values.

mfdepinst records its progress in the file deploylog.txt in the current directory, overwriting any existing deploylog.txt. After mfdepinst completes, you can examine this file to find out if deployment succeeded.

You can set the mfdepinst security credentials in the .mfdeploy file in the deployment parent directory. The mfdepinst command does not allow you to set any security credentials as command-line options. The credentials are set as name-value pairs, as follows:
MFDS_USER=username
MFDS_PASSWORD=password
Note: Name-value pairs are case-sensitive.

Beginning with Visual COBOL 5.0, the .mfdeploy file supports an extended syntax and additional settings. See the associated related reference topic for more information.