In the beginning, you have to go to the terminal of the cPanel server and write this command:
nano install_acronix_cpanel.sh
 
Put this inside the file:

#!/bin/sh


REPO_BASE="https://download.acronis.com/ci/cpanel/stable/acronis-cpanel-stable"

usage()
{
echo "Usage: $0 [OPTIONS]" >&2
echo " -h Display this help message" >&2
echo " -r PATH Override base repository path" >&2
}

parse_options()
{
while getopts ':h:r:' opt; do
case "$opt" in
h)
usage
exit 0
;;
r)
REPO_BASE=$OPTARG
;;
:)
echo "Option -$OPTARG requires an argument" >&2
usage
exit 3
;;
esac
done
}

parse_options "$@"

cat > /etc/yum.repos.d/acronis-cpanel-stable.repo <<EOF
[acronis-cpanel-stable]
name=Acronis Repository for cPanel plugin
baseurl=$REPO_BASE
enabled=1
gpgcheck=0
EOF

yum install -y acronis-backup-cpanel

 

And then execute these commands:
 
chmod +x install_acronis_cpanel.sh
./install_acronis_cpanel.sh


And then go to the WHM and go to the bottom and then choose Plugins

 
 
 
Put
  1. Service URL ---> from Acronis
  2. Login  ---> from Acronis
  3. Password

 

The encryption option is for what you want
 
press ---> enable
 
When finished, this message will appear
Make the backup on and now you have become integrated with cPanel
 
 
Was this answer helpful? 0 Users Found This Useful (0 Votes)