Quantcast
Channel: Veeam Support Knowledge Base
Viewing all 4470 articles
Browse latest View live

Veeam ONE 9.5 compatibility with Veeam Cloud Connect 9.5 Update 2

$
0
0

Challenge

Veeam ONE needs to support Veeam Cloud Connect 9.5 Update 2 monitoring. There is a fix that has to be deployed on the Veeam ONE server monitoring the Cloud Connect server of the service provider

Cause

There are new types of data implemented with the release of Veeam Cloud Connect 9.5 Update 2 which are not supported by versions 9.5.0.3201 and 9.5.0.3254 of Veeam ONE.

Solution

Steps to resolve the issue are:
  1. Download the hotfix here.
  2. Open Veeam ONE Reporter web interface and navigate to the Configuration tab > Extension modules node.
  3. Use the Install option to apply the hotfix.

More Information

If you have any questions, contact Veeam Support.

Failed to load module [veeamsnap] (extended version)

$
0
0

Challenge

There is an express version of this article here.

The backup session of Veeam Agent for Linux fails with message
 
modprobe: FATAL: Module veeamsnap not found

or during the installation of veeamsnap package you see the following output:

Debian based systems:
 
Setting up veeamsnap (1.0.0.944) ...
Loading new veeamsnap-1.0.0.944 DKMS files...
First Installation: checking all kernels...
Building only for 3.16.0-4-amd64
Module build for the currently running kernel was skipped since the
kernel source for this kernel does not seem to be installed.
Setting up veeam (1.0.0.944) ...

Red Hat based systems:
 
Installing : veeamsnap-1.0.0.944-1.noarch 1/2
Loading new veeamsnap-1.0.0.944 DKMS files...
Building for 2.6.32-642.11.1.el6.x86_64
Module build for kernel 2.6.32-642.11.1.el6.x86_64 was skipped since the
kernel headers for this kernel does not seem to be installed.
WARNING: Package not configured! See output!
warning: %post(veeamsnap-1.0.0.944-1.noarch) scriptlet failed, exit status 1
Non-fatal POSTIN scriptlet failure in rpm package veeamsnap-1.0.0.944-1.noarch
Installing : veeam-1.0.0.944-1.el6.x86_64 2/2
Starting veeamservice: [  OK  ]
Verifying  : veeam-1.0.0.944-1.el6.x86_64 1/2
Verifying  : veeamsnap-1.0.0.944-1.noarch 2/2
Installed: veeam.x86_64 0:1.0.0.944-1.el6  veeamsnap.noarch 0:1.0.0.944-1                                                                           Complete!

SUSE based systems:
 
Installing: veeamsnap-1.0.0.944-1.sles [error]
Installation of veeamsnap-1.0.0.944-1.sles failed:
(with --nodeps --force) Error: Subprocess failed. Error: RPM failed: Loading new veeamsnap-1.0.0.944 DKMS files...
First Installation: checking all kernels...
Building only for 3.0.101-63-default
Module build for the currently running kernel was skipped since the
kernel source for this kernel does not seem to be installed.
WARNING: Package not configured! See output!
error: %post(veeamsnap-1.0.0.944-1.sles.noarch) scriptlet failed, exit status 1
Abort, retry, ignore? [a/r/i] (a): i
Installing: veeam-1.0.0.944-1.sles11 [done]
Additional rpm output:
Starting veeamservice..done

 

Cause

These messages are issued by DKMS and mean that veeamsnap module has not been compiled and installed.

Here is a list of possible root causes:
  1. The kernel headers package is missing.
  2. The kernel headers version and the running kernel version mismatch.
  3. The kernel headers package for a wrong kernel type is installed.
  4. The kernel headers and the sources version mismatch.
  5. Unexpected DKMS or compiler issue.
  6. Loading 3rd party kernel modules is not allowed.

Solution

In order to build the veeamsnap module, the following criteria must be met:
  1. The kernel headers version installed in the OS must match the running kernel version.
  2. The kernel sources version must match the kernel headers version.
  3. Loading 3rd party modules must be allowed.
Below you can find the list of actions you need to take in different scenarios. In some places the actual command will be followed by an example of the output it generates. The command you need to enter will be typed in bold.

Scenario 1: veeamsnap module has been compiled, but couldn't be loaded by some reason

1.    Try to load module manually. Issue following command in terminal:
sudo modprobe veeamsnap

If it fails with message FATAL: Module veeamsnap not found, proceed to solution for Scenario 2.

2.     If it fails on SUSE based Linux systems with the following message: FATAL: module '/lib/modules/3.0.101-94-default/updates/veeamsnap.ko' is unsupported​, there is a workaround available. Remember that loading and running unsupported modules will make the Kernel and the whole system unsupported by SUSE.

Use --allow-unsupported or set allow_unsupported_modules to 1 in /etc/modprobe.d/unsupported-modules

You can manually load this module on permanent basis, use this command:
 
sudo modprobe --allow-unsupported veeamsnap

Or you can tune file /etc/modprobe.d/unsupported-modules accordingly.

Scenario 2: module has not been compiled

You will need to check the module status and rebuild it manually.

1.    Check the status of veeamsnap module in the dkms tree:
 
sudo dkms status

The output should contain this line:
 
​veeamsnap, 1.0.0.944: added

In the DKMS, "added" means that module source is included in the kernel tree.

2.    If the veeamsnap module is not present in the dynamic modules list, you will need to reinstall the veeamsnap package or add the module manually to the kernel tree like this (otherwise this step can be skipped): 
sudo dkms add -m veeamsnap -v 1.0.0.944​
Creating symlink /var/lib/dkms/veeamsnap/1.0.0.944/source -> /usr/src/veeamsnap-1.0.0.944 DKMS: add completed.

Note the command result and check the module status again. If it is listed in the kernel tree, proceed with the next step.

3.    Try to build the module manually by runing the following command: 
 
sudo dkms build -m veeamsnap -v 1.0.0.944

If there is no proper kernel sources and headers installed you will see an output like this:

For Centos/RHEL/OEL/Fedora or SUSE based systems:
sudo dkms build -m veeamsnap -v 1.0.0.944

Error! echo
Your kernel headers for kernel 3.10.0-514.6.2.el7.x86_64 cannot be found at
/lib/modules/3.10.0-514.6.2.el7.x86_64/build or /lib/modules/3.10.0514.6.2.el7.x86_64/source.

For Debian based systems:
 
sudo dkms build -m veeamsnap -v 1.0.0.944

Error! Your kernel headers for kernel 3.16.0-4-amd64 cannot be found.
Please install the linux-headers-3.16.0-4-amd64 package,
or use the --kernelsourcedir option to tell DKMS where it's located

Go to the next step to define proper sources and headers to be installed.

4.    To compile the veeamsnap module, kernel headers with the same version as the currently running kernel must be installed. You can check if the required version is available and install it using these commands:

Debian based systems:
 
sudo apt-get install linux-headers-$(uname -r)

Reading package lists... Done
Building dependency tree
Reading state information... Done
The following NEW packages will be installed:
  linux-headers-3.16.0-4-amd64

For RHEL/OEL/Centos:
 
sudo yum install kernel-headers-$(uname -r)

Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * base: mirror.awanti.com
 * epel: mirror.awanti.com
 * extras: mirror.awanti.com
 * updates: mirror.awanti.com
Resolving Dependencies
--> Running transaction check
---> Package kernel-headers.x86_64 0:3.10.0-514.6.2.el7 will be installed
--> Finished Dependency Resolution

Please note that for UEK kernels (as well as for PAE, RHCK or custom versions) the package naming and structure are different. For example for CentOS/OEL/RHEL 7, the kernel sources and headers are stored in kernel-uek-devel-$(uname -r) package. For detailed information please refer to your vendor.

For Fedora:
sudo dnf install kernel-headers-$(uname -r)

Last metadata expiration check: 0:07:52 ago on Tue Mar  7 05:13:32 2017.
Dependencies resolved.
======================================================================================================================================
 Package                             Arch                        Version                              Repository                    Si
======================================================================================================================================
Installing:
 kernel-headers                      x86_64                      4.9.13-200.fc25                      updates                      1.1

Transaction Summary
======================================================================================================================================
Install  1 Package

Total download size: 1.1 M
Installed size: 3.8 M

For SUSE based systems

In SUSE based systems, there is no such logic in package naming, so you need to check the package versions manually. You need the kernel-source package to be installed, this way you can check all available versions of this package:
 
sudo zypper se -s --match-exact kernel-source

Refreshing service 'nu_novell_com'.
Loading repository data...
Reading installed packages...

Check if you see a package matching your running kernel version and then try to install it. For example:
 
user@host:~> uname -r

3.0.101-65-default

user@host:~> sudo zypper in kernel-source-3.0.101-65.1

