While attempting to create a Backup Set using 'nvsetcreate' CLI command, it fails with "Failed to open/access plugin on client"
Example of format of failing command:
/usr/netvault/util/nvsetcreate -set "Set_Name" -type BS -client Client_Name -plugin "Plugin_Name" -include "/Volumes/dir1/dir2/dir3/"
Do *not* add the trailing "/" slash at the end of the include path.
So the -include path in the example above should be changed from:
-include "/Volumes/dir1/dir2/dir3/"
To
-include "/Volumes/dir1/dir2/dir3"
In this example, the final format of the command would be as follows:
/usr/netvault/util/nvsetcreate -set "Set_Name" -type BS -client Client_Name -plugin "Plugin_Name" -include "/Volumes/dir1/dir2/dir3"