mirror of
https://github.com/zabbix/zabbix-docker.git
synced 2025-08-13 18:37:10 +02:00
Updated information about report issues and rootless environments fping usage
This commit is contained in:
@ -48,6 +48,16 @@ Start a Zabbix server container as follows:
|
||||
|
||||
Where `some-zabbix-server-mysql` is the name you want to assign to your container, `some-mysql-server` is IP or DNS name of MySQL server, `some-user` is user to connect to Zabbix database on MySQL server, `some-password` is the password to connect to MySQL server and `tag` is the tag specifying the version you want. See the list above for relevant tags, or look at the [full list of tags](https://hub.docker.com/r/zabbix/zabbix-server-mysql/tags/).
|
||||
|
||||
> [!NOTE]
|
||||
> Zabbix server has possibility to execute `fping` utility to perform ICMP checks. When containers are running in rootless mode or with specific restrictions environment, you may face errors related to fping:
|
||||
> `fping: Operation not permitted`
|
||||
> or
|
||||
> lost all packets to all resources
|
||||
> in this case add `--cap-add=net_raw` to `docker run` or `podman run` commands.
|
||||
> Additionally fping executing in non-root environments can require sysctl modification:
|
||||
> `net.ipv4.ping_group_range=0 1995`
|
||||
> where 1995 is `zabbix` GID.
|
||||
|
||||
## Container shell access and viewing Zabbix server logs
|
||||
|
||||
The `docker exec` command allows you to run commands inside a Docker container. The following command line will give you a bash shell inside your `zabbix-server-mysql` container:
|
||||
|
Reference in New Issue
Block a user