Veritas NetBackup for HBase Administrator's Guide
- Introduction
- Installing and deploying HBase plug-in for NetBackup
- About installing and deploying the HBase plug-in
- Pre-requisites for installing the HBase plug-in
- Operating system and platform compatibility
- License for HBase plug-in for NetBackup
- Preparing the HBase cluster
- Downloading the plug-in
- Installing the HBase plug-in
- Best practices for deploying the HBase plug-in
- Post installation procedures
- Verifying the installation of the HBase plug-in
- Configuring NetBackup for HBase
- About configuring NetBackup for HBase
- Managing backup hosts
- Adding HBase credentials in NetBackup
- Configuring the HBase plug-in using the HBase configuration file
- Configuration for a HBase cluster that uses Kerberos
- Configuring NetBackup policies for HBase plug-in
- Disaster recovery of a HBase cluster
- Performing backups and restores of HBase
- Troubleshooting
Preparing the HBase cluster
Perform the following tasks to prepare the HBase cluster for NetBackup:
Update firewall settings (port 50070 by default) so that the backup hosts can communicate with the HBase cluster.
Add the entries of all the HMaster and HMaster to the
/etc/hostsfile on all the backup hosts. You must add the hostname in FQDN format.Or
Add the appropriate DNS entries in the
/etc/resolve.conffile.Add the entries of all the backup hosts to
/etc/hostsfile on the HMaster.Ensure that HBase service is enabled on the HBase cluster.
HMaster user should be able to do SSH
Set the following environment variables for Hmaster in the
.bashrcfileexport JAVA_HOME= PATH_OF_JAVA_DIR
export HADOOP_HOME=PATH_OF_HDFS_DIR
export HADOOP_MAPRED_HOME=$HADOOP_HOME
export HADOOP_COMMON_HOME=$HADOOP_HOME
export HADOOP_HDFS_HOME=$HADOOP_HOME
export YARN_HOME=$HADOOP_HOME
export HADOOP_COMMON_LIB_NATIVE_DIR=$HADOOP_HOME/lib/native
export PATH=$PATH:$HADOOP_HOME/sbin:$HADOOP_HOME/bin
export HADOOP_INSTALL=$HADOOP_HOME
export HADOOP_OPTS="$HADOOP_OPTS -Djava.library.path=$HADOOP_HOME/lib/native"
export HBASE_HOME=PATH OF HBASE DIR
PATH=$PATH:$HBASE_HOME/bin:$JAVA_HOME/bin
export CLASSPATH=$CLASSPATH:/usr/local/hadoop/hbase/lib/*