Dbvisit Standby Agent - Dbvagent

1. Introduction

This section will contain an overview of the Dbvisit Standby Agent - dbvagent.  


Dbvagent

(Dbvisit Agent)

The Dbvisit Agent is used to manage the Standby core background processes as well as managing the communication between the Dbvserver (Web-based interface) and the Dbvisit Standby core.

  • dbvagent - The main Dbvisit Agent executable, and is used to start/stop the Dbvisit Agent.
  • The Dbvisit Agent (dbvagent) is introduced in Dbvisit Standby version 8
  • This agent is the link between the Central Console and the Dbvisit Standby Core which must be installed on each database server (primary and standby)
  • The Dbvisit Agent has a small footprint and is listening for secure connections on port 7891 from the Central Console
  • All communication with the Central Console is secure and encrypted
  • The Dbvisit Agent and Central console do not have to be used - some users might only want to use the Command Line Interface (Standby Core) which does not require the Central Console or the Dbvisit Agent. In this case, the Dbvisit Agent does not have to be installed or can be left shutdown.
  • The Dbvisit Agent is compulsory to run on a host to be managed by the Dbvisit Standby Central Console
  • A small repository is used to keep track of tasks being executed from the Central Console

On this page:


2.  Starting The Agent (dbvagent)

Starting the Dbvisit Agent - dbvagent can easily be done by running the following commands:

  • For Dbvagent:  ./dbvagent -d start from the DBVISIT_BASE/dbvagent directory.  


Once the command is executed, you can use the "ps -ef|egrep 'dbvagent' | grep -v grep" command to show the process running.


Example - Starting Dbvagent:

[oracle@dbv101 dbvisit]$ cd dbvagent
[oracle@dbv101 dbvagent]$ ls
conf  dbvserver  doc  log
[oracle@dbv101 dbvagent]$ ./dbvagent -d start
[oracle@dbv101 dbvagent]$ ps -ef|grep dbvagent|grep -v grep
oracle     120     0  0 11:09 ?        00:00:00 ./dbvagent -d start


3.  Stopping The Agent (dbvagent)

Stopping the agent can easily be done by running the following command:

  • For Dbvagent:  ./dbvagent -d stop from the DBVISIT_BASE/dbvagent directory.  

Once the command is executed, you can use the "ps -ef|egrep 'dbvagent' | grep -v grep" command to show the process running.


Example - Stopping Dbvagent:

[oracle@dbv101 dbvisit]$ cd dbvagent
[oracle@dbv101 dbvagent]$ ls
conf  dbvserver  doc  log
[oracle@dbv101 dbvagent]$ ./dbvagent -d stop
[oracle@dbv101 dbvagent]$ ps -ef|grep dbvagent|grep -v grep
[oracle@dbv101 dbvagent]$