Using Dbvisit Standby - Web Based Interface (GUI)
Important
The Dbvisit Standby web interface will be default have http (port 8081) enabled on windows and https (port 8443) on linux.Â
Â
Enable/Disable HTTP or HTTPS
To enable HTTPS on windows edit the dbvserver.conf file in the DBVISIT_BASE/dbvserver/conf/ directory to include the line "servers = https" under the [master] section.
Â
Example to enable HTTPS:
Update this section in the dbvserver.conf file:
... [master] servers = http ### servers = https servers = scheduler ...
to look like this:
... [master] ### servers = http servers = https servers = scheduler ...
Â
To enable both HTTPS and HTTP ensure your master section look like this:
... [master] servers = http servers = https servers = scheduler ...
Having both HTTPS and HTTP enabled will require more resource use from the Dbvserver process
Â
Changing the Web Interface PORT number
The Dbvserver (GUI) default port numbers are:
HTTP - 8081
HTTPS - 8443
Â
These ports can be changed by manually editing the dbvserver.conf file located in DBVISIT_BASE/dbvserver/conf directory.
The sections that will need adjustment is illustrated below:
Â
[http] ### if bind_ip is missing or empty, Dbvserver will listen on all interfaces bind_ip = bind_port = 8081 ... ... bind_port_peer = 8081 ... ... Â [https] ### if bind_ip is missing or empty, Dbvserver will listen on all interfaces bind_ip = bind_port = 8443 ... ... bind_port_peer = 8443
Â
If you want to adjust the HTTP port, then modify the default 8081 port to the new required port. Â It is important that you update the bind_port_peer parameter as well to the port number used by the remote web based server. Â The same process is followed if you want to update the HTTPS port.
Modify this section to the correct port number. Â
Â
IMPORTANT
*** Once the above change is made, you will need to restart the Dbvserver process (Dbvserver Service in Windows)
Â
Â
More details about the use of the Web based interface is covered in this section.