Upgrading to 7.5
Last updated
Was this helpful?
Upgrading NetObserv Flow Collector to version 7.5 requires installation changes only for Docker users. For Linux users, no changes are required.
For Linux installations, no changes are required.
For Docker installations, an additional volume mount point has been added to support data persistence. This enables the NetObserv Flow Collector to retain its data across container restarts.
The following new volume mount point is required for Docker installation of the NetOberserv Flow Collector:
/var/lib/elastiflow/flowcollThis path is used by the container to persist data across container restarts.
docker-compose.ymlWhen upgrading, update the docker-compose.yml file to include the new mount:
volumes:
- /path/on/host:/var/lib/elastiflow/flowcollReplace /path/on/host with the desired path on your host system where the data should be persisted.
For an example:
volumes:
- /var/lib/elastiflow/flowcoll:/var/lib/elastiflow/flowcollAfter adding the volume mount, ensure the directory on the host system has the correct permissions so the process inside the container can access it. Run the following commands, substituting /path/on/host with the actual path:
This ensures the container user (UID 1000) can read and write to the mounted path.
Last updated
Was this helpful?
Was this helpful?
mkdir -p /path/on/host
chown -R 1000:1000 /path/on/host
chmod -R 755 /path/on/host