Skip to content

Blobfuse2 health-monitor works with direct blobfuse2 command, but with mount -a gives error executible 'bfusemon' not find in $PATH #1089

Answered by souravgupta-msft
ravina199 asked this question in Q&A
Discussion options

You must be logged in to vote

Hi @ravina199.
Thanks for reaching out. We were able to reproduce this.
LOG_ERR [health-monito.go (113)] failed to start health monitor [exec: "bfusemon" executible file not found in $PATH]
The reason for the above error is that /etc/fstab runs as a system service and does not have access to the $PATH environment variable.
As an alternate solution, you can create a script like below and run it through /etc/fstab.

#!/bin/bash
export PATH="$PATH"
blobfuse2 mount_path --config-file=filename.yml

Let me know if this works out for you.

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by vibhansa-msft
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
2 participants