If the remote UNIX machine you are connecting to uses LDAP authentication which is not supported by the DevHub daemon, the only way to launch a server on the remote host is to use a Secure Shell daemon process to do this.
This type of connection also has the following benefits:
To configure and establish a connection to a remote host using an SSH daemon process:
This opens the New dialog box.
This opens the New Connection dialog box.
This opens the Processes page.
The default command, provided that Java is on your PATH variable, is:
sh -c "/opt/microfocus/EnterpriseDeveloper/remotedev/startdoserver ${port}" &
The ${port} is replaced with the port (or port range) you specify in the Server port, replaces ${port} in command field.
The full command that takes into account the case when Java is not on your PATH variable and Enterprise Developer is not installed in the default location is:
sh -c "PATH=java install directory/bin:$PATH; export PATH; COBOL install directory/remotedev/startdoserver [<port> | <low port>-<high port>] " &
Where:
For example,
$COBDIR/remotedev/startdoserver 4999 &
This command will start a server listening on port 4999.
$COBDIR/remotedev/startdoserver 0 &
A value of 0 for <port> indicates the command will start a server listening on an allocated port.
For example,
$COBDIR/remotedev/startdoserver 4090-4999 &
This command will start a server listening on an available port in the range 4090 to 4999.