Granting User Permissions on Linux and UNIX Machines
On Linux and UNIX machines, you can set up access to the plug-in configuration files in command line interface.
By default, the Veeam Plug-in configuration file (veeam_config.xml) is located in the /opt/veeam/VeeamPluginforOracleRMAN directory on the machine where Veeam Plug-in is installed. To grant access to the configuration file to a dedicated group of users, do the following:
- Create a new user group by running the following command:
sudo groupadd <groupName> |
where <groupName> is the name of the created group.
- Add a user to the group with the following command:
sudo usermod -a -G <groupName> <userName> |
where:
- <groupName> — the name of the created group.
- <userName> — the name of the account that will be granted access to the configuration file.
- Change the ownership of the configuration file to enable users from the dedicated group to access the configuration file. To do this, run the following command:
sudo chgrp <groupName> /opt/veeam/VeeamPluginforOracleRMAN/veeam_config.xml |
where <groupName> is the name of the created group.
- Limit the permissions for the configuration file to allow the read-write access only to the members of the group. To do this, use the following command:
sudo chmod 660 /opt/veeam/VeeamPluginforOracleRMAN/veeam_config.xml |