> ## Documentation Index
> Fetch the complete documentation index at: https://docs-v2.ard.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Volume Status Example

> Example output of gluster volume status command

## Example Output

```bash theme={null}
# gluster volume status

Status of volume: gv0
Gluster process                             TCP Port  RDMA Port  Online  Pid
------------------------------------------------------------------------------
Brick n01.modms:/brick/gluster              55071     0          Y       2278
Brick n02.modms:/brick/gluster              55031     0          Y       4706
Self-heal Daemon on localhost               N/A       N/A        Y       3260108
Self-heal Daemon on n02.modms               N/A       N/A        Y       4739

Task Status of Volume gv0
------------------------------------------------------------------------------
There are no active volume tasks
```

## Understanding the Output

**Volume Status:**

* `gv0` is the volume name used by ModMS

**Brick Status:**

* `n01.modms:/brick/gluster` - First brick node
* `n02.modms:/brick/gluster` - Second brick node
* `Online: Y` indicates the brick is active and accessible
* `TCP Port` shows the port used for communication

**Self-heal Daemon:**

* Running on both nodes to ensure data consistency
* Automatically repairs inconsistencies between replicas

**Task Status:**

* "There are no active volume tasks" means no ongoing operations

## Related Topics

* [GlusterFS Commands](/data-ai/modms/faq/glusterfs-commands)
* [Volume Info Example](/data-ai/modms/faq/volume-info-example)
