> For the complete documentation index, see [llms.txt](https://docs.h4rithd.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.h4rithd.com/tcp/24007-and-49152-gluster.md).

# Gluster | 24007, 49152

```bash
## ------------------| List avilable volumes
sudo apt install glusterfs-server
sudo gluster --remote-host=<IP> volume info
sudo gluster --remote-host=<IP> volume list
## If you see auth.allow: * , that means that volume has no restrictions 

## ------------------| Mount volumes
sudo mkdir /mnt/new
sudo mount -t glusterfs <IP>:/volume_name /mnt/new
## If mount fail;check log files

## ------------------| Log file
cat /var/log/glusterfs/cli.log
sudo cat /var/log/glusterfs/mnt-new.log
```
