Client Setup
This page describes the configuration steps necessary to set up an OpenAFS client. For server setup, see:
SetupTL;DR use ansible for both clients and servers.
Overview
The OpenAFS client consists of a kernel module, and a userspace program: afsd
(also called the "Cache Manager"). One of the only advantages of AFS over other networked file systems is the aggressive caching system in AFS employed by the client.
Kernel Module
Debian
See the DKMS manual for more details about dynamic kernel modules.
afsd
afsd
After the kernel module is installed, then just install the OpenAFS client program like normal (sudo apt install openafs openafs-client
on Debian-based systems), and configure it.
The Cache Manager attempts to store every file accessed in its local cache, to speed things up. If a file in its cache becomes old, it is the server's responsibility to notify the client of this (to break the callback to the client). This is why in OpenAFS, reads are generally much faster than writes.
Configuration
The configuration file /etc/openafs/afs.conf
is used by the Debian specific init scripts, and doesn't usually need to be touched. /etc/openafs/afs.client.conf
is also Debian specific, but may need to be changed. Here's an explanation for the options here (all of them should be set to either true or false):
AFS_CLIENT
: Specifies whether the OpenAFS client should start on boot. If this is set to false, you can start the client manually with "/etc/init.d/openafs-client force-start".AFS_AFSDB
: Specifies whether or not the client should use AFSDB records.AFS_CRYPT
: Specifies whether or not encryption should be on by default (encryption encrypts all data travelling between the servers and the client, at the cost of performance).AFS_DYNROOT
: Specifies whether or not the cell mount points in /afs/ should be dynamically populated according to the cells that are present in /etc/openafs/CellServDB.AFS_FAKESTAT
: Specifies whether or not the client fakes stat(2) on directories under certain conditions, so the client doesn't have to look it up every time, which can take a while.
Most of the configuration should be done automatically by the openafs-client
ansible role. Look at it in GitLab for better info.
Summary of the play:
Installs the
ppa:openafs/stable
for UbuntuInstalls all the required modules
dkms
openafs-client
openafs-krb5
openafs-modules-dkms
libpam-afs-session
Copies pre-configured versions of
/etc/openafs/ThisCell
,/etc/openafs/cacheinfo
, and/etc/openafs/CellServDB
Adds
pam_afs_session.so
to pamsession optional pam_afs_session.so always_aklog
in thecomon-session
PAM options file (to allow people to access their AFS files after login)
Copies useful AFS binaries
Sample ThisCell
ThisCell
Just a single line:
Wow. Feel underwhelmed please.
Sample cacheinfo
cacheinfo
Not as underwhelming because there's actually stuff going on here. Still just one line though.
This file contains the location of the cache directory (where all of the OpenAFS cache is stored) and then the size of the cache in kilobytes.
Sample CellServDB
CellServDB
Same as the server's version:
Last updated