Start a Conversation

This post is more than 5 years old

Solved!

Go to Solution

1127

February 11th, 2015 06:00

Exchange 2010 VSS Issues

Recently my Networker Backups for Exchange have failed. Here is the log I am getting:

APPLICATIONS:\Microsoft Exchange 2010: Backup of [APPLICATIONS:\Microsoft Exchange 2010] failed

rface, may not be supported

50423:nsrsnap_vss_save:nsrsnap_vss_save: Unknown Application Information parameter:  %22device%20interface, may not be supported

50423:nsrsnap_vss_save:nsrsnap_vss_save: Unknown Application Information parameter: NSR_SAVE_FROM_SAVEGRP_NSRSNAP, may not be supported

50411:nsrsnap_vss_save:nsrsnap_vss_save: Data mover host name not specified. Assuming local host:

89199:nsrsnap_vss_save:nsrsnap_vss_save: Backup is level FULL. Set GLR compatibility to YES.

80271:nsrsnap_vss_save:NMM .. Valid snapshot policy. Group: "Exchange Snap" Snapshot Policy: "Serverless Backup" Snapshots Per Day: "1"  Retain: "0" Backup Snapshots: "All" Level: "full".

NMM ... Using client name PIKE, the version of the Exchange server is Exchange 2010.

96585:nsrsnap_vss_save:NMM .. Initialization success -- Exchange shell successfully initialized. Required for Exchange 2010 or Exchange 2013.

88430:nsrsnap_vss_save: Checking NetWorker Privileges: User  does not have "Operate NetWorker","Backup Local Data" and "Recover Local Data" privileges on

63322:nsrsnap_vss_save:NMM has detected that client does not have enough permissions.

63335:nsrsnap_vss_save:NMM backup failed to complete successfully.

Internal error.

68151 1423665311 2 0 0 13212 13204 0 pike.processdisplays.com nsrsnap_vss_save NSR warning 39 nsrsnap_vss_save: Exiting with failure. 0

I ran the NMM config checker and everything looked fine with no errors.

1.7K Posts

February 11th, 2015 06:00

Hi msatzinger

Please make sure that you add all users in that Exchange host into the correct user groups, as shown in the very descriptive error message:

 

88430:nsrsnap_vss_save: Checking NetWorker Privileges:
User  does not have "Operate NetWorker","Backup LocalData" and "Recover Local Data" privileges on

63322:nsrsnap_vss_save:NMM has detected that client does not have enough permissions.

You can simply add *@Exchange_server_name into the NetWorker user groups "Application Admins" and "DB Admin"

Thank you,

Carlos

159 Posts

February 11th, 2015 07:00

For a NW on Windows you may want to try this:

(Requires AD Modules installed )

The script Queries for Computernames with a patter ( EX fo all Exchange Nodes ) and adds the Backupuser you specify as well as system and Administrator for the  Machine

<#

.Synopsis

   Short description

.DESCRIPTION

   labbuildr is a Self Installing Windows/Networker/NMM Environemnt Supporting Exchange 2013 and NMM 3.0

.LINK

   https://community.emc.com/blogs/bottk/2014/06/16/announcement-labbuildr-released

#>

#requires -version 3

[CmdletBinding()]

param(

[Parameter(mandatory = $true)]$BackupAdmin,

[Parameter(mandatory = $true)]$Hostprefix

)

$ScriptName = $MyInvocation.MyCommand.Name

$Host.UI.RawUI.WindowTitle = "$ScriptName"

$Builddir = $PSScriptRoot

$Logtime = Get-Date -Format "MM-dd-yyyy_hh-mm-ss"

New-Item -ItemType file  "$Builddir\$ScriptName$Logtime.log"

############

foreach ($Client in (Get-ADComputer -Filter * | where name -match "$Hostprefix*").DNSHostname)

{

& 'C:\Program Files\EMC NetWorker\nsr\bin\nsraddadmin.exe'  -u "user=$BackupAdmin,host=$Client"

& 'C:\Program Files\EMC NetWorker\nsr\bin\nsraddadmin.exe'  -u "user=SYSTEM,host=$Client"

& 'C:\Program Files\EMC NetWorker\nsr\bin\nsraddadmin.exe'  -u "user=Administrator,host=$Client"

}

February 11th, 2015 07:00

Done. Thank you very much for the quick response.

No Events found!

Top