Veritas NetBackup™ Appliance Administrator's Guide
- Overview
- About accessing the NetBackup Appliance Web Console
- About the NetBackup Appliance Shell Menu
- About appliance console components
- Monitoring the NetBackup appliance
- About hardware monitoring and alerts
- About Symantec Data Center Security on the NetBackup appliance
- Managing a NetBackup appliance from the NetBackup Appliance Web Console
- About storage configuration
- About Copilot functionality and Share management
- Creating a Share
- About viewing storage space information using the Show command
- About appliance supported tape devices
- About configuring Host parameters for your appliance
- Manage > Appliance Restore
- Manage > License
- About the Migration Utility
- Software release updates for NetBackup Appliances
- About installing EEBs
- About installing NetBackup Administration Console and client software
- Manage > Additional Servers
- Manage > High Availability
- Managing NetBackup appliance using the NetBackup Appliance Shell Menu
- About OpenStorage plugin installation
- About mounting a remote NFS
- About running NetBackup commands from the appliance
- About NetBackup administrator capabilities
- Creating a NetBackup touch file from the NetBackup appliance
- Creating NetBackup administrator user accounts
- About NetBackup administrator capabilities
- About Auto Image Replication between appliances
- About forwarding logs to an external server
- About high availability configuration
- About data erasure
- Understanding the NetBackup appliance settings
- Settings > Notifications
- Settings > Network
- Settings > Network > Network Settings
- Settings > Network > Fibre Transport
- Settings > Network > Host
- Settings > Authentication
- About configuring user authentication
- About authorizing NetBackup appliance users
- Settings > Authentication > LDAP
- Settings > Authentication > Active Directory
- Settings > Authentication > Kerberos-NIS
- Settings > Authentication > User Management
- Troubleshooting
- Deduplication pool catalog backup and recovery
Mounting a Universal Share
This topic covers how to mount a Universal Share. Choose the mounting procedure that matches the type of Universal Share you created.
The following procedures describe how to mount a CIFS Universal Share. You can use the Windows Explorer interface, a Windows command prompt, or a Linux command prompt.
For appliance high availability (HA) setups, the Universal Share create and delete operations are supported only from the active node. After creating the Universal Share on the active node, the share can be monitored by the other node after performing a switchover to it.
Note:
When mounting the share using a Windows server, it is recommended that you use the IP address instead of the server short name or FQDN.
Mount a CIFS Universal Share using Windows Explorer
- Log on to the Windows server, then navigate to the Map a Network Drive tool.
- Choose an available drive letter.
- Specify the mount path as follows:
\\<appliancename>\<share_name>
- Click Finish.
Mount a CIFS Universal Share using a Windows command prompt
- Log on to the Windows server, then open command prompt.
- Specify the mount path using the following command:
net use <drive_letter>:\\<appliancename>\<share_name>
Mount a CIFS Universal Share using a Linux command prompt
Note:
For HA setups, you must perform this procedure from the active node.
- Log on to the Linux server and create a directory for the mount point using the following command:
#mkdir /mntpoint
- Mount the share using the following command:
#mount -t cifs //<appliancename>/<share_name> /mntpoint -o username=<username>,password=<password>,dom=<dom>
Where <appliancename> is the name of the appliance, <share_name> is the name of the share to mount, <username> is the user name, <password> is the user password, and <dom> is the workgroup field in
/etc/samba/smb.conf
.
The following procedure covers how to mount an NFS Universal Share.
Mount an NFS Universal Share
- Log on to the server as root.
- Create a directory for the mount point using the following command:
- #mkdir /mntpoint
- Mount the Share using the following command. Replace <appliancename> with the name of the appliance and <share_name> with the name of the share to be mounted.
For a Linux-based server, use:
- #mount -t nfs <appliancename>:<share_name> -o rw,bg,hard,nointr,rsize=1048576,wsize=1048576,tcp,actimeo=0,vers=3,timeo=600 /mntpoint
For a Solaris-based server, use:
- #mount -F nfs <appliancename>:<share_name> -o rw,bg,hard,rsize=1048576,wsize=1048576,vers=3,forcedirectio,nointr,proto=tcp /mntpoint
- Grant the user permission to access the mount point using the following command:
- #chmod 700 /mntpoint
- #chown <user>:<group> /mntpoint
Note:
To change Share permissions, the no_root_squash option must be enabled on the Share. This option can be disabled when the permissions have been changed. Use the Edit Share command to change the NFS options of the Share. See the NetBackup Appliance Administrator's Guide for more information on editing a Share.
Note:
Before restarting, make sure to unmount Shares on all clients. If you cannot perform this action, unmount the Shares on the clients, then remount the Shares once the appliance has restarted fully.