Merge branch '8784-dir-listings'
[arvados.git] / doc / _includes / _install_compute_fuse.liquid
1 {% comment %}
2 Copyright (C) The Arvados Authors. All rights reserved.
3
4 SPDX-License-Identifier: CC-BY-SA-3.0
5 {% endcomment %}
6
7 h2. Configure FUSE
8
9 FUSE must be configured with the @user_allow_other@ option enabled for Crunch to set up Keep mounts that are readable by containers.  Install this file as @/etc/fuse.conf@:
10
11 <notextile>
12 <pre>
13 # Set the maximum number of FUSE mounts allowed to non-root users.
14 # The default is 1000.
15 #
16 #mount_max = 1000
17
18 # Allow non-root users to specify the 'allow_other' or 'allow_root'
19 # mount options.
20 #
21 user_allow_other
22 </pre>
23 </notextile>