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 starts the New Connection wizard.
This opens the Processes page.
The default command, provided that Java is on your PATH variable, is:
sh -c "/opt/microfocus/VisualCOBOL/remotedev/startdoserver 0"
The full command that takes into account the case when Java is not on your PATH variable and Visual COBOL 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 a random 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.