Cannot mount CVMFS on Ubuntu 20 anymore?

Good morning,
The other day I installled CVMFS following the instructions here:

https://cvmfs.readthedocs.io/en/stable/cpt-quickstart.html

on my Ubuntu 20 desktop (at home, since I am teleworking). The desktop was then shut down etc, and today I wanted to mount CVMFS again, but it seems to not work:

zampolli@pcalicecz4~$ sudo systemctl restart autofs
zampolli@pcalicecz4~$ service autofs status
● autofs.service - Automounts filesystems on demand
     Loaded: loaded (/lib/systemd/system/autofs.service; enabled; vendor preset: enabled)
     Active: active (running) since Fri 2021-03-26 13:15:09 CET; 1s ago
       Docs: man:autofs(8)
    Process: 26135 ExecStart=/usr/sbin/automount $OPTIONS --pid-file /var/run/autofs.pid (code=exited, status=0/SUCCESS)
   Main PID: 26137 (automount)
      Tasks: 4 (limit: 76773)
     Memory: 4.4M
     CGroup: /system.slice/autofs.service
             └─26137 /usr/sbin/automount --pid-file /var/run/autofs.pid

Mar 26 13:15:09 pcalicecz4 systemd[1]: Starting Automounts filesystems on demand...
Mar 26 13:15:09 pcalicecz4 systemd[1]: Started Automounts filesystems on demand.
zampolli@pcalicecz4~$ sudo cvmfs_config setup
zampolli@pcalicecz4~$ cvmfs_config probe
Probing /cvmfs/alice-ocdb.cern.ch... Failed!
Probing /cvmfs/alice.cern.ch... Failed!
Probing /cvmfs/sft.cern.ch... Failed!

The config that I have (/etc/cvmfs/default.local) is:

CVMFS_HTTP_PROXY=DIRECT
CVMFS_CLIENT_PROFILE=single
CVMFS_REPOSITORIES='alice-ocdb.cern.ch,alice.cern.ch,sft.cern.ch,'

Anything that I am missing?

Thanks for any help.

Chiara

Another piece of information: I checked the status with:

zampolli@pcalicecz4~$ sudo cvmfs_config status
/usr/bin/cvmfs_config: line 1018: cd: /cvmfs/cvmfs-config.cern.ch: Transport endpoint is not connected
mountpoint /cvmfs/cvmfs-config.cern.ch inaccessible
/usr/bin/cvmfs_config: line 1018: cd: /cvmfs/alice.cern.ch: Transport endpoint is not connected
mountpoint /cvmfs/alice.cern.ch inaccessible
/usr/bin/cvmfs_config: line 1018: cd: /cvmfs/alice-ocdb.cern.ch: Transport endpoint is not connected
mountpoint /cvmfs/alice-ocdb.cern.ch inaccessible
/usr/bin/cvmfs_config: line 1018: cd: /cvmfs/sft.cern.ch: Transport endpoint is not connected
mountpoint /cvmfs/sft.cern.ch inaccessible

as you can see, it was not successful. Should I unmount everything with the umount option, as described in Client Configuration — CernVM-FS 2.8.0 documentation?

Chiara

Unmounting everything worked:

zampolli@pcalicecz4~$ sudo cvmfs_config umount
Unmounting /cvmfs/cvmfs-config.cern.ch: OK
Unmounting /cvmfs/alice.cern.ch: OK
Unmounting /cvmfs/alice-ocdb.cern.ch: OK
Unmounting /cvmfs/sft.cern.ch: OK
zampolli@pcalicecz4~$ sudo systemctl restart autofs
zampolli@pcalicecz4~$ sudo cvmfs_config setup
zampolli@pcalicecz4~$ cvmfs_config probe
Probing /cvmfs/alice-ocdb.cern.ch... OK
Probing /cvmfs/alice.cern.ch... OK
Probing /cvmfs/sft.cern.ch... OK
zampolli@pcalicecz4~$