Table of Contents |
---|
Introduction
Dbvisit Standby’s new Network Layer is one of the exciting new features introduced in Dbvisit Standby version 7. Dbvnet’s functionality removes the dependency earlier Dbvisit Standby versions had on SSH for providing network communication between the primary and standby nodes. By making use of Dbvnet no additional SSH software is required to be installed, configured or maintained on Windows. When using UNIX based systems, Dbvisit Standby can now be configured to make use of the new Dbvnet (default option) or if required, SSH is still fully supported by Dbvisit Standby and can be configured and used on Unix based systems only. Password-less SSH authentication must be enabled between the primary and standby nodes if using Dbvisit Standby with SSH as communication layer.
Note |
---|
On Linux (UNIX) based systems, SSH can still be used for communication and file transfer between the primary and standby server. If your network has regular disconnects or is unstable - using SSH is recommended. To revert back to using SSH, ensure that SSH_PORT=22 is specified (SSH user equivalence between the primary and standby must be enabled - passwordless authentication using keys) To disable DBVNET and Enable SSH, the DBVNET_PORT is set to an empty (NULL) value in the DDC file: DBVNET_PORT= Important: This option of using SSH is not available for Windows based systems. Windows based systems must use Dbvnet. |
...
No Format |
---|
oracle@dbvlin101[/usr/dbvisit/dbvnet]: ./dbvnet-test -s dbvlin102:7890
>>> Determining Dbvnet status on server dbvlin102:7890...
Dbvnet on server dbvlin102:7890 is running.
oracle@dbvlin101[/usr/dbvisit/dbvnet]: ./dbvnet-test -f /tmp dbvlin102:7890
>>> Determining Dbvnet status on server dbvlin102:7890...
Dbvnet on server dbvlin102:7890 is running.
>>> Running file transfer round trip on server dbvlin102:7890...
Creating file '/tmp/dbvnet-test.tmp' containing 10 MB of data... - done.
> Transferring 'dbvnet-test.tmp' to server dbvlin102:7890
Progress: 0%...20%...40%...60%...80%...100% [10109 KB/s] - done.
> Retrieving file "dbvnet-test.tmp" from server dbvlin102:7890
Progress: 0%...20%...40%...60%...80%...100% [9669 KB/s] - done.
Comparing checksums: all three checksums (local/remote/local) are
identical. File transfer round trip finished successfully.
|
...
You need to review the banner size (lines) and you can specify: SSH_SKIP_OUTPUT_LINES in the Dbvisit Standby DDC file to tell Dbvisit Standby to ignore these lines.
Example if the SSH Banner looks like this one below, we can see 3 lines are used:
No Format |
---|
######################### # This is server X ######################### |
...
To tell Dbvisit Standby to ignore this banner, set the following value in the DDC file:
No Format |
---|
SSH_SKIP_OUTPUT_LINES=3 |
...