Linux
Pre-requisites​
Check that the host you want to monitor is a supported host type.
DBmarlin supports monitoring of Linux hosts remotely via ssh
. This is typically over TCP port 22 to the sshd
daemon on the target server which needs to be open to allow DBmarlin to connect to it.
You will need either a private key file (PEM formatted) or a username and password to make the connection.
Adding the Host Target​
This is done through the User Interface using the Add Host screen
Troubleshooting​
- Try
ping hostname
from the DBMarlin server to the target host's IP address or name that you are using to see whether the name is resolvable and reachable. - Try
telnet hostname 22
to see whether the ssh port is open and you can establish a connection. If not there could be a firewall blocking. - Try
ssh user@hostname
to see if you can establish an ssh connection to the target using a password. - Try
ssh -i mykeyfile.pem user@hostname
to see if you can establish an ssh connection to the target using a private key file.