---
slug: "goofys-mount-other-user"
title: "When a Volume Mounted with Goofys is Not Visible to Other Users"
description: "If the volume mounted with Goofys is not visible to other users"
url: "https://www.ytyng.com/en/blog/goofys-mount-other-user"
publish_date: "2018-07-11T02:42:16Z"
created: "2018-07-11T02:42:16Z"
updated: "2026-02-27T07:52:59.279Z"
categories: []
keywords: ""
featured_image_url: "https://media.ytyng.com/resize/20260124/87234b9e8aac47d6aa09b7adfdc1f5f6.png.webp?width=768"
has_video: false
has_music: false
video_urls: []
music_urls: []
lang: "en"
---

# When a Volume Mounted with Goofys is Not Visible to Other Users

<p>If the volume mounted with Goofys is not visible to other users</p>
<p>If this is not done, other users will encounter a "permission denied" error even if viewed by root.</p>
<p></p>
<h3>1.</h3>
<p>Enable <strong>user_allow_other</strong> in /etc/fuse.conf.</p>
<p>In Ansible, it would look like this:</p>
<pre>- <span>lineinfile:<br /></span><span>    path: </span>/etc/fuse.conf<br />    <span>insertafter: </span><span>'#user_allow_other'<br /></span><span>    </span><span>line: </span><span>'user_allow_other'<br /></span><span>  </span><span>become: </span>yes</pre>
<p>Something like this.</p>
<p></p>
<h3>2.</h3>
<p>Include <strong>-o allow_other</strong> in the Goofys command.</p>
<p>In bash, it would look like this:</p>
<pre>killall goofys<br />sleep 1s<br /><br /><span>export </span>GOPATH=/usr/local/golang<br /><br />sudo -u ubuntu <span>$</span>{GOPATH}/bin/goofys -o allow_other --region ap-northeast-1 your-s3-backet-name /mnt/your-mountpoint</pre>
<p></p>
<h3>3.</h3>
<p>Example of test method</p>
<pre>sudo -u www-data ls&nbsp;/mnt/your-mountpoint</pre>
<p></p>
<p></p>
