Docker Commands
Click the link above if you are not automatically redirected in 10 seconds.
Compose CLI (docker-compose) and Docker CLI (docker)
- Important! Mistakes can be made when typing Docker commands. You may want to consider a system backup.
- For additional reference see Compose command-line reference and Docker commands. You can also see this information by running
docker-compose [SUBCOMMAND] --help
from the command line - You will need to be in your GroundWork Monitor 8 installation directory (e.g.,
gw8
) before executing commands.
Commands
GroundWork Monitor commonly used docker and docker-compose commands.
Containers | |
docker ps | |
docker ps -a | List all containers (including not running) |
docker-compose ps | |
docker-compose down | |
docker-compose up -d | |
docker-compose stop <service> | |
docker-compose kill <service> | |
docker-compose up -d <service> | |
docker-compose restart <service> | |
docker-compose exec | |
Logs | |
docker-compose logs --tail=<#> <service> | |
docker-compose logs -f --tail=<#> <service> | |
docker container logs <option> <containerID> | |
docker-compose exec <service> |
Docker Access | |
docker | Verify access to Docker |
docker-compose | Verify access to Docker Compose |
Volumes | |
docker volume ls | List all volumes |
Versions | |
docker -v | Show Docker version |
docker-compose -v | Show Compose version |
Cloud Hub Connections | |
docker-compose exec cloudhub bash -c |
Advanced mode
Configuring the details
In many cases, no additional configuration beyond what is possible in the user interface will be needed. There are, however, some areas of the system that support customizations and tuning. If you are an advanced user, you will need to access these to get the most out of your system. To use these customizations and make tuning changes, you will need to edit some of the files the system uses to control the applications, settings, and parameters.
NeDi example
For example, we ship the NeDi application with no access to the database snapshot interface. If you want to use it, you must change the following line (un-comment) in the file /usr/local/groundwork/config/nedi/nedi.conf
:
from:
#module System Database db adm
to:
module System Database db adm
Generally speaking, you will want to have your GroundWork Monitor 8 system running, and use a docker feature called docker exec to make changes in the containers. Don't try to go around the containers and access the files directly on the file system. The containers are there for your protection, and will help you to be efficient in your editing. This is easily done using the following steps:
Access the command line as the gwos user and change to the gw8 directory:
$ cd gw8
Edit the file with the following command:
docker-compose exec nedi vi /usr/local/groundwork/config/nedi/nedi.conf
This will put you in a vi session on the container.
Search for the module line by typing "/" and a search term, e.g:
/Database
Remove the comment at the start of the module line:
# Database allows direct access to the nedi database. Off by default. module System Database db adm
The file should then be saved, e.g. type:
:wq
Such changes are preserved across upgrades.
NeDi makes immediate use of the changes you make to its settings file. There's no need to restart the container in this case. You are done!
NOT preserved
Many edits, additions and deletions of files are NOT preserved, but will be reverted on upgrades or even on restarts. To be preserved, the changes must occur on a shared volume, such as /usr/local/groundwork/config. This ensures we can provide you with a secure, functional system with minimal instability.
While we are working on adding more ways to configure GroundWork Monitor to the user interface, we expect for the foreseeable future some aspects will require command line editing of configuration files, and possibly the restarting of containers. The following instructions are provided to enable you to make these changes safely and without having to master too many new commands.
Using similar procedures, you can access the bash shell in the nagios
and noma_daemon
containers, for example:
docker-compose exec -u 1000 nagios bash
or
docker-compose exec -u 1000 noma_daemon bash
Using the -u 1000
option puts you in the container as the container's default user (nedi
, nagios
, noma
, etc.). If you leave it out, you will get a root shell, which is not recommended, since you can easily make a change that will leave your container (and perhaps the entire monitoring system) inoperable.
Container directories
The directories you can access will vary by container.
For NoMa:
/usr/local/noma/etc
contains the NoMa.Yaml file that can be customized to add custom methods, for example.
For the Nagios container, the directories:
/usr/local/nagios/etc /usr/local/nagios/libexec
are useful for testing, and custom settings, though we caution against adding custom plugins to your system. They will vanish on upgrade!
A better way is to use GDMA (see GDMA documentation).
The global settings can be configured by making changes to the files in /usr/local/groundwork/config
.
Configuration files available:
- application-users.properties
- check_cacti.conf
- cloudhub-log4j.xml
- cloudhub-logback.xml
- cloudhub.properties
- db.properties
- event-feeder.conf
- foundation-log4j.xml
- foundation.properties
- groundwork.lic
- influxdb.properties
- install.properties
- ldap.properties
- log-archive-receive.conf
- log-archive-send.conf
- menu.json
- perfdata.properties
- register_agent_by_discovery.conf
- register_agent.properties
- statistics-feeder.conf
- status-feeder.properties
- ws_client.properties
- cloudhub-docker-3.xml
In addition, there are subdirectories that contain more files and templates that you can manage:
- /certs
- /cloudhub
- /migrations
- /nedi
- /profiles
- /rstools
- /vema
Comments and backups
The thing to remember is that changing these settings files can affect multiple aspects of the system. Make sure you comment your changes so they are easily reversible, and make regular backups of the system so you can revert the whole thing if you make a catastrophic change.