LogoLogo
Ops IntelligenceAsset IntelligenceObservabilityRobotic Data
  • Introduction
  • How it Works
  • Getting Started
  • Glossary
  • Implementer Guide
    • cfxDimensions Installation
      • Hardware and Software
      • cfxDimenions on VMware vSphere
        • Post cfxDimensions VM Installation
      • SSL Certificates Installation
      • cfxDimensions Setup & Install
        • Known Issues
      • cfxDimensions High Availability
        • GlusterFS Operations
        • Minio Operations
        • MariaDB Operations
      • cfxDimensions Start, Stop order
      • Macaw CLI
        • macaw CLI Installation
          • macaw CLI v2.1.17
        • macaw setup
        • macaw infra
        • macaw platform
        • macaw user
        • macaw application
        • macaw status
        • macaw services
        • macaw clambda
        • macaw techsupport
        • macaw backup
        • macaw restore
        • macaw reset
      • Release Notes
        • cfxDimensions v2.0.3
        • cfxDimensions v2.1.17
        • cfxDimensions v2.2.20
    • cfxDimensions Backup & Restore
    • cfxOIA Installation
    • cfxOIA Application Services
    • cfxOIA Release Notes
      • cfxOIA v5.1.5
      • cfxOIA v5.1.5.2
      • cfxOIA v5.1.5.3
      • cfxOIA v6.0.0
      • cfxOIA v6.1.0
  • KEY FEATURES GUIDE
    • Incident Management
      • Incidents Overview
      • Create Incident
      • Incident States
      • Accessing Incident
        • Stack
        • Alerts
        • Metrics & Logs
        • Insights
        • Collaboration
        • Diagnostics
        • Remediation
        • Attachments
        • Activities
      • Incident Actions
    • Alert Management
      • Alerts Overview
      • Alert Analytics
      • Alert States
      • Alert Sources
    • Advanced Alert Configuration
      • Alert Mappings
      • Alert Enrichment
      • Alert Correlation & Suppression
        • Creating and Updating Correlation Policies
        • Creating and Updating Suppression Policies
        • Correlation Recommendations
    • ML Driven Operations
    • Data Exploration
    • RDA (Robotic Data Automation)
      • Accessing UI
      • Sources Addition and Configuration
      • Check Connectivity
      • Proxy Settings
      • Explore
        • Bots
        • Pipelines
        • Schedules
        • Jobs
    • Analytics
  • UI & PORTAL FEATURES GUIDE
    • Filters Management
    • Customizing Table Views
    • Exporting Data
  • Administrator Guide
    • User Roles & RBAC
    • Collaboration
    • Projects
      • How to add Project
      • Configure Project
        • Stacks
        • Incidents
        • Alerts
        • Messages
          • Message Endpoints
            • Rest Data Consumer
            • Kafka Message Consumer
            • ServiceNow SaaS
            • Webhook with Basic Authentication
          • Message Mappings
        • Teams
        • Datasources
        • Resolution Codes
  • INTEGRATIONS GUIDE
    • Integrations Overview
    • Featured Integrations
      • AppDynamics
      • Dynatrace
      • Microsoft Teams
      • NetApp Cluster Mode
      • NetApp 7 Mode
      • Prometheus
      • ServiceNow
      • Slack
      • Splunk Enterprise
      • VMware vCenter
      • Zabbix
      • NodePing
      • Nagios XI
      • Check MK
      • VMware vRealize Operations
      • PRTG Network Monitor
      • Grafana
      • AWS Cloudwatch
      • ManageEngine OpManager
      • PagerDuty
Powered by GitBook
On this page
  1. Implementer Guide
  2. cfxDimensions Installation
  3. cfxDimensions High Availability

GlusterFS Operations

Gluster shared storage filesystem operations

PreviouscfxDimensions High AvailabilityNextMinio Operations

Last updated 4 years ago

This document provides information on how to check and view Gluster shared storage filesystem configured within the cfxDimensions platform.

Run the below command to see Gluster mount point on any of the cfxDimensions platform VM. (Login as 'macaw' user using any SSH client to access the CLI)

The configured Gluster volume name is 'macaw' and it is mounted on all of the cfxDimensions platform VMs as /opt/macaw (Platform, Infrastructure (DB/Data), Application services & cLambda)

df -h

The Gluster volume is configured to mount as /opt/macaw using the below mount options. Please refer /etc/fstab

defaults,backup-volfile-servers=192.168.186.152:192.168.186.153,_netdev,noauto,x-systemd.automount 0 0

backup-volfile-servers: This option is used by the Gluster client while mounting the volume, when the primary Gluster node is not available, it will try backup Gluster node to fetch the volume's metadata and complete the mount operation.

noauto & x-systemd.automount: 'noauto' option is used not to mount during boot-up time automatically. However, it is used along with x-systemd.automount option which enables to mount the Gluster volume automatically on access by client service. This is similar to AutoFS feature of NFS shares.

Login as 'macaw' user into one of the cfxDimensions platform VM on which Gluster is installed. You can get Gluster host information using the below command

macaw status

Gluster Host:

Run the below command to get the container ID of the Gluster service after logging into the host in which it is deployed.

docker ps | grep -i gluster

The below command lists all of the Gluster peer (cluster nodes) members. It should show all three members of the Gluster.

docker exec <gluster-container-id> gluster pool list

The below command provides Gluster volume information which is being configured and used within the cfxDimensions platform.

The configured Gluster volume name is 'macaw' and it is mounted on all of the cfxDimensions platform VMs as /opt/macaw (Platform, Infrastructure (DB/Data), Application services & cLambda)

docker exec <gluster-container-id> gluster volume info

The below command provides Gluster volume 'macaw' status.

docker exec <gluster-container-id> gluster volume status

The below command provides Gluster volume 'macaw' status in detail (verbose).

docker exec <gluster-container-id> gluster volume macaw detail

Below command provides insight into Gluster volume 'macaw' "heal" status when one of the Gluster is rebooted or recovered from a crash.

Gluster node joins the cluster on reboot and syncs the data automatically from it's peer node.

docker exec <gluster-container-id> gluster volume heal macaw info summary