Backup Exec RALUS Agent for Linux – Failure to browse [Root]

Problem – Backup Exec RALUS Agent for Linux – Failure to browse [Root]

Recently I installed the Backup Exec Agent for Linux (RALUS) on to a couple of SLES servers. The installation went fine with no errors, but when trying to create backup jobs I was getting some kind of permissions issue “Failure to browse [ROOT]”

Backup Exec RALUS Agent for Linux - Failure to browse [Root]

Cause:

After some digging I found there was a .gvfs folder under a users home folder that root did not have permissions to.

When I ran the command find / -name beremote while logged on via SSH as root I was getting the below permissions denied message.

backup exec ralus 4-1.png

Solution:

I found a few other webpages with people having permission issues with .gvfs such as;

https://forums.opensuse.org/showthread.php/387162-permission-denied-on-gvfs

The solution that worked for me was to run the below commands;

umount /home/<useraccount>/.gvfs
find . -inum 554009 -exec rm{} \;
rm -rf .gvfs

 

backup exec ralus 4-2.png

After that backup exec was able to browse the server and the credentials tested find.

UPDATE: After patching the server at a latter date I had to re-apply the fix

8 thoughts on “Backup Exec RALUS Agent for Linux – Failure to browse [Root]”

  1. Do an investigation for find the gvfs directory. I hadn’t the gvfs directory in the /home/user. The command find -inum … give it to me a light where the gvfs was. The umount is necessary

    Reply
  2. OMG this works for me too. . It was driving me nuts. I Googled every where and I stumped on this one. We still on Kernel 2.6.24..Yes is old, but we have to keep this kernel.. Any newer that our BE 2012 wont work. Thank you!

    Reply
  3. The installation utility will ask for the Media Server IP address or Hostname to display the remote agent as a selection in the media server s backup selection tree as shown in Figure 10 below.

    Reply
  4. This issue is caused by GVFSD using its FUSE module to map GVFS mounted filesystems to the .gvfs folder. This lets older programs access the mount if they cant talk to gvfs.

    To disable this permanantly the man page states that exporting an environment variable will disable it:

    GFVS_DISABLE_FUSE=”1″
    export GVFS_DISABLE_FUSE

    Reboot the system.

    However getting GVFSD to notice this is difficult as it is started in a Gnome way that is almost undocumented.

    Solved this permantanly on all Debian systems with:

    apt-get purge gvfs-fuse

    reboot

    Reply

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.