Installing on Linux


dbWatch Server Prerequisites

Installation of dbWatch on Linux requires X11 for the graphical installation. Installation executable will fallback to console installation if X11 is not available, otherwise console installation is available with -c switch after executable.

dbWatch Engine Prerequisites

dbWatch Client Prerequisites

Download

To download Control Center, register your email and you will be redirected to our landing page. Click the link to be redirected to the Control Center’s installer page: “dbWatch Control Center Release”: Download latest dbWatch Control Center by registering here

Step by step installation

Installation steps

Special considerations on some Linux distributions

If you are not using IPV6 and want to use IPV4, you will need to disable IPV6 on the Linux server running dbWatch Server.

To disable ipv6 on Ubuntu 20.04 LTS:
Edit /etc/default/grub and append ipv6.disable=1 to GRUB_CMDLINE_LINUX and GRUB_CMDLINE_LINUX_DEFAULT.

GRUB_CMDLINE_LINUX_DEFAULT="ipv6.disable=1"
GRUB_CMDLINE_LINUX="ipv6.disable=1"

and then update-grub

Then add the following lines in /etc/sysctl.conf

net.ipv6.conf.all.disable_ipv6=1
net.ipv6.conf.default.disable_ipv6=1
net.ipv6.conf.lo.disable_ipv6=1

And reboot.

You can also disable ipv6 in netplan with the entry link-local: [ ipv4 ]: cat /etc/netplan/50-cloud-init.yaml

# This file is generated from information provided by
 # the datasource.  Changes to it will not persist across an instance.
 # To disable cloud-init's network configuration capabilities, write a file
 # /etc/cloud/cloud.cfg.d/99-disable-network-config.cfg with the following:
 # network: {config: disabled}
 network:
     ethernets:
         ens160:
             link-local: [ ipv4 ]
             dhcp4: true
     version: 2

Once it is installed, the next step is Initial domain setup