Refreshing service 'nu_novell_com'.
Loading repository data...
Reading installed packages...
Resolving package dependencies...
The following NEW packages are going to be installed:
kernel-default-devel kernel-source
2 new packages to install.
Overall download size: 95.4 MiB. After the operation, additional 429.9 MiB will be used.
Continue? [y/n/? shows all options] (y): y
Retrieving package kernel-source-3.0.101-65.1.x86_64 (1/2), 88.9 MiB (427.1 MiB unpacked)
Retrieving: kernel-source-3.0.101-65.1.x86_64.rpm [done (1.4 MiB/s)]
Retrieving package kernel-default-devel-3.0.101-65.1.x86_64 (2/2), 6.5 MiB (2.8 MiB unpacked)
Retrieving: kernel-default-devel-3.0.101-65.1.x86_64.rpm [done]
Installing: kernel-source-3.0.101-65.1 [done]
Installing: kernel-default-devel-3.0.101-65.1 [done]

The version shown by uname can be different from that in in zypper. You can check the available versions of your kernel the same way as you did for kernel sources:
 
sudo zypper se -s --match-exact kernel-default

Refreshing service 'nu_novell_com'.
Loading repository data...
Reading installed packages...
S | Name           | Type       | Version      | Arch   | Repository
--+----------------+------------+--------------+--------+-------------------
i | kernel-default | package    | 3.0.101-94.1 | x86_64 | SLES11-SP4-Updates
v | kernel-default | package    | 3.0.101-91.1 | x86_64 | SLES11-SP4-Updates
v | kernel-default | package    | 3.0.101-88.1 | x86_64 | SLES11-SP4-Updates
v | kernel-default | package    | 3.0.101-84.1 | x86_64 | SLES11-SP4-Updates
v | kernel-default | package    | 3.0.101-80.1 | x86_64 | SLES11-SP4-Updates
v | kernel-default | package    | 3.0.101-77.1 | x86_64 | SLES11-SP4-Updates
v | kernel-default | package    | 3.0.101-71.1 | x86_64 | SLES11-SP4-Updates
v | kernel-default | package    | 3.0.101-68.1 | x86_64 | SLES11-SP4-Updates
v | kernel-default | package    | 3.0.101-65.1 | x86_64 | SLES11-SP4-Updates
v | kernel-default | package    | 3.0.101-63.1 | x86_64 | SLES11-SP4-Pool
  | kernel-default | srcpackage | 3.0.101-94.1 | noarch | SLES11-SP4-Updates
  | kernel-default | srcpackage | 3.0.101-91.1 | noarch | SLES11-SP4-Updates
  | kernel-default | srcpackage | 3.0.101-88.1 | noarch | SLES11-SP4-Updates
  | kernel-default | srcpackage | 3.0.101-84.1 | noarch | SLES11-SP4-Updates
  | kernel-default | srcpackage | 3.0.101-80.1 | noarch | SLES11-SP4-Updates
  | kernel-default | srcpackage | 3.0.101-77.1 | noarch | SLES11-SP4-Updates
  | kernel-default | srcpackage | 3.0.101-71.1 | noarch | SLES11-SP4-Updates
  | kernel-default | srcpackage | 3.0.101-68.1 | noarch | SLES11-SP4-Updates
  | kernel-default | srcpackage | 3.0.101-65.1 | noarch | SLES11-SP4-Updates

It this output we have a kernel-default package matching the uname -r version (except for the last digit which indicates the package release version).

5.    After that you can rebuild the veeamsnap module again:
sudo dkms build -m veeamsnap -v 1.0.0.944

Kernel preparation unnecessary for this kernel.  Skipping...
Building module:
cleaning build area....
make KERNELRELEASE=3.0.101-94-default -C /lib/modules/3.0.101-94-default/build M=/var/lib/dkms/veeamsnap/1.0.0.944/build........
cleaning build area....
DKMS: build completed.

Scenario 3: the module has been built, but for a different kernel

It is possible that this package version has been superseded by the distribution vendor or you do not have the correct repositories enabled.

1. Check the list of available repositories.

For Debian based:
sudo apt-cache policy

Package files:
 100 /var/lib/dpkg/status
     release a=now
 500 http://repository.veeam.com/backup/linux/agent/dpkg/debian/x86_64/ noname/veeam amd64 Packages
     release o=veeam,a=stable,n=noname,l=veeam,c=veeam
     origin repository.veeam.com
 500 http://ftp.us.debian.org/debian/ jessie-updates/main Translation-en
 500 http://ftp.us.debian.org/debian/ jessie-updates/main i386 Packages
     release o=Debian,a=stable-updates,n=jessie-updates,l=Debian,c=main
     origin ftp.us.debian.org
 500 http://ftp.us.debian.org/debian/ jessie-updates/main amd64 Packages
     release o=Debian,a=stable-updates,n=jessie-updates,l=Debian,c=main
     origin ftp.us.debian.org
 500 http://security.debian.org/ jessie/updates/main Translation-en
 500 http://security.debian.org/ jessie/updates/main i386 Packages
     release v=8,o=Debian,a=stable,n=jessie,l=Debian-Security,c=main
     origin security.debian.org
 500 http://security.debian.org/ jessie/updates/main amd64 Packages
     release v=8,o=Debian,a=stable,n=jessie,l=Debian-Security,c=main
     origin security.debian.org
 500 http://ftp.us.debian.org/debian/ jessie/main Translation-en
 500 http://ftp.us.debian.org/debian/ jessie/main i386 Packages
     release v=8.7,o=Debian,a=stable,n=jessie,l=Debian,c=main
     origin ftp.us.debian.org
 500 http://ftp.us.debian.org/debian/ jessie/main amd64 Packages
     release v=8.7,o=Debian,a=stable,n=jessie,l=Debian,c=main
     origin ftp.us.debian.org
Pinned packages:

For RHEL/OEL/CentOS:
sudo yum repolist

Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * base: mirror.awanti.com
 * epel: mirror.awanti.com
 * extras: mirror.awanti.com
 * updates: mirror.awanti.com
repo id                                          repo name                                                                     status
!base/7/x86_64                                   CentOS-7 - Base                                                                9,363
!epel/x86_64                                     Extra Packages for Enterprise Linux 7 - x86_64                                11,290
!extras/7/x86_64                                 CentOS-7 - Extras                                                                 266
!updates/7/x86_64                                CentOS-7 - Updates                                                              1,086
!veeam                                           Veeam Backup for GNU/Linux - x86_64                                                 2
repolist: 22,007
repo id                                                                          repo name                                                                                                               status
base                                                                             CentOS-6 - Base                                                                                                          6,696
epel                                                                             Extra Packages for Enterprise Linux 6 - x86_64                                                                          12,251
extras                                                                           CentOS-6 - Extras                                                                                                           63
updates                                                                          CentOS-6 - Updates                                                                                                         955
veeam                                                                            Veeam Backup for GNU/Linux - x86_64                                                                                          2
repolist: 19,967
[user@host ~]$

For SUSE based:
 
sudo zypper lr

root's password:
#  | Alias                                            | Name                                             | Enabled | Refresh
---+--------------------------------------------------+--------------------------------------------------+---------+--------
 1 | SUSE-Linux-Enterprise-Server-11-SP4 11.4.4-1.109 | SUSE-Linux-Enterprise-Server-11-SP4 11.4.4-1.109 | No      | No
 2 | nu_novell_com:SLE11-Public-Cloud-Module          | SLE11-Public-Cloud-Module                        | No      | Yes
 3 | nu_novell_com:SLE11-SP4-Debuginfo-Pool           | SLE11-SP4-Debuginfo-Pool                         | No      | Yes
 4 | nu_novell_com:SLE11-SP4-Debuginfo-Updates        | SLE11-SP4-Debuginfo-Updates                      | No      | Yes
 5 | nu_novell_com:SLE11-Security-Module              | SLE11-Security-Module                            | No      | Yes
 6 | nu_novell_com:SLES11-Extras                      | SLES11-Extras                                    | No      | Yes
 7 | nu_novell_com:SLES11-SP4-Pool                    | SLES11-SP4-Pool                                  | Yes     | Yes
 8 | nu_novell_com:SLES11-SP4-Updates                 | SLES11-SP4-Updates                               | Yes     | Yes
 9 | packman_1                                        | packman                                          | Yes     | Yes
10 | veeam                                            | Veeam Backup for GNU/Linux - x86_64              | Yes     | Yes

For Fedora:
sudo dnf repolist

Last metadata expiration check: 1:13:54 ago on Wed Mar  8 14:58:04 2017.
repo id                                                                                   repo name                                                                                                      status
*fedora                                                                                   Fedora 25 - x86_64                                                                                             51,669
*updates                                                                                  Fedora 25 - x86_64 - Updates                                                                                   17,234

2.    If all necessary repositories are enabled, try to find all available package versions manually:

For Debian:
sudo apt-cache madison linux-headers-*

linux-headers-3.16.0-4-all | 3.16.39-1+deb8u1 | http://security.debian.org/ jessie/updates/main amd64 Packages
linux-headers-3.16.0-4-all |  3.16.39-1 | http://ftp.us.debian.org/debian/ jessie/main amd64 Packages
linux-headers-3.16.0-4-all | 3.16.7-ckt25-2 | http://ftp.us.debian.org/debian/ jessie-updates/main amd64 Packages
linux-headers-3.16.0-4-amd64 | 3.16.39-1+deb8u1 | http://security.debian.org/ jessie/updates/main amd64 Packages
linux-headers-3.16.0-4-amd64 |  3.16.39-1 | http://ftp.us.debian.org/debian/ jessie/main amd64 Packages
linux-headers-3.16.0-4-amd64 | 3.16.7-ckt25-2 | http://ftp.us.debian.org/debian/ jessie-updates/main amd64 Packages
linux-headers-amd64 |    3.16+63 | http://ftp.us.debian.org/debian/ jessie/main amd64 Packages
linux-headers-3.16.0-4-common | 3.16.39-1+deb8u1 | http://security.debian.org/ jessie/updates/main amd64 Packages
linux-headers-3.16.0-4-common |  3.16.39-1 | http://ftp.us.debian.org/debian/ jessie/main amd64 Packages
linux-headers-3.16.0-4-common | 3.16.7-ckt25-2 | http://ftp.us.debian.org/debian/ jessie-updates/main amd64 Packages
linux-headers-3.16.0-4-all-amd64 | 3.16.39-1+deb8u1 | http://security.debian.org/ jessie/updates/main amd64 Packages
linux-headers-3.16.0-4-all-amd64 |  3.16.39-1 | http://ftp.us.debian.org/debian/ jessie/main amd64 Packages
linux-headers-3.16.0-4-all-amd64 | 3.16.7-ckt25-2 | http://ftp.us.debian.org/debian/ jessie-updates/main amd64 Packages

For RHEL/OEL/CentOS:

sudo yum list kernel-headers-\*

Loaded plugins: fastestmirror
Loading mirror speeds from cached hostfile
 * base: mirror.awanti.com
 * epel: mirror.awanti.com
 * extras: mirror.awanti.com
 * updates: mirror.awanti.com
Installed Packages
kernel-headers.x86_64                                                                               3.10.0-514.10.2.el7                                                                                @updates


For Fedora:
 
sudo dnf list kernel-headers-\*

Last metadata expiration check: 1:47:48 ago on Wed Mar  8 14:58:04 2017.
Installed Packages
kernel-headers.x86_64                                                                                 4.9.13-200.fc25                                                                                  @updates

For SUSE based systems:
sudo zypper se -s --match-exact kernel-source

Refreshing service 'nu_novell_com'.
Retrieving repository 'SLES11-SP4-Updates' metadata [done]
Building repository 'SLES11-SP4-Updates' cache [done]
Loading repository data...
Reading installed packages...

S | Name          | Type       | Version      | Arch   | Repository
--+---------------+------------+--------------+--------+-------------------
i | kernel-source | package    | 3.0.101-94.1 | x86_64 | SLES11-SP4-Updates
v | kernel-source | package    | 3.0.101-91.1 | x86_64 | SLES11-SP4-Updates
v | kernel-source | package    | 3.0.101-88.1 | x86_64 | SLES11-SP4-Updates
v | kernel-source | package    | 3.0.101-84.1 | x86_64 | SLES11-SP4-Updates
v | kernel-source | package    | 3.0.101-80.1 | x86_64 | SLES11-SP4-Updates
v | kernel-source | package    | 3.0.101-77.1 | x86_64 | SLES11-SP4-Updates
v | kernel-source | package    | 3.0.101-71.1 | x86_64 | SLES11-SP4-Updates
v | kernel-source | package    | 3.0.101-68.1 | x86_64 | SLES11-SP4-Updates
v | kernel-source | package    | 3.0.101-65.1 | x86_64 | SLES11-SP4-Updates
v | kernel-source | package    | 3.0.101-63.1 | x86_64 | SLES11-SP4-Pool
  | kernel-source | srcpackage | 3.0.101-94.1 | noarch | SLES11-SP4-Updates
  | kernel-source | srcpackage | 3.0.101-91.1 | noarch | SLES11-SP4-Updates
  | kernel-source | srcpackage | 3.0.101-88.1 | noarch | SLES11-SP4-Updates
  | kernel-source | srcpackage | 3.0.101-84.1 | noarch | SLES11-SP4-Updates
  | kernel-source | srcpackage | 3.0.101-80.1 | noarch | SLES11-SP4-Updates
  | kernel-source | srcpackage | 3.0.101-77.1 | noarch | SLES11-SP4-Updates
  | kernel-source | srcpackage | 3.0.101-71.1 | noarch | SLES11-SP4-Updates
  | kernel-source | srcpackage | 3.0.101-68.1 | noarch | SLES11-SP4-Updates
  | kernel-source | srcpackage | 3.0.101-65.1 | noarch | SLES11-SP4-Updates


3.    If the package has not been found, here is what can be done to resolve this issue:
  • Search for the package on the installation media of your distribution
  • Request the package from your vendor or search for it in a secure public repository. Keep in mind, that Veeam is not responsible for the content of public repositories
  • Install the most recent kernel version for your distribution and reboot the machine
After installing the proper versions of sources or installing the most recent kernel version, it will be possible to compile the veeamsnap module using the steps from scenario 2.

More Information

If none of the solutions help, please follow these instructions to collect the diagnostic data for submitting a support case.

The behavior described above is the design of DKMS. DKMS framework builds modules for the currently running kernel. Otherwise the module would be built for another kernel version and would not be loaded or built at all.

When you create a support case, it will be very helpful if you complete the steps above and share a short summary of what has been done. It will also be helpful if you collect the diagnostic information as follows:

1.    Open your Linux shell.
2.    Run the following commands in the terminal:
 
cat /etc/*release

uname -a

lsb_release -a

3.    Depending on your distribution vendor and version, run the following commands to provide us with the information about the installed packages and repositories:

For Debian based systems:

sudo apt-cache madison veeam*

sudo apt-cache madison linux*

sudo apt-cache policy

For SUSE based systems:

sudo zypper se -s --match-exact veeam\*

sudo zypper se -s --match-exact kernel\*

sudo zypper lr

For RHEL/OEL/CentOS systems:
 
sudo yum list veeam\*

sudo yum list kernel\*

sudo yum repolist all

For Fedora:

sudo dnf list veeam\*

sudo dnf list kernel\*

sudo dnf repolist all

4.    Provide the information about DKMS modules and build attempt:
 
dkms status

dkms build -m veeamsnap -v 1.0.0.944 –all

5.    Compiler information and module load attempt:
 
gcc -v

modprobe veeamsnap

Please save the output of all these actions and provide it to us.
 

How to force form-based authentication in Enterprise Manager

$
0
0

Challenge

In v9 of Enterprise Manager, you might get an authentication prompt similar to the one below (the look of the prompt depends on your internet browser).
To force the use of HTML form-based authentication, use the solution below.
User-added image

Cause

The window is shown due to the automatic NTLM-based authentication method introduced in v9.

Solution

  1. Open the Internet Information Services (IIS) Manager console on your Enterprise Manager server.
  2. Locate the VeeamBackup site.
  3. In the Default Document options, add Login.aspx to the top of the list.
  4. In the Authentication options, disable Forms Authentication method.
  5. In the Modules, remove the MixedAuthenticationModule2 module.
  6. Open the following files using notepad and replace "<a href="/">Home</a>" with "<a href="/default.aspx">Home</a>" :
    %programfiles%\Veeam\Backup and Replication\Enterprise Manager\WebApp\js\veeam-configuration.js 
    %programfiles%\Veeam\Backup and Replication\Enterprise Manager\WebApp\js\release\app.min.js 
  7. Restart the VeeamBackup website using IIS and clear the cache of your Internet browser.

More Information

Alternatively, you can go directly to the page at https://enterprise-manager:9443/login.aspx.

NTLM-based method automatically logs in the current user if the following conditions are met:
1) The computer you are using to access Enterprise Manager and EM itself are in the same AD domain
2) The user has permissions to access Enterprise Manager

Veeam Explorer for SQL (VESQL): Unable to pass current account's context to the mount server

$
0
0

Challenge

Error message in VESQL "Unable to pass current account's context to the mount server" when trying to use option "Use current account" during restore attempt.

Cause

Functionality to pass/delegate current user security token to remote mount server is not implemented.
When VESQL and mount server are different Windows machines you cannot use option "Use current account".
You can only use this option when VESQL and mount server are the same machine.

Solution

Input credentials explicitly.

HCL - EMC Unity

$
0
0

Challenge

Product Information

Product Family: Dell/EMC Unity 
Status: Veeam Ready - Integrated 
Classification Description: Integrated storage where joint development activities between the manufacturer and Veeam have occurred to create advanced backup or restore functionalities.

Solution

Product Details

Model number: All 
Number of Drives: Any 
Drive type: Any 
Firmware version: 4.1 
Additional support: Any EMC Unity configuration with supported firmware. 
General product family overview: EMC Unity sets the new standards for midrange storage with a powerful combination of simplicity, modern design, affordable price point, and deployment flexibility –perfect for resource-constrained IT professionals in large or small companies. Unity is perfect for midsized deployments, Remote Office/Branch Office locations, and cost-sensitive mixed workload environments. It is designed for all-flash, delivers the best value, and is available in purpose-built (all flash or hybrid), converged deployment (through VCE), and as a software -defined virtual edition. With all-inclusive software, new differentiated features, internet-enabled management, and a modern design, Unity is where powerful meets simplicity.  

 

Veeam Details

Veeam Build Number: 9.5.0.823 

More Information

Company Information

Company name: Dell/EMC 
Company overview: As a member of the Dell Technologies unique family of businesses, Dell EMC serves a key role in providing the essential infrastructure for organizations to build their digital future, transform IT and protect their most important asset, information. Dell EMC enables our enterprise customers’ IT and digital business transformation through trusted hybrid cloud and big-data solutions, built upon a modern data center infrastructure that incorporates industry-leading converged infrastructure, servers, storage, and cybersecurity technologies. 

Dell EMC brings together Dell’s and EMC’s respective strong capabilities and complementary portfolios, sales teams and R&D. We seek to become the technology industry’s most trusted advisor, providing capabilities spanning strategy development, consultative services and solution deployment and support to help our customers and partners drive the digital transformation of their businesses. 

We work with organizations around the world, in every industry, in the public and private sectors, and of every size, from startups to the Fortune Global 500. Our customers include global money center banks and other leading financial services firms, manufacturers, healthcare and life sciences organizations, Internet service and telecommunications providers, airlines and transportation companies, educational institutions, and public sector agencies. 

HCL - EMC VNX/e

$
0
0

Challenge

Product Information

Product Family: Dell EMC VNX/e 
Status: Veeam Ready - Integrated 
Classification Description: Integrated storage where joint development activities between the manufacturer and Veeam have occurred to create advanced backup or restore functionalities. 

Solution

Product Details

Model number: All 
Number of Drives: Any 
Drive type: Any 
Software version:  

VNX Operating Environment for block 05.33.008.5.119 
VNX Operating Environment for File 8.1.8.121  
EMC Unisphere 1.3.8.1.0119 

Additional support: Any Dell EMC VNX/e configuration with supported firmware 
General product family overview:  The VNX family delivers industry-leading innovation and enterprise capabilities for file and block storage in a scalable, easy-to-use unified storage solution.  VNX storage combines powerful and flexible hardware with advanced efficiency, management, and protection software to meet the affordability, efficiency and performance needs of today’s enterprises.  All of this is available in a choice of systems ranging from affordable entry-level solutions to high-performance, petabyte-capacity configurations servicing the most demanding mixed workload requirements. 

 

Veeam Details

Veeam Build Number: 9.5.0.823

More Information

Company Information

Company name: DELL EMC 
Company overview: As a member of the Dell Technologies unique family of businesses, Dell EMC serves a key role in providing the essential infrastructure for organizations to build their digital future, transform IT and protect their most important asset, information. Dell EMC enables our enterprise customers’ IT and digital business transformation through trusted hybrid cloud and big-data solutions, built upon a modern data center infrastructure that incorporates industry-leading converged infrastructure, servers, storage, and cybersecurity technologies. 

Dell EMC brings together Dell’s and EMC’s respective strong capabilities and complementary portfolios, sales teams and R&D. We seek to become the technology industry’s most trusted advisor, providing capabilities spanning strategy development, consultative services and solution deployment and support to help our customers and partners drive the digital transformation of their businesses. 

We work with organizations around the world, in every industry, in the public and private sectors, and of every size, from startups to the Fortune Global 500. Our customers include global money center banks and other leading financial services firms, manufacturers, healthcare and life sciences organizations, Internet service and telecommunications providers, airlines and transportation companies, educational institutions, and public sector agencies. 

HCL - Huawei OceanStor Dorado V3

$
0
0

Challenge

Product Information

Product Family: Huawei OceanStor 
Status:  Veeam Ready – Repository 
Classification Description: Verified backup storage that supports all Veeam backup and restore features. 

Solution

Product Details

Model number: Huawei OceanStor Dorado V3 All-Flash Storage System 
Number of Drives: 12 
Drive type: 400 GB SSD 
Firmware version: V3 
General product family overview: Purpose built for mission-critical services, the OceanStor Dorado V3 all-flash storage system provides high-performance, high-reliability, and high-efficiency storage services. 

The proprietary FlashLink technology ensures 4 million IOPS at 500 μs consistent latency. The HyperMetro gateway-free active-active design delivers 99.9999% availability with only 1 ms latency. Industry-leading inline de-duplication and compression technologies help reduce your initial purchase cost. 

The offering fully satisfies the storage requirements of databases, virtual desktops, virtual servers, and other applications, smoothing the way for customers in finance, manufacturing, government, telecom, and a host of other sectors in their move to the all flash era. 

 

Veeam Details

Veeam Build Number: 9.5 
Veeam Settings:  

  • Repository Type: Windows 
  • Deduplication: Yes 
  • Compression: Optimal 
  • Storage Optimization: Local target  
  • Per-VM Backup Files: Yes 
  • Decompress before storing: Yes  
  • Align backup file blocks: Yes 

More Information

Company Information

Company name: Huawei Technologies Co., Ltd. 
Company overviewhttp://www.huawei.com/en/ 

HCL - Huawei OceanStor V3 Converged Storage

$
0
0

Challenge

Product Information

Product Family: Huawei OceanStor 
Status:  Veeam Ready – Archive 
Classification Description: Verified disk archive storage that can be used as a Backup Copy target.  Synthetic full backups, granular restores, and vPower features may not provide sufficient performance or be supported.

Solution

Product Details

Model number: Huawei OceanStor V3 Converged StorageSystem 
Number of Drives: 25 
Drive type: 600 GB SAS 
Firmware version: V3 
General product family overview: Huawei OceanStor V3 Converged Storage provides Cloud architecture-oriented operating system, high-performance hardware platform, and a complete suite of smart management software. Convergence of file, flash, backup, high-, mid, and low-end storage, and third-party storage – allocate the resources you need, when you need them. Leading active-active integrated SAN and NAS solution, ensuring business continuity for customers.. 

 

Veeam Details

Veeam Build Number: 9.5 
Veeam Settings:  

  • Repository Type: Windows 
  • Deduplication: Yes 
  • Compression: Optimal 
  • Storage Optimization: Local target  
  • Per-VM Backup Files: Yes 
  • Decompress before storing: Yes  
  • Align backup file blocks: Yes

More Information

Company Information

Company name: Huawei Technologies Co., Ltd. 
Company overviewhttp://www.huawei.com/en/


An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full

$
0
0

Challenge

After installing Windows April update KB4015553 Veeam jobs and services fail at different operations with:
 
"An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full"

Cause

This particular update causes the system to run out of free RPC ports.

Solution

Uninstall KB4015553 from the affected servers as a workaround.

More Information

https://social.technet.microsoft.com/Forums/SharePoint/en-US/492f62ce-aec8-4777-98f0-0c9dbf302954/problem-with-kb4015553?forum=winserverwsus

Release Notes for Veeam Backup & Replication 9.5 Update 1

$
0
0

Challenge

Release Notes for Veeam Backup & Replication 9.5 Update 1

Cause

Please note that this is an incremental update of the Veeam Backup & Replication version 9.5. If you are upgrading from previous versions of the product, please download the 9.5 full ISO image that already includes Update 1 from the general download page.
Please confirm you are running version 9.5.0.580, 9.5.0.711 or 9.5.0.802 prior to installing this update. You can check this under Help | About in Veeam Backup & Replication console. After upgrading, your build will be version 9.5.0.823.

Prior to installing this update, please reboot the Veeam server to clear any locks on the product files. After reboot, please stop and disable all Veeam jobs, stop all Veeam services and apply the update. Once Veeam Backup Service starts, open the console and follow the Upgrade wizard to update all remote components.

Solution

As a result of on-going R&D effort and in response to customer feedback, Update 1 includes over 300 enhancements and bug fixes, the most significant of which are listed below.

Platform support
  • Dell EMC Data Domain OS 6.0 support, including synthetic full backup performances optimizations, backup retention and health check reliability improvements.
  • HPE 3PAR 3.2.2 MU3 support, including multiple storage API interaction improvements for added reliability and performance.
  • HPE StoreOnce 3.15.1 support, bringing Instant VM Recovery to Catalyst-based backup repositories.
  • Veeam Agent for Linux 1.0 support.
  • Veeam Agent for Microsoft Windows 2.0 Public Beta (build 2.0.0.594) support.
  • VMware vSAN 6.5 support.
  • VMware vSphere 6.5 support (see the next section for details).

VMware vSphere 6.5 support
  • Encrypted VMs support. vSphere 6.5 introduces VMs with encrypted disks. Such VMs can be backed up in hot add and network (NBD) transport modes only, with hot add mode requiring that the backup proxy itself is an encrypted VM. There are no limitations around restores, because backups contain unencrypted VM data (remember to enable backup encryption if that is a concern).
  • VMFS6 support. vSphere 6.5 introduces the new VMFS version, and this update allows you to leverage advanced functionality such as Backup from Storage Snapshots and Veeam Explorer for Storage Snapshots for VMs with virtual disks residing on VMFS 6 datastores.
  • Virtual hardware version 13 support. vSphere 6.5 introduces the new VM hardware version which increases some configuration maximums and adds ability to add NVMe controllers to a VM. This update adds ability to process such VMs.
  • NBD compression. VDDK 6.5 adds ability to enable native NBD traffic compression. To control the compression level, create VMwareNBDCompressionLevel (DWORD) registry value under HKLM\SOFTWARE\Veeam\Veeam Backup and Replication key on the backup server with value from 0 (no compression) to 3 (best compression). Please expect significant performance impact from enabling NBD compression unless you’re backing up over slow or busy management network.
  • New guest interaction API support. vSphere 6.5 discontinued VIX API that previous Veeam versions leveraged for network-less guest interaction for functionality such as application-aware processing. As part of vSphere 6.5 support effort, we have switched the corresponding functionality to the new vSphere API for guest interaction, so that you can continue using the existing product functionality with vSphere 6.5.
  • New VM tag API support. vSphere 6.5 introduces new APIs for programmatic access and management of vSphere tags. With its support by Veeam, you can continue using advanced backup policies based on tags even after you upgrade to vSphere 6.5

Engine
  • Double-byte support. Double-byte characters are now supported in the virtual infrastructure object names (such as VM name) and Veeam object names (such as job name).
  • Export performance improvements. Disk content export from agent-based backups now processes multiple disks in parallel, as opposed to sequentially.

Backup Copy
  • Performance improvements. Performance of Backup Copy jobs with large number of VMs (hundreds/thousands) was improved.
  • Reliability improvements. Added transfer resume functionality for transparent handling of short network connection outages in certain backup copy process phases where they were not previously used.

Tape
  • Reliability improvements. Added transfer resume functionality for transparent handling of short network connection outages between a source backup repository and a tape server.

File-level recovery
  • OES 2015 SP1 support. Open Enterprise Server 2015 SP1 support for file-level recovery from NSS volumes with Trustee Index enabled.

Self-service portal for vCloud Director
  • Side by side restore. Tenants are now able to restore VMs and vApps without overwriting the original object by selecting Keep restore option, in which case the restored object will be created with the _restored suffix as opposed to overwriting the original object (which is still possible by selecting Overwrite restore option).
  • Job mapping. Added Set-VBRvCloudOrganizationJobMapping PowerShell cmdlet that allows to map a vCloud backup job and associated guest processing credentials to the existing self-service org record to enable tenants to start using self-service portal functionality for the existing jobs and backups.

VMware
  • Direct SAN transport improvements. Improved direct SAN transport selection on backup proxies with disabled MPIO, added support for parallel restore through multiple Direct SAN backup proxies.
  • Restore without storage profile. The newly added Default policy container in the Select Datastore dialog allows restoring, replicating or migrating virtual machines without their virtual disks inheriting an existing storage profile assigned to the target datastore.
  • Restore logic improvements. Full VM restore and Instant VM Recovery operations will now preserve workingDir parameter of the original VM.
  • Broker service enhancements. Added experimental Broker Service behavior when it does not try to keep the vSphere infrastructure cache up-to-date continuously. Instead, it will query vSphere infrastructure hierarchy changes only when hierarchy data is requested, but no less often than the specified timeout. Using this mode significantly reduces vCenter Server traffic in large environments while only slightly delaying tasks requiring vSphere hierarchy data. To enable this mode, create VmwareForcedHierarchyUpdatePeriod (DWORD) registry value under HKLM\SOFTWARE\Veeam\Veeam Backup and Replication key on the backup server with the value in seconds (900 is the recommended value).

User interface
  • Asian OS locales support. Veeam Backup & Replication console now supports installation on operating systems with Asian locales, where it was previously unusable due to misplaced UI controls. Update 1 has been tested on all most common Asian locales and validated by local Veeam sales teams of the corresponding regions.
  • Experimental high DPI monitors support. We've made the first step towards high resolution monitors support - and while there's still work to be done, the UI is now more usable on DPI settings above 100%. This did require changing the UI font, resizing all dialogs and adjusting placement for some UI controls - so you will notice slightly different UI look after installing the update.
  • Wizard improvements. We've renamed the Next button before each step that applies the current settings into the configuration database to Apply in all wizards to make the consequences of clicking Next more obvious.
  • Support ID copy. By popular demand, we've enabled you to copy your Support ID from the License Information dialog into the Windows Clipboard.

This update also resolves the following common support issues:
  • Fixed an issue which caused monthly Active Full backup schedule to reset to the default one (First Monday of the month) after upgrading to version 9.5.
  • Improved reliability of establishing connections to Linux servers by addressing a number of Linux version-specific issues and updating SSH client.
  • Improved Direct Restore to Microsoft Azure proxy appliance deployment and management functionality.
  • Improved backup placement logic improvements for reversed-incremental backup jobs targeting scale-out backup repository with per-VM backup file chains disabled.
  • Addressed an issue with enabling CBT on a VMware VM when backup server is running on certain non-English locales, for example Turkish.
  • Addressed a number of minor issues with Veeam Cloud Connect.

More Information

[[DOWNLOAD|DOWNLOAD UPDATE|https://www.veeam.com/download_add_packs/vmware-esx-backup/kb2222/]]
MD5 checksum for setup.exe: b43c5e218d7e31843ddca7f2ab39c84c

If you are looking for Veeam ONE 9.5 Update 1, please follow this link.

Release Notes for Veeam Backup & Replication 9.5 Update 2

$
0
0

Challenge

Release Notes for Veeam Backup & Replication 9.5 Update 2

Cause

Please confirm you are running version 9.5.0.580, 9.5.0.711, 9.5.0.802 or 9.5.0.823 prior to installing this update. You can check this under Help | About in Veeam Backup & Replication console. After upgrading, your build will be version 9.5.0.1038.

Solution

As a result of on-going R&D effort and in response to customer feedback, Update 2 includes hundreds of enhancements and bug fixes, the most significant of which are listed below.

Platform Support
  • Cisco HyperFlex Systems (formerly HX-Series/SpringPath) support for Backup from Storage Snapshots functionality.
  • HPE 3PAR StoreServ 3.3.1 support and improved scalability by migrating some API calls from SSH to RESTful API.
  • Microsoft Hyper-V BigEndian platform support.
  • Microsoft Exchange 2016 CU5 support for mailbox item recovery with Veeam Explorer for Microsoft Exchange.
  • NetApp ONTAP 9.1 support.
  • Oracle 12.2 support for all Oracle database backup and restore functionality.
  • Veeam Agent for Linux 1.0 Update 1 (build 1.0.1.364) support, including new 1-Click FLR via Veeam Backup Enterprise Manager support.
  • Veeam Agent for Microsoft Windows 2.0 GA (build 2.0.0.700) support, including application-item recovery support from agent backups.
  • VMware vCloud Director 8.20 support.
  • VMware vSAN 6.6 support.
File-level recovery
  • Restore to original location. If the original VM cannot be found by moRef identifier (as is the case if it was deleted and then restored from backup), the Multi-OS File Level Recovery wizard will prompt the user to specify target VM manually instead of failing.
Replication
  • Failback performance improvements. Failback can now optionally use changed block tracking data to determine the changes between the original VM and replica VM state. This dramatically accelerates the failback performance due removing the need to read the entire original VM disks (“Calculating original signature” operation). For VMware hypervisor, we recommend that this option is not used if the failover event was triggered by a disaster that involved host or storage crash or dirty shutdown, as CBT data may be inconsistent in this Case.
Storage integration
  • Optional NFS exports creation. You can now prevent Veeam from automatically creating the required NFS export rules on the NetApp storage by clearing the “Create required NFS export rules automatically” in the New NetApp Storage wizard.
  • Performance improvements. The performance of Backup from Storage Snapshot with application-aware processing enabled has been noticeably improved.
Tape
  • LTO7 path failover support. Added support for LTO7 tape libraries with path failover functionality enabled.
  • Exclusive drivers support. Added support for exclusive tape library drivers (on top of already supported non-exclusive drivers).
User interface
  • VeeamZIP usability improvements. VeeamZIP menu item with the default location will not be shown until a user performs VeeamZIP for the first time, selecting the required destination during this process. After that, said menu item will appear, reflecting the previously selected location. This should prevent users from accidentally overfilling the default C:\Backup VeeamZIP location.
  • ExaGrid preset. Changed the default concurrent tasks number from 1 to 10 per vendor request.
PowerShell
  • Start-VBRZip enhancements. Added NetworkCredentials parameter to Start-VBRZip cmdlet to enable automating backups to file shares.
  • Backup import enhancements. Added support for importing backups from DELL EMC Data Domain and HPE StoreOnce repositories.
Setup
  • Components auto-update. Update setup now offers an option to initiate the upgrade of all remote Veeam component automatically. This covers all Veeam components except Network Extension Appliances (part of Veeam Cloud Connect Replication functionality)
  • Update performance. The number of concurrently updated remote components have been increased to 10 to reduce the large backup environments update time, especially with high latency networks. This value can be further increased by creating MaxConcurrentComponentUpgrades (DWORD) registry value under HKLM\SOFTWARE\Veeam\Veeam Backup and Replication key on the backup server.
  • Streamlined updates. Installing the update no longer requires to disabling all jobs and stopping Veeam services manually. However, you still have to ensure there’s no running backup or restore jobs before installing the update.
Veeam Cloud & Service Provider Partners
  • Update 2 introduces Veeam Backup Remote Access functionality, scalability and reporting enhancements for Veeam Cloud Connect platform, and improved offline usage reporting. For the full list of service provider specific enhancements and bug fixes, please refer to the issue tracking topic in the private VCSP forum. If you are VCSP but don't have access, please apply to Cloud & Service Providers group using Veeam forum's User Control Panel.
This update also resolves the following common support issues:
  • Networkless restores for files above 10MB should no longer result in corrupted file restored.
  • Backup infrastructure resource scheduling algorithms have been improved to reduce job initialization delays in large infrastructures.
  • Shutting down or rebooting the backup server should now correctly stop all jobs.
  • Repository throttling rules should now correctly apply to Veeam Agent for Windows 2.0 backups.
  • Instant VM Recovery should now be possible for VMs for which the original host is no longer registered with Veeam.
  • Fixed backup metadata resync issues caused by using storage-based replication or similar means of transferring backup files between Veeam backup repositories registered in the same backup server.
  • Improved SureBackup performance and domain controller (DC) recoverability testing logic. As a side effect, the recoverability testing for DCs backed up without application-aware processing will always fail (which however represents typical real-life recovery result from such a backup).
  • Improved Hyper-V 2016 RCT backup performance and off-host backup reliability.
  • Improved Direct NFS transport mode compatibility with Tintri storage.

More Information

[[DOWNLOAD|DOWNLOAD UPDATE|https://www.veeam.com/download_add_packs/vmware-esx-backup/kb2283/]]

MD5 checksum for veeam_backup_9.5.0.1038.update2_setup.exe: 3c4f6a6162b382c13489ab37e6b03fed

If you use Veeam ONE to monitor Veeam Cloud Connect, make sure you install this update. You will need to install the update for Veeam ONE first, then install update 9.5.0.1038 for Veeam Backup & Replication.

Veeam One - Steps to Compile Logs

$
0
0

Challenge

In some cases, logs will need to be reviewed by Veeam Support to help diagnose issues.

Solution

There are 2 ways to compile logs: 

1. Monitor Server and Monitor Client logs (If Remote Monitor client is being used these logs may be requested in addition to server logs): 
Open Veeam ONE Monitor and navigate to Help -> Support Information 
Once complete click Open folder to open location of extracted logs then upload to Customer portal or FTP as explain below.
User-added image
User-added image
 

2. All Veeam One logs for all components (Monitor, Reporter, Business View, etc.): 
In Veeam One Monitor console navigate to Options > Server Settings > Other Settings > Launch Support Utility. In the lower left corner click Export Logs 
or 
Browse to or run "C:\Program Files\Common Files\Veeam\Veeam ONE Settings\VeeamOneSettings.exe"

User-added image
Exporting logs may take a while. When it is finished, you will be asked to choose the location for the logs to be saved to.
 
User-added image
 

Please attach these to your case, or in the event that the total attachment size is under 3.5MB, you may attach via email reply.
User-added image
 
If none of these options for upload are working, please notify Veeam Support and an engineer will provide FTP credentials for the case. Once you receive the FTP link, follow the below instructions to upload the logs via FTP. You can start by copy and pasting the URL with credentials, as this has the credentials built into the link. Once you have copied the URL, you can use a Windows\File Explorer browser (windows key + e) and paste the link into that browser, or your preferred FTP client.

Note: Internet Explorer, Firefox, or any other browser will not work for the FTP upload.

1. Open Windows\File Explorer.
 User-added image
 
 2. Paste URL with credentials.
 User-added image
 
 3. Drag and Drop the Zipped folder or individual logs into the browser.
User-added image
 
 4. Once completed, e-mail your Veeam Support engineer to inform them the logs have been successfully uploaded to ensure the quickest review and response.

 

More Information

Below are the relative log path lists for Veeam One. If there are difficulties compiling the logging requested via the Veeam One support tool instructions above, please obtain the files from the appropriate directory below and provide Veeam Support a .zip file copy.

Veeam ONE Monitor - C:\Users\<USER>\AppData\Local\Veeam\Veeam ONE Monitor
Veeam Reporter\Business View Service logs - C:\Users\<USER>\AppData\Local\Veeam\Veeam ONE
Veeam Reporter Web logs - C:\Program Files\Veeam\Veeam ONE\Veeam ONE Reporter Web\Veeam\Veeam ONE Reporter
Veeam Business View Web logs - C:\Program Files\Veeam\Veeam ONE\Veeam ONE Business View Web\Generated
VeeamOneSettings - C:\Users\<USER>\AppData\Local\Veeam\VeeamOneSettings

Manually moving backup files to or from a Scale-Out Backup Repository

$
0
0

Challenge

You have backup files on a standard repository that you wish to move to a Scale-Out Backup Repository (SOBR).

Cause

Scale-Out Backup Repositories have special considerations for how backup files and metadata are distributed. Thus, simply copying files to one extent may be insufficient for a rescan of the repository to detect them properly and import them.
 

Solution

If you have not yet created a SOBR:
  1. Create simple repositories, and at least one of them should be a path where backup files to be imported are stored (e.g., if backup files are in D:\Backups\Backup_Job_1\ then create a repository referencing the path D:\Backups).
  2. Re-scan the simple repository or repositories, and ensure all backups are imported.
  3. Create the SOBR and add the relevant repositories as extents.
  4. Within the creation process Veeam will inform via confirmation prompt that “Jobs and backups using this extent will be automatically updated to point to the scale-out backup repository.”
  5. User-added image
  6. If any jobs are not mapped to the backup files now within the SOBR, map them per the standard process.
     
If you have a SOBR and need to introduce new backups:
  1. Place the backup files to be imported in a temporary path. (e.g., if backup files are in D:\Backups, either copy or move them to D:\Backups-temp. A move is usually much faster.)
  2. Create a new simple backup repository that references this path (in our example, D:\Backups-temp).
  3. Re-scan the repository, and ensure all backups are imported.
  4. You can map the pre-existing job to the backup files’ new location now, or at the end.
  5. Edit your existing SOBR and add the new temporary repository to its list of extents.
  6. Place the new temporary repository extent in “Maintenance” mode.
  7. Evacuate the extent. Veeam will redistribute the backup files to other extents in the SOBR.
  8. If you did not map the original job in step 4, do so now.

If redistribution of files is not desired or necessary, you can simply copy the folder containing VBM and backup files to an existing extent. Rename both path and VBM to ensure import, and re-scan.

More Information

Note that if the VBM or the path to it does not conform to naming standards, Veeam Backup & Replication will fail to import it.
  • Allowed alphanumeric characters: a-z, A-Z, 0-9
  • Allowed special characters: _ - . + = @ ^
  • Must not contain spaces; use underscores in their place
 Moving backup files from one or multiple SOBR extents is viable as well. There are a few points to note:
  • Make sure to copy files from the backup chain from all extents.
  • SOBR backup chains are typically per-VM backup files. Simple repositories are typically per-job backup files. The chain will retain this method until an active full is run on the job to enforce the change.
  • The VBM file will exist in all extents. All VBMs for a particular backup job within a single SOBR should be identical. As a result, the target simple backup repository needs only contain one VBM.

vPower NFS Troubleshooting Mounting Issues

$
0
0

Challenge

During SureBackup, Instant Recovery, or Other-OS FLR operation, you receive the error: 

"Error during the configuration of the host: NFS Error: Unable to Mount filesystem: Unable to connect to NFS server"

The NFS datastore cannot be mounted to the host, so vPower NFS based restores fail.

Cause

There are several possible causes for this:

  • The Veeam vPower NFS Service is not started. (http://www.veeam.com/kb1094)
  • The Veeam server is on a subnet that does not have access to a VMkernel port on the ESXi host.
  • The Veeam server cannot reach the VMkernel port on the ESXi host due to a firewall configuration.
  • Datastores within the environment that appear as (Invalid).
  • An issue within the VMware environment is preventing the NFS datastore from being mounted.

Solution

In order to know which server to troubleshoot, one must know which server is acting as the vPower NFS server for the repository. To find this edit the repository for the backup files to be used in the restore. On the ‘vPower NFS’ tab there is a dropdown box designating which server is being used. The server listed is where the troubleshooting must be performed from.
 
*Note: An isolation step can be to try changing which server is chosen as the vPower NFS server in the Repository settings.
 
If the vPower NFS service is not running on the server designated within the repository settings, please review: http://www.veeam.com/kb1094
 
──────────────────────────────────────────────────────────
The following is a list of common troubleshooting steps
──────────────────────────────────────────────────────────

 

  • Testing for connectivity to and from VMkernel Port

Test from vPower NFS server to VMkernel port:
1.       Within a vSphere Client select the ESX(i) host that the NFS Datastore is being connected to.
2.       Go to the Configuration Tab
3.       Go to the Networking section
4.       Look for a VMkernel port, and note its IP
5.       Ping the VMkernel port from the vPower NFS server

 Test from VMkernel port to vPower NFS server
1.       Connect to the ESX(i) host that the NFS datstore is being connected to via SSH**
2.       Using the vmkping command to test connectivity to the vPower NFS servers

  • Remove “(Invalid)” datatstores:

Within a vSphere Client check the Configuration>Storage section of each host for datastores starting with “VeeamBackup_”, specifically ones that show up in italics with (Inactive). Unmount each of these and try the restore or mount procedure again. 

1.       Within a vSphere Client select the ESX(i) host that the NFS Datastore is being connected to.
2.       Goto the Configuration Tab
3.       Goto the Storage section
4.       Click Add Storage…
5.       Select the radio option for ‘Network File System’
6.       For “Server”, enter either  the IP or Hostname of the vPower NFS Server
7.       For “Folder”, enter “/VeeamBackup_<servername>”  servername is the NetBIOS name of the vPower NFS Server. If your vPower NFS server is added by IP, you need to specify VeeamBackup_XXX.XXX.XXX.XXX
8.       Do not check the box for Mount NFS read only
9.       Enter in to the Datastore name the same as folder without the starting forward slash. i.e. “VeeamBackup_<servername>”
10.   Click next and complete the process.

 

  • Known Issue: “Unable to Mount VPower NFS Specified Key Name or Identifier Already Exists”

Please review: http://www.veeam.com/kb1690

 

  • Known Issue: Another service is locking a port needed by vPower NFS:
    1. Open an Administrator Command Prompt
    2. Run the following commands
         netstat -bona > portlist.txt
        notepad portlist.txt
    3. Search the text file and confirm that the following ports are not locked by another process.

     111
     6161
 

More Information

**SSH may be disabled on your ESXi host. Below are directions to enable SSH on host so that you may connect and use the vmkping command as part of the troubleshooting steps above.
Note: Veeam's vPower NFS does not require SSH to be enabled on the host, please remember to disable SSH after testing with vmkping.


1.  To enable SSH from the vSphere Client
2.  Select the host and click the Configuration tab.
3.  Click Security Profile in the Software panel.
4.  In the Services section, click Properties.
5.  Select SSH and click Options.
6.  Change the SSH options.
     a.  To temporarily start or stop the service, click the Start or Stop button.
     b.  To enable SSH permanently, click Start and stop with host. The change takes effect the next time you reboot the host.
7.  Click OK.
 
For issues related to the vPower NFS Service not starting please review: http://www.veeam.com/kb1094

 

HCL - EMC XtremIO

$
0
0

Challenge

Product Information

Product Family: Dell EMC XtremIO 
Status: Veeam Ready - Repository 
Classification Description: Verified backup storage that supports all Veeam backup and restore features.

Solution

Product Details

Model number: 5TB, 10TB, 20TB, 40TB 
Number of Drives: 25 
Drive type: 400 GB, 800 GB, 1.6TB SSD
Firmware version: 4.x 
Additional support: Any hardware configuration with an equal or greater hardware configuration

General product family overview: The XtremIO Storage Array from Dell EMC is an all-flash system that leverages a scale-out architecture. The system is built via building blocks, called X-Bricks, which are SAN appliances that can be clustered together to grow performance and capacity as required. The Dell EMC XIOS operating system balances data across all solid-state arrays and supports features such as deduplication, compression, and snapshots. The all-flash architecture is viable for use cases including virtual desktop infrastructures (VDI), server environments, or database and analytics workloads. 

 

Veeam Details

Veeam Build Number: 9.0.0.902 
Veeam Settings:  
Repository Type: Windows 
Deduplication: No 
Compression: Optimal 
Storage Optimization: Local Target 
Per-VM Backup Files: No 
Decompress before storing: No 
Align backup file blocks: No

More Information

Company Information

Company name: Dell EMC 
Company overview: As a member of the Dell Technologies family of businesses, Dell EMC serves a key role in providing the essential infrastructure for organizations to build their digital future, transform IT and protect their most important asset, information. Dell EMC enables our enterprise customers’ IT and digital business transformation through trusted hybrid cloud and big data solutions, built upon a modern data center infrastructure that incorporates industry-leading converged infrastructure, servers, storage and cybersecurity technologies. 

Dell EMC brings together Dell’s and EMC’s respective strong capabilities and complementary portfolios, sales teams and R&D. We seek to become the technology industry’s most trusted advisor, providing capabilities spanning strategy development, consultative services and solution deployment and support to help our customers and partners drive the digital transformation of their businesses.


HCL Tape - ULT3580-TD4 QuestDell

$
0
0

Challenge

Product Information

Product Family: Quest Software DR Series Appliance
Status: Veeam Ready - Tape 
Classification Description: Tape device where available hardware features have been tested to work with Veeam. 

Solution

Product Details

Model number: DR4300, DR4300e and DR6300  
Library firmware version: 0104 
Drive firmware version: 0104 
Driver for tape drive: 6.2.4.8 
Driver for media changer: 2.3.0.0 
Media Type: DR-VTL 
General product family overview: DR’s Virtual Tape Library (VTL) is an emulation of a physical tape library (SUN/STK L700) on a disk-based deduplication and compression system such as the DR Series system. The tape library is exposed to a Data Management Application (DMA) as if it is a physical library with tape drives and cartridges, which the application uses for backup. 

 

DR series system supports following VTL tape access protocols – 

  • NDMP 
  • FC 
  • iSCSI (Configured in this document) 

 

Note

1. Changer gets detected as "Unknown Medium Changer" and it is supported for Veeam. Just need to change the changer properties in Veeam to use native SCSI commands. 
2. IBM tape Drivers are mandatory to install for Drives and can be downloaded from IBM site: 
Driver name - IBMTape.x64_w12R2_6248_WHQL_Cert 

 


Veeam Details

Veeam Build Number: 9.5.0.823

More Information

Company Information

Company name: Quest Software 
Company overview: Quest Software is the leading partner working tirelessly to make sure your information technology is designed for you and by you. This is our mission, and we're in this together.

Manually moving backup files to or from a Scale-Out Backup Repository

$
0
0

Challenge

You have backup files on a standard repository that you wish to move to a Scale-Out Backup Repository (SOBR).

Cause

Scale-Out Backup Repositories have special considerations for how backup files and metadata are distributed. Thus, simply copying files to one extent may be insufficient for a rescan of the repository to detect them properly and import them.
 

Solution

If you have not yet created a SOBR:
  1. Create simple repositories, and at least one of them should be a path where backup files to be imported are stored (e.g., if backup files are in D:\Backups\Backup_Job_1\ then create a repository referencing the path D:\Backups).
  2. Re-scan the simple repository or repositories, and ensure all backups are imported.
  3. Create the SOBR and add the relevant repositories as extents.
  4. Within the creation process Veeam will inform via confirmation prompt that “Jobs and backups using this extent will be automatically updated to point to the scale-out backup repository.”
  5. User-added image
  6. If any jobs are not mapped to the backup files now within the SOBR, map them per the standard process.
     
If you have a SOBR and need to introduce new backups:
  1. Place the backup files to be imported in a temporary path. (e.g., if backup files are in D:\Backups, either copy or move them to D:\Backups-temp. A move is usually much faster.)
  2. Create a new simple backup repository that references this path (in our example, D:\Backups-temp).
  3. Re-scan the repository, and ensure all backups are imported.
  4. You can map the pre-existing job to the backup files’ new location now, or at the end.
  5. Edit your existing SOBR and add the new temporary repository to its list of extents.
  6. Place the new temporary repository extent in “Maintenance” mode.
  7. Evacuate the extent. Veeam will redistribute the backup files to other extents in the SOBR.
  8. If you did not map the original job in step 4, do so now.

If redistribution of files is not desired or necessary, you can simply copy the folder containing VBM and backup files to an existing extent. Rename both path and VBM to ensure import, and re-scan.

More Information

Note that if the VBM or the path to it does not conform to naming standards, Veeam Backup & Replication will fail to import it.
  • Allowed alphanumeric characters: a-z, A-Z, 0-9
  • Allowed special characters: _ - . + = @ ^
  • Must not contain spaces; use underscores in their place
 Moving backup files from one or multiple SOBR extents is viable as well. There are a few points to note:
  • Make sure to copy files from the backup chain from all extents.
  • SOBR backup chains are typically per-VM backup files. Simple repositories are typically per-job backup files. The chain will retain this method until an active full is run on the job to enforce the change.
  • The VBM file will exist in all extents. All VBMs for a particular backup job within a single SOBR should be identical. As a result, the target simple backup repository needs only contain one VBM.

vPower NFS Troubleshooting Mounting Issues

$
0
0

Challenge

During SureBackup, Instant Recovery, or Other-OS FLR operation, you receive the error: 

"Error during the configuration of the host: NFS Error: Unable to Mount filesystem: Unable to connect to NFS server"

The NFS datastore cannot be mounted to the host, so vPower NFS based restores fail.

Cause

There are several possible causes for this:

  • The Veeam vPower NFS Service is not started. (http://www.veeam.com/kb1094)
  • The Veeam server is on a subnet that does not have access to a VMkernel port on the ESXi host.
  • The Veeam server cannot reach the VMkernel port on the ESXi host due to a firewall configuration.
  • Datastores within the environment that appear as (Invalid).
  • An issue within the VMware environment is preventing the NFS datastore from being mounted.

Solution

In order to know which server to troubleshoot, one must know which server is acting as the vPower NFS server for the repository. To find this edit the repository for the backup files to be used in the restore. On the ‘vPower NFS’ tab there is a dropdown box designating which server is being used. The server listed is where the troubleshooting must be performed from.
 
*Note: An isolation step can be to try changing which server is chosen as the vPower NFS server in the Repository settings.
 
If the vPower NFS service is not running on the server designated within the repository settings, please review: http://www.veeam.com/kb1094
 
──────────────────────────────────────────────────────────
The following is a list of common troubleshooting steps
──────────────────────────────────────────────────────────

 

  • Testing for connectivity to and from VMkernel Port

Test from vPower NFS server to VMkernel port:
1.       Within a vSphere Client select the ESX(i) host that the NFS Datastore is being connected to.
2.       Go to the Configuration Tab
3.       Go to the Networking section
4.       Look for a VMkernel port, and note its IP
5.       Ping the VMkernel port from the vPower NFS server

 Test from VMkernel port to vPower NFS server
1.       Connect to the ESX(i) host that the NFS datstore is being connected to via SSH**
2.       Using the vmkping command to test connectivity to the vPower NFS servers

  • Remove “(Invalid)” datatstores:

Within a vSphere Client check the Configuration>Storage section of each host for datastores starting with “VeeamBackup_”, specifically ones that show up in italics with (Inactive). Unmount each of these and try the restore or mount procedure again. 

1.       Within a vSphere Client select the ESX(i) host that the NFS Datastore is being connected to.
2.       Goto the Configuration Tab
3.       Goto the Storage section
4.       Click Add Storage…
5.       Select the radio option for ‘Network File System’
6.       For “Server”, enter either  the IP or Hostname of the vPower NFS Server
7.       For “Folder”, enter “/VeeamBackup_<servername>”  servername is the NetBIOS name of the vPower NFS Server. If your vPower NFS server is added by IP, you need to specify VeeamBackup_XXX.XXX.XXX.XXX
8.       Do not check the box for Mount NFS read only
9.       Enter in to the Datastore name the same as folder without the starting forward slash. i.e. “VeeamBackup_<servername>”
10.   Click next and complete the process.

 

  • Known Issue: “Unable to Mount VPower NFS Specified Key Name or Identifier Already Exists”

Please review: http://www.veeam.com/kb1690

 

  • Known Issue: Another service is locking a port needed by vPower NFS:
    1. Open an Administrator Command Prompt
    2. Run the following commands
         netstat -bona > portlist.txt
        notepad portlist.txt
    3. Search the text file and confirm that the following ports are not locked by another process.

     111
     6161
 

More Information

**SSH may be disabled on your ESXi host. Below are directions to enable SSH on host so that you may connect and use the vmkping command as part of the troubleshooting steps above.
Note: Veeam's vPower NFS does not require SSH to be enabled on the host, please remember to disable SSH after testing with vmkping.


1.  To enable SSH from the vSphere Client
2.  Select the host and click the Configuration tab.
3.  Click Security Profile in the Software panel.
4.  In the Services section, click Properties.
5.  Select SSH and click Options.
6.  Change the SSH options.
     a.  To temporarily start or stop the service, click the Start or Stop button.
     b.  To enable SSH permanently, click Start and stop with host. The change takes effect the next time you reboot the host.
7.  Click OK.
 
For issues related to the vPower NFS Service not starting please review: http://www.veeam.com/kb1094

 

Veeam Management Pack for System Center integration with OMS

$
0
0

Challenge

This KB contains information about latest version of Veeam Management Pack integration with Microsoft Operations Management Suite

Cause


Currently version of OMS integration consists of the following components:

-    Veeam MP OMS Integration Pack (MPB file that should be imported in SCOM)
-    Veeam Morning Coffee for VMware OMS view
-    Veeam Morning Coffee for Hyper-V OMS view
-    Veeam Morning Coffee for Backup OMS view
-    Veeam Management Pack Health dashboard OMS view
 

Solution

Currently OMS integration is part of Update 4 for Veeam MP v8.

You can download VeeamMP OMS Integration components here.
 

Deploying Network Hub in On-Premises Network

$
0
0

Challenge

This article contains instructions for deploying the network hub in an on-premises network.

Cause

If you want to place the network hub in an on-premises network, you must deploy a Veeam PN appliance in the VMware vSphere environment. The Veeam PN appliance is distributed as an OVA package. The package contains a pre-configured 64-bit Linux virtual appliance on which Veeam PN components are set up.
 

Solution

To deploy and set up the network hub, you will need to perform the following steps:
1. Deploy a Veeam PN appliance from the OVA package.
2. Configure initial network hub settings.


Deploying Veeam PN Appliance

To deploy the network hub from the OVA package:

1. Download the Veeam PN OVA package from: https://www.veeam.com/downloads.html and save it in a network shared folder.

2. In VMware vSphere Web Client, open the hosts and clusters inventory list and select a host on which you want to register the appliance.

3. From the menu at the top of the working area, select Actions > Deploy OVF Template.

4. At the Select source step of the wizard, select Local file, click Browse and browse to the Veeam PN OVA package.

User-added image

5. Follow the next steps of the wizard and specify appliance deployment settings: datastore on which the appliance disk must be placed, disk format, network to which the appliance must be connected and so on.

6. At the last step of the wizard, select the Power on after deployment check box and click Finish.

User-added image

VMware vSphere will deploy the Veeam PN appliance on the selected host. The deployment process typically takes several minutes. Wait for this process to complete and proceed to the network hub configuration.


Configuring Initial Network Hub Settings

Right after deployment, the Veeam PN virtual appliance is impersonalized. To set up the network hub, you must customize the appliance — configure the network hub settings on it.

To configure initial settings for the network hub:

1. In VMware vSphere Web Client, navigate to the Summary tab and get an IP address of the appliance.

2. In a web browser, access the network hub portal by the following address: https://<applianceIP>, where <applianceIP> is the IP address of the deployed appliance.
When you access the network hub portal in the web browser, the browser will display a warning notifying that the connection is untrusted. Ignore the warning and agree to proceed to the portal.

3. At the Welcome to Veeam PN screen of the portal, log in to the network hub portal under the in-built Administrator account. The Administrator account has the following credentials:
Username: root
Password: VeeamPN
Click Login.

User-added image

4. After you log in to the portal for the first time, Veeam PN will offer you to change the password for the built-in account. On the displayed screen, enter the old and new password and click Change.

User-added image

5. At the first step of the Initial Configuration wizard, select Network hub.

6. Click Next.

User-added image

7. Veeam PN uses a self-signed SSL certificate to ensure secure data communication in the VPN. Specify parameters for the self-signed certificate: your company details, certificate lifetime (validity) and certificate key length (dhBits).

8. Click Next.

Note: By default, Veeam PN generates a 2048-bit certificate. If you select a key of a greater size, the process of certificate generation may take a long time.

User-added image

9. Veeam PN will generate a self-signed SSL certificate with the specified parameters. After the certificate is generated, click OK, then click Next to proceed to the network hub setup.

User-added image

10. Specify VPN settings for the network hub:
 

  • In the Network hub public IP or DNS name field, specify an IP address or full DNS name for the network hub. The IP address or DNS name must be public and accessible from all networks that you add to the VPN, and by all remote users who must have access to the VPN.
  • Select the Enable site-to-site VPN check box if you want to implement the site-to-site VPN scenario. In the Protocol field, specify the protocol that must be used for communication between VPN components: UDP or TCP. In the Port field, specify a port on which the network hub must listen for site gateway connections. By default, port 1194 is used.
  • Select the Enable point-to-site VPN check box if you want to implement the point-to-site VPN scenario. In the Protocol field, specify the protocol that must be used for communication between VPN components: UDP or TCP. In the Port field, specify a port on which the network hub must listen for standalone computer connections. By default, port 6179 is used.
Note: It is recommended that you use the UDP protocol. While TCP guarantees delivery of data packets, UDP ensures faster data transmission since it does not require any data flow control.

User-added image

11. Click Finish.


What You Do Next

After you configure the network hub, you must perform the following steps:
  • You must log in to the network hub portal and configure settings for clients — on-premises networks (site-to-site scenario) and standalone computers (point-to-site scenario).
  • If necessary, you can change the network hub settings, for example, configure alerts, enable SSH access to the network hub appliance and so on.
Viewing all 4470 articles
Browse latest View live