SRM Install Error -1
SRM- Low Level Design Document
Hello
Any one provide me some guidance to prepare Low Level design document for SRM? If I get any template will be great!
Thanks
Bala
SRM 6.5 and NetApp SRA
Hello
I am installing a dual datacentre vSphere 6.5 solution which uses NetApp hardware. At the primary ste we have an AFA 200 All flash array, and at the DR site, a 8200 Hybrid array.
We will be using Clustered ONTAP 9.x and Site recovery Manager 6.5.1.
When I check the compatibility matrix for SRM, it only details a single SRA being available, which is listed as NetApp Santricity SRA which lists only E-Series arrays.
On the NetApp site, there is a Virtual Appliance for download, which looks like it is a provides all of the functionality previously provided by the VASA, VCS and SRA software. This is really confusiong as it looks like this is not yet supported by VMware?
Does any have SRM 6.5x running with NetApp arrays that can verify what works and what doesn't?
Regards,
Sean
VMware Education Services Webcast: VMware SRM Troubleshooting Tools, Tips & Tricks
VMware Site Recovery Manager Troubleshooting Tools, Tips and Tricks
Date: August 24, 2017
Time:
- 8:00 AM PDT / 11:00 AM EDT
- 12:00 PM BST
- 12:00 PM SGT
Speaker:
James Doyle
Staff Technical Support Training Specialist, VMware
Summary:
Learn tips and tricks on how to identify and troubleshoot common issues encountered with VMware Site Recovery Manager. Topics that will be discussed include deployment issues, site pairing, IP Customization and SRA/Storage issues. You will also learn how Site Recovery Manger authenticates with the Platform Services Controller and vCenter Server.
Join us for another troubleshooting session in our webcast series.
https://event.on24.com/wcc/r/1485056/4DA2CF4E54F8D205878282D9DA4D671B/153693?partnerref=srmcommunityRegister Now!
SRM server with GUID not found
Good day everyone,
I would like some assistance with a error I'm getting at my protected site with SRM when i log into the web client.
The error occurred after i rejoined my host at my protected site to vCenter and re installed SRM at the protected site and reconfigured my replication, sites and protected groups.
So the error occurs every time i login to the web client on the protected site it first says No matching SRM key found then goes on to say SRM server with guid not found.
The strange think is if i click on home and go to Site recovery manager i can see my site pairings, can access my protected groups and recovery plan.
I have broke the pairing and reconfigured the protected and reocvery site but i am still getting the error on the protected site
The recovery site is fine and I'm not getting any errors there
Regards
Kaylin
Problem with reprotecting VMs
Hello all,
I am currently working on an implementation of SRM.
My setup consists of Vmware SRM server build 3037005, vCenter 6.0, ESXi 6.0.0 and IBM Storwize Family Storage Replication Adapter.
Pretty much everything is up and running, I am able to recover some test VMs to the recovery site, but so far I have not been able to reprotect the VMs in the secondary site.
After running the recovery plan completes I am left with my machines up and runnning in the TR site.
When I try to reprotect the VMs I get errors.
The recovery plan fails at the stage where it should reverse the replication.
messages shown are:
Failed to reverse replication for failed over devices. SRA command 'ReverseReplication' failed. Invalid connection parameters.
The protection groups hangs in the status 'Reprotecting'.
From what I found in documentation this should be a temporary status and it should, change to one of these values:
Group returns to OK or Not Configured state when reprotect is successful. If reprotect fails, the group goes to Partially Reprotected state.
When I look at the information in the Array Pair screen, I see these errors:
Unable to find a matching consistency group at the local site for the remote consistency group "TEST-01"
Unable to find a matching consistency group at the remote site for the local consistency group "TEST-01"
In the list of array pairs the status has changed to "? unknown"
I already updated the SRA to version 3.2.0 but it has not changed anything.
There is one primary question I am curious about. The SRM servers with the SRA on it have the configuration utility for SRA.
If I run this utility I get a warning that it is unable to connect to the peer array in the other data center.
So it has no issues login in to the storage box that is in the same datacenter, but cannot logon to the remote storage box.
Since this is a warning I am assuming it is not critical, but I need confirmation on this
Before I start initiating changes in the network to make this possible, I want to be sure it has to be possible to reach the remote storage box with the SRA.
Any help or insights is greatly appreciated,
JJ
SRM Protection Group Export List Report + Replication Status Powershell script
for a while i was looking for a decent report to export all vm's in ALL protection groups with the information i needed(notes, cpu , etc).
One of the guys I work with created a script that does just that. Here it is below and attached.
This script gives you all vm's in all protection groups as well as if they are being replicated and the status of that replication. Along with some other handy info(cpu/notes/memory etc)
Enjoy and share!
Ran on latest version of srm to date.
you can run it by typing this at the ps cli:
.\SRM3.ps1 -Server "vcenter-servername" -CSVPath "C:\file.csv"
param ($Server = $Server,
$CSVPath = $CSVPath)
$username = Read-Host "Enter your username"
$password = Read-Host -AsSecureString "Enter your password"
$bstr = [System.Runtime.InteropServices.Marshal]::SecureStringToBSTR($password)
$value = [System.Runtime.InteropServices.Marshal]::PtrToStringAuto($bstr)
try
{
Connect-VIServer -Server $Server -User $username -Password $value -ErrorAction Stop
}
catch
{
$_.Exception.Message
break
}
$srm = Connect-SrmServer
$srmApi = $srm.ExtensionData
$protectionGroups = $srmApi.Protection.ListProtectionGroups()
[string]$outfile = $protectionGroups | % {
$protectionGroup = $_
$protectionGroupInfo = $protectionGroup.GetInfo()
# The following command lists the virtual machines associated with a protection group
$vms = $protectionGroup.ListAssociatedVms()
# The result of the above call is an array of references to the virtual machines at the vSphere API
# To populate the data from the vSphere connection, call the UpdateViewData method on each virtual machine view object
$vms | % { $_.UpdateViewData() }
# After the data is populated, use it to generate a report
$vms | %{
# This declare the VM name and gets all properties
$vmname = $_.Name
if ($vmname)
{
$vminfo = Get-VM $vmname -ErrorAction SilentlyContinue | select *
if ((($vminfo.extensiondata.config.extraconfig.Key) -eq "hbr_filter.destination") -and (($vminfo.extensiondata.config.extraconfig.Key) -eq "hbr_filter.rpo"))
{
$replication = "Replication configured"
}
else { $replication = "Replication not configured" }
if (($vminfo.extensiondata.config.extraconfig.Key) -eq "hbr_filter.pause")
{
$replicationPaused = "Yes"
}
else { $replicationPaused = "No" }
}
$output = "" | select VmName, PgName, Notes, PowerState, Guest, NumCpu, CoresPerSocket, MemoryMB, MemoryGB, VMHost, Folder, UsedSpaceGB, ProvisionedSpaceGB, ReplicationConfig, ReplicationPause
$output.VmName = $_.Name
$output.PgName = $protectionGroupInfo.Name
$output.PowerState = $vminfo.PowerState
$output.Notes = $vminfo.Notes
$output.Guest = $vminfo.Guest
$output.NumCpu = $vminfo.NumCpu
$output.CoresPerSocket = $vminfo.CoresPerSocket
$output.MemoryMB = $vminfo.MemoryMB
$output.MemoryGB = $vminfo.MemoryGB
$output.VMHost = $vminfo.VMHost
$output.Folder = $vminfo.Folder
$output.UsedSpaceGB = $vminfo.UsedSpaceGB
$output.ProvisionedSpaceGB = $vminfo.ProvisionedSpaceGB
$output.ReplicationConfig = $replication
$output.ReplicationPause = $replicationPaused
$output
}
} | Select-Object @{ Label = "VM Name"; Expression = { $_.VmName } }, @{ Label = "VM Notes"; Expression = { $_.Notes } }`
, @{ Label = "PowerState"; Expression = { $_.PowerState } }, @{ Label = "Guest"; Expression = { $_.Guest } }, @{ Label = "NumCpu"; Expression = { $_.NumCpu } }`
, @{ Label = "CoresPerSocket"; Expression = { $_.CoresPerSocket } }, @{ Label = "MemoryMB"; Expression = { $_.MemoryMB } }`
, @{ Label = "MemoryGB"; Expression = { $_.MemoryGB } }, @{ Label = "VMHost"; Expression = { $_.VMHost } }, @{ Label = "Folder"; Expression = { $_.Folder } }`
, @{ Label = "UsedSpaceGB"; Expression = { $_.UsedSpaceGB } }, @{ Label = "ProvisionedSpaceGB"; Expression = { $_.ProvisionedSpaceGB } }`
, @{ Label = "Protection group name"; Expression = { $_.PgName } }, @{ Label = "Replication Status"; Expression = { $_.ReplicationConfig } }`
, @{ Label = "Replication Paused"; Expression = { $_.ReplicationPause } } | Export-Csv $CSVPath -NoTypeInformation -Append
Upgrading from SRM 5.0...way behind environment
Hello,
I am working with an environment that was left to get way behind and right now they are running vCenter 5.0 as well as SRM 5.0.
I have an upgrade plan put together with stepped upgrades of all of the components but I would love to know that the environment is "stable" as it sits right now.
The main issue I have is when I attempt to open the SRM plugin I get the following error:
"Connection Error: Lost connection to SRM server <IP>:8095
Login of SRM server 'Datacenter' into vCenter Server at '<servername>:80' failed. Cannot complete login due to an incorrect user name or password.
Any advice on how to overcome this? Like I said, the plan is to upgrade all components ASAP, but I would like to know everything is working as is before we start.
problem to Reprotect VMs in SRM 6.1
I have configured VMware SRM 6.1.1.2 with RecoverPoint SRA 2.2.0.3. All tests include the following steps have done successfully.
Test recovery mode was donec correctly and I am capability of return to main site by Cleanup button.
Meanwhile, Fail over recovery in Planned migration is done and after that I could be able to Reprotect and fail back in Planned migration to the production site.
My only problem is when I'm going to do fail over and fail back in Disaster recovery mode! first, I shutdown all the hosts suddenly and then run the recovery plan in Disaster recovery mode. It will be done successfully and therefore, all VMs will be power on in the disaster site. On the contrary, Reprotect button is not able and it would be grayed If I wanna to fail back to production site.
Should it be reversed and returned to main sites from EMC RecoverPoint?
what are your opinions about this circumstance?
Best practice for testing DR using SRM and bringing AD Domain Controllers up in test enviornment
I hope someone can help with this....
12 months ago we had consultants in to help configure SRM and automate failover into DR if/when required. My question relates to testing DR and how domain controllers are best configured to be able to provide services to application servers,etc when testing in our DR test network.
Currently, we have been told to bring up the DC in test only after reverting to the latest VMware snapshot due to 'USN issues'. After this, we can then fire up the rest of the servers. Is this best practice? It doesn't seem that 'automated' to me and am wanting further advice from others on this. The tests we do always seem unreliable at best, therefore my post on here.
For reference, we have 2 sites. One production with all our DC's, app servers, Vcenter and SRM server. The DR site has a DC, Vcenter and SRM server.
We have had another third party look over the setup and they have questioned certain practices with the above, such as the way we have to revert to a DC snapshot. Also, is SRM sensitive to differences in versions of VMware tools? We had 1 or 2 servers with version differences. Could this upset any testing we do?
Many thanks for any help you give.
Recovery Plan in "Test Interrupted" status
Hi,
I have a couple of Recovery Plans which are in "Test Interrupted" status, I only have the option to rerun the test but the SRM service crashes when I do this.
I'm using the embedded database, is there any way to reset the status in the database ?
Dec
SRM Protection group not enough licenses installed error
Hello,
I need a bit of help with an SRM license problem on ESXi6.0 essentials please.
I know this topic has various posts but nothing seems to quite maftch my exact problem. I come from a hyper-V background so am not a complete expert on this system so if any advice given I may need point by point instructions to get to things in vcentre.
This system was working until I went to add another VM to our protection group today and got the error 'There are not enough Licenses installed'
Checking my V-Centre servers shows I have an installed license for 25 VMs on the protected site and the Recovery site and they appear to show the correct servers as assets.
I note though that both vcentre servers the licenses show 0 of 25 VMs in use where as the essentials license shows the correct CPU count etc.
I have restarted both ends vcentre servers this morning and tried again but change. Oh and I only have 22 VMs currently on the SRM so should be within the license.
I really don't know where to go at this point so any help greatly appreciated.
Thanks in advance.
James
Testing DR plans with SRM and EMC SRDF Adpater
[09/18 17:02:08 18260 2628 SraRdfGroup::CreateGroup ] Adding Symm Dev [00B88] to DG [DG_18260_170918170208555]
[09/18 17:02:08 18260 0249 SymapiSession::Close ] SymCommit() [ReadWriteWait]
[09/18 17:02:08 18260 0257 SymapiSession::Close ] SymExit() [ReadWriteWait]
[09/18 17:02:08 18260 0114 SymapiSession::Init ] Initializing SYMAPI session for remote server [mssrmvp1:2707]
[09/18 17:02:08 18260 0120 SymapiSession::Init ] SymInit() [ReadModifyNowrite]
[09/18 17:02:08 18260 0223 SymapiSession::Init ] [WARNING]: Attempting to set symapi preference [69].
[09/18 17:02:08 18260 0328 SraDevicePairings::GetCopyInfo ] [ERROR]: A valid CopyInfo block could not be found in the options file that has Symm [000492600180]. Exiting with failure
[09/18 17:02:08 18260 8922 TestFailoverStartCommand::RunOnDevices ] [ERROR]: Failed to fetch copy info from the device pairs options file. Exiting with failure
How SRM and SRA create clone and mounted to DR site when I ran test recovery.
When I Run Test recovery geeting following error. Can someone please check and let me know how to fix it.
09/19 02:55:33 16276 0218 SraDevicePairings::Display ]
[09/19 02:55:33 16276 0219 SraDevicePairings::Display ] EMC SRDF SRA Device Pairs Info:
[09/19 02:55:33 16276 0220 SraDevicePairings::Display ] -------------------------------
[09/19 02:55:34 16276 0221 SraDevicePairings::Display ] version = 6.0
[09/19 02:55:34 16276 0226 SraDevicePairings::Display ] array_id = n/a
[09/19 02:55:34 16276 0228 SraDevicePairings::Display ] copy_type = CLONE
[09/19 02:55:34 16276 0229 SraDevicePairings::Display ] copy_mode = NOCOPY
[09/19 02:55:34 16276 0230 SraDevicePairings::Display ] save_pool_name = n/a
[09/19 02:55:34 16276 0250 SraDevicePairings::Display ] devices = n/a
[09/19 02:55:34 16276 0252 SraDevicePairings::Display ]
[09/19 02:55:34 16276 0114 SymapiSession::Init ] Initializing SYMAPI session for remote server [srmvp1:2707]
[09/19 02:55:34 16276 0120 SymapiSession::Init ] SymInit() [ReadModifyNowrite]
[09/19 02:55:34 16276 0249 SymapiSession::Close ] SymCommit() [ReadModifyNowrite]
[09/19 02:55:34 16276 0257 SymapiSession::Close ] SymExit() [ReadModifyNowrite]
[09/19 02:55:34 16276 0559 SymmUtil::DisplaySEVersion ] Version of SE running on SYMAPI client [SRMVP1] is [V8.4.0.7-2352]
[09/19 02:55:34 16276 0114 SymapiSession::Init ] Initializing SYMAPI session for remote server [srmvp1:2707]
[09/19 02:55:34 16276 0120 SymapiSession::Init ] SymInit() [ReadModifyNowrite]
[09/19 02:55:34 16276 0249 SymapiSession::Close ] SymCommit() [ReadModifyNowrite]
[09/19 02:55:34 16276 0257 SymapiSession::Close ] SymExit() [ReadModifyNowrite]
[09/19 02:55:34 16276 0573 SymmUtil::DisplaySEVersion ] Version of SE running on SYMAPI server [localhost] is [V8.4.0.7-2352]
[09/19 02:55:34 16276 0114 SymapiSession::Init ] Initializing SYMAPI session for remote server [srmvp1:2707]
[09/19 02:55:34 16276 0120 SymapiSession::Init ] SymInit() [ReadModifyNowrite]
[09/19 02:55:34 16276 0223 SymapiSession::Init ] [WARNING]: Attempting to set symapi preference [69].
[09/19 02:55:34 16276 0450 SymmUtil::IsValidArrayId ] Performing SymShow() on Symm [000492600180]
[09/19 02:55:34 16276 0493 SymmUtil::LogSymmInfo ] Performing SymExtShow() on Symm [000492600180]
[09/19 02:55:34 16276 0507 SymmUtil::LogSymmInfo ] Symmetrix Type [Symm8], Model [VMAX-1 ], Enginuity Version [5876-288]
[09/19 02:55:34 16276 0323 SymmUtil::LogSPC2Status ] Performing SymExtShow() on Symm [000492600180]
[09/19 02:55:34 16276 0368 SymmUtil::LogSPC2Status ] SPC2 flag is [Enabled ] on [FA-7E :0], Symm [000492600180]
[09/19 02:55:34 16276 0368 SymmUtil::LogSPC2Status ] SPC2 flag is [Enabled ] on [FA-7E :1], Symm [000492600180]
[09/19 02:55:34 16276 0368 SymmUtil::LogSPC2Status ] SPC2 flag is [Enabled ] on [FA-8E :0], Symm [000492600180]
[09/19 02:55:34 16276 0368 SymmUtil::LogSPC2Status ] SPC2 flag is [Enabled ] on [FA-8E :1], Symm [000492600180]
[09/19 02:55:34 16276 0368 SymmUtil::LogSPC2Status ] SPC2 flag is [Enabled ] on [FA-9E :0], Symm [000492600180]
[09/19 02:55:34 16276 0368 SymmUtil::LogSPC2Status ] SPC2 flag is [Enabled ] on [FA-9E :1], Symm [000492600180]
[09/19 02:55:34 16276 0368 SymmUtil::LogSPC2Status ] SPC2 flag is [Enabled ] on [FA-10E:0], Symm [000492600180]
[09/19 02:55:34 16276 0368 SymmUtil::LogSPC2Status ] SPC2 flag is [Enabled ] on [FA-10E:1], Symm [000492600180]
[09/19 02:55:34 16276 0368 SymmUtil::LogSPC2Status ] SPC2 flag is [Enabled ] on [FA-7F :0], Symm [000492600180]
[09/19 02:55:34 16276 0368 SymmUtil::LogSPC2Status ] SPC2 flag is [Disabled] on [FA-7F :1], Symm [000492600180]
[09/19 02:55:34 16276 0368 SymmUtil::LogSPC2Status ] SPC2 flag is [Enabled ] on [FA-8F :0], Symm [000492600180]
[09/19 02:55:34 16276 0368 SymmUtil::LogSPC2Status ] SPC2 flag is [Disabled] on [FA-8F :1], Symm [000492600180]
[09/19 02:55:34 16276 0368 SymmUtil::LogSPC2Status ] SPC2 flag is [Enabled ] on [FA-9F :0], Symm [000492600180]
[09/19 02:55:34 16276 0368 SymmUtil::LogSPC2Status ] SPC2 flag is [Enabled ] on [FA-9F :1], Symm [000492600180]
[09/19 02:55:34 16276 0368 SymmUtil::LogSPC2Status ] SPC2 flag is [Enabled ] on [FA-10F:0], Symm [000492600180]
[09/19 02:55:34 16276 0368 SymmUtil::LogSPC2Status ] SPC2 flag is [Enabled ] on [FA-10F:1], Symm [000492600180]
[09/19 02:55:34 16276 0368 SymmUtil::LogSPC2Status ] SPC2 flag is [Enabled ] on [FA-7G :0], Symm [000492600180]
[09/19 02:55:34 16276 0368 SymmUtil::LogSPC2Status ] SPC2 flag is [Enabled ] on [FA-7G :1], Symm [000492600180]
[09/19 02:55:34 16276 0368 SymmUtil::LogSPC2Status ] SPC2 flag is [Enabled ] on [FA-8G :0], Symm [000492600180]
[09/19 02:55:34 16276 0368 SymmUtil::LogSPC2Status ] SPC2 flag is [Enabled ] on [FA-8G :1], Symm [000492600180]
[09/19 02:55:34 16276 0368 SymmUtil::LogSPC2Status ] SPC2 flag is [Enabled ] on [FA-9G :0], Symm [000492600180]
[09/19 02:55:34 16276 0368 SymmUtil::LogSPC2Status ] SPC2 flag is [Enabled ] on [FA-9G :1], Symm [000492600180]
[09/19 02:55:34 16276 0368 SymmUtil::LogSPC2Status ] SPC2 flag is [Enabled ] on [FA-10G:0], Symm [000492600180]
[09/19 02:55:34 16276 0368 SymmUtil::LogSPC2Status ] SPC2 flag is [Enabled ] on [FA-10G:1], Symm [000492600180]
[09/19 02:55:34 16276 0368 SymmUtil::LogSPC2Status ] SPC2 flag is [Enabled ] on [FA-9H :0], Symm [000492600180]
[09/19 02:55:34 16276 0368 SymmUtil::LogSPC2Status ] SPC2 flag is [Enabled ] on [FA-9H :1], Symm [000492600180]
[09/19 02:55:34 16276 0368 SymmUtil::LogSPC2Status ] SPC2 flag is [Enabled ] on [FA-10H:0], Symm [000492600180]
[09/19 02:55:34 16276 0368 SymmUtil::LogSPC2Status ] SPC2 flag is [Enabled ] on [FA-10H:1], Symm [000492600180]
[09/19 02:55:34 16276 0249 SymapiSession::Close ] SymCommit() [ReadModifyNowrite]
[09/19 02:55:34 16276 0257 SymapiSession::Close ] SymExit() [ReadModifyNowrite]
[09/19 02:55:34 16276 0114 SymapiSession::Init ] Initializing SYMAPI session for remote server [mssrmvp1:2707]
[09/19 02:55:34 16276 0120 SymapiSession::Init ] SymInit() [ReadModifyNowrite]
[09/19 02:55:34 16276 0223 SymapiSession::Init ] [WARNING]: Attempting to set symapi preference [69].
[09/19 02:55:34 16276 1055 SymmUtil::IsSymmDev ] Performing SymDevShow() on Symm Dev [00B50], Symm [000492600180]
[09/19 02:55:34 16276 1055 SymmUtil::IsSymmDev ] Performing SymDevShow() on Symm Dev [00B58], Symm [000492600180]
[09/19 02:55:34 16276 1055 SymmUtil::IsSymmDev ] Performing SymDevShow() on Symm Dev [00B60], Symm [000492600180]
[09/19 02:55:34 16276 1055 SymmUtil::IsSymmDev ] Performing SymDevShow() on Symm Dev [00B68], Symm [000492600180]
[09/19 02:55:34 16276 1055 SymmUtil::IsSymmDev ] Performing SymDevShow() on Symm Dev [00B70], Symm [000492600180]
[09/19 02:55:34 16276 1055 SymmUtil::IsSymmDev ] Performing SymDevShow() on Symm Dev [00B78], Symm [000492600180]
[09/19 02:55:34 16276 1055 SymmUtil::IsSymmDev ] Performing SymDevShow() on Symm Dev [00B80], Symm [000492600180]
[09/19 02:55:34 16276 0249 SymapiSession::Close ] SymCommit() [ReadModifyNowrite]
[09/19 02:55:34 16276 0257 SymapiSession::Close ] SymExit() [ReadModifyNowrite]
[09/19 02:55:34 16276 0114 SymapiSession::Init ] Initializing SYMAPI session for remote server [mssrmvp1:2707]
[09/19 02:55:34 16276 0120 SymapiSession::Init ] SymInit() [ReadWriteWait]
[09/19 02:55:34 16276 0223 SymapiSession::Init ] [WARNING]: Attempting to set symapi preference [69].
[09/19 02:55:34 16276 0642 SymmUtil::SymmDevListSync ] Performing selective device sync on Symm [000492600180]
[09/19 02:55:34 16276 0667 SymmUtil::SymmDevListSync ] The following list of devices are being sync'd
[09/19 02:55:34 16276 0672 SymmUtil::SymmDevListSync ] 00B50
[09/19 02:55:34 16276 0672 SymmUtil::SymmDevListSync ] 00B58
[09/19 02:55:34 16276 0672 SymmUtil::SymmDevListSync ] 00B60
[09/19 02:55:34 16276 0672 SymmUtil::SymmDevListSync ] 00B68
[09/19 02:55:34 16276 0672 SymmUtil::SymmDevListSync ] 00B70
[09/19 02:55:34 16276 0672 SymmUtil::SymmDevListSync ] 00B78
[09/19 02:55:34 16276 0672 SymmUtil::SymmDevListSync ] 00B80
[09/19 02:55:34 16276 0678 SymmUtil::SymmDevListSync ] Performing SymDevListSync()
[09/19 02:55:35 16276 0249 SymapiSession::Close ] SymCommit() [ReadWriteWait]
[09/19 02:55:35 16276 0257 SymapiSession::Close ] SymExit() [ReadWriteWait]
[09/19 02:55:35 16276 0114 SymapiSession::Init ] Initializing SYMAPI session for remote server [mssrmvp1:2707]
[09/19 02:55:35 16276 0120 SymapiSession::Init ] SymInit() [ReadModifyNowrite]
[09/19 02:55:35 16276 0223 SymapiSession::Init ] [WARNING]: Attempting to set symapi preference [69].
[09/19 02:55:35 16276 0114 SymapiSession::Init ] Initializing SYMAPI session for remote server [mpsrmvp1:2707]
[09/19 02:55:35 16276 0120 SymapiSession::Init ] SymInit() [ReadModifyNowrite]
[09/19 02:55:36 16276 0223 SymapiSession::Init ] [WARNING]: Attempting to set symapi preference [69].
[09/19 02:55:36 16276 0129 SraReplicationGroup::GetInputDeviceProperties] Fetching input device properties
[09/19 02:55:36 16276 0405 SymmUtil::IsVolgaArray ] Performing SymShow() on Symm [000492600180]
[09/19 02:55:36 16276 0154 SraReplicationGroup::GetInputDeviceProperties] Performing SymDevShow() on Symm Dev [00B50], Symm [000492600180]
[09/19 02:55:36 16276 0187 SraReplicationGroup::GetInputDeviceProperties] The state of Symm Dev [00B50] on Symm [000492600180] is [Write Disabled]
[09/19 02:55:36 16276 0202 SraReplicationGroup::GetInputDeviceProperties] Checking if device has a 3-site config
[09/19 02:55:36 16276 0309 SraReplicationGroup::GetInputDeviceProperties] The Symm Dev [00B50] on Symm [000492600180] is present in [0] DGs []
[09/19 02:55:36 16276 0349 SraReplicationGroup::GetInputDeviceProperties] The Symm Dev [00B50] on Symm [000492600180] is present in [0] CGs []
[09/19 02:55:36 16276 0707 SraReplicationGroup::GetInputDeviceProperties] Symm Dev [00B50] RDF Group [9] CG [N/A] DG [N/A]
[09/19 02:55:36 16276 0154 SraReplicationGroup::GetInputDeviceProperties] Performing SymDevShow() on Symm Dev [00B58], Symm [000492600180]
[09/19 02:55:36 16276 0187 SraReplicationGroup::GetInputDeviceProperties] The state of Symm Dev [00B58] on Symm [000492600180] is [Write Disabled]
[09/19 02:55:36 16276 0202 SraReplicationGroup::GetInputDeviceProperties] Checking if device has a 3-site config
[09/19 02:55:36 16276 0309 SraReplicationGroup::GetInputDeviceProperties] The Symm Dev [00B58] on Symm [000492600180] is present in [0] DGs []
[09/19 02:55:36 16276 0349 SraReplicationGroup::GetInputDeviceProperties] The Symm Dev [00B58] on Symm [000492600180] is present in [0] CGs []
[09/19 02:55:36 16276 0707 SraReplicationGroup::GetInputDeviceProperties] Symm Dev [00B58] RDF Group [9] CG [N/A] DG [N/A]
[09/19 02:55:36 16276 0154 SraReplicationGroup::GetInputDeviceProperties] Performing SymDevShow() on Symm Dev [00B60], Symm [000492600180]
[09/19 02:55:36 16276 0187 SraReplicationGroup::GetInputDeviceProperties] The state of Symm Dev [00B60] on Symm [000492600180] is [Write Disabled]
[09/19 02:55:36 16276 0202 SraReplicationGroup::GetInputDeviceProperties] Checking if device has a 3-site config
[09/19 02:55:36 16276 0309 SraReplicationGroup::GetInputDeviceProperties] The Symm Dev [00B60] on Symm [000492600180] is present in [0] DGs []
[09/19 02:55:36 16276 0349 SraReplicationGroup::GetInputDeviceProperties] The Symm Dev [00B60] on Symm [000492600180] is present in [0] CGs []
[09/19 02:55:36 16276 0707 SraReplicationGroup::GetInputDeviceProperties] Symm Dev [00B60] RDF Group [9] CG [N/A] DG [N/A]
[09/19 02:55:36 16276 0154 SraReplicationGroup::GetInputDeviceProperties] Performing SymDevShow() on Symm Dev [00B68], Symm [000492600180]
[09/19 02:55:36 16276 0187 SraReplicationGroup::GetInputDeviceProperties] The state of Symm Dev [00B68] on Symm [000492600180] is [Write Disabled]
[09/19 02:55:36 16276 0202 SraReplicationGroup::GetInputDeviceProperties] Checking if device has a 3-site config
[09/19 02:55:36 16276 0309 SraReplicationGroup::GetInputDeviceProperties] The Symm Dev [00B68] on Symm [000492600180] is present in [0] DGs []
[09/19 02:55:36 16276 0349 SraReplicationGroup::GetInputDeviceProperties] The Symm Dev [00B68] on Symm [000492600180] is present in [0] CGs []
[09/19 02:55:36 16276 0707 SraReplicationGroup::GetInputDeviceProperties] Symm Dev [00B68] RDF Group [9] CG [N/A] DG [N/A]
[09/19 02:55:36 16276 0154 SraReplicationGroup::GetInputDeviceProperties] Performing SymDevShow() on Symm Dev [00B70], Symm [000492600180]
[09/19 02:55:36 16276 0187 SraReplicationGroup::GetInputDeviceProperties] The state of Symm Dev [00B70] on Symm [000492600180] is [Write Disabled]
[09/19 02:55:36 16276 0202 SraReplicationGroup::GetInputDeviceProperties] Checking if device has a 3-site config
[09/19 02:55:36 16276 0309 SraReplicationGroup::GetInputDeviceProperties] The Symm Dev [00B70] on Symm [000492600180] is present in [0] DGs []
[09/19 02:55:36 16276 0349 SraReplicationGroup::GetInputDeviceProperties] The Symm Dev [00B70] on Symm [000492600180] is present in [0] CGs []
[09/19 02:55:36 16276 0707 SraReplicationGroup::GetInputDeviceProperties] Symm Dev [00B70] RDF Group [9] CG [N/A] DG [N/A]
[09/19 02:55:36 16276 0154 SraReplicationGroup::GetInputDeviceProperties] Performing SymDevShow() on Symm Dev [00B78], Symm [000492600180]
[09/19 02:55:36 16276 0187 SraReplicationGroup::GetInputDeviceProperties] The state of Symm Dev [00B78] on Symm [000492600180] is [Write Disabled]
[09/19 02:55:36 16276 0202 SraReplicationGroup::GetInputDeviceProperties] Checking if device has a 3-site config
[09/19 02:55:36 16276 0309 SraReplicationGroup::GetInputDeviceProperties] The Symm Dev [00B78] on Symm [000492600180] is present in [0] DGs []
[09/19 02:55:36 16276 0349 SraReplicationGroup::GetInputDeviceProperties] The Symm Dev [00B78] on Symm [000492600180] is present in [0] CGs []
[09/19 02:55:36 16276 0707 SraReplicationGroup::GetInputDeviceProperties] Symm Dev [00B78] RDF Group [9] CG [N/A] DG [N/A]
[09/19 02:55:36 16276 0154 SraReplicationGroup::GetInputDeviceProperties] Performing SymDevShow() on Symm Dev [00B80], Symm [000492600180]
[09/19 02:55:36 16276 0187 SraReplicationGroup::GetInputDeviceProperties] The state of Symm Dev [00B80] on Symm [000492600180] is [Write Disabled]
[09/19 02:55:36 16276 0202 SraReplicationGroup::GetInputDeviceProperties] Checking if device has a 3-site config
[09/19 02:55:36 16276 0309 SraReplicationGroup::GetInputDeviceProperties] The Symm Dev [00B80] on Symm [000492600180] is present in [0] DGs []
[09/19 02:55:36 16276 0349 SraReplicationGroup::GetInputDeviceProperties] The Symm Dev [00B80] on Symm [000492600180] is present in [0] CGs []
[09/19 02:55:36 16276 0707 SraReplicationGroup::GetInputDeviceProperties] Symm Dev [00B80] RDF Group [9] CG [N/A] DG [N/A]
[09/19 02:55:36 16276 0810 SraReplicationGroup::GetInputDeviceProperties] The input devices belong to total of 1 RDF Group(s)
[09/19 02:55:36 16276 1653 SraReplicationGroup::SetGroupAttributesForStandaloneDevices] Generating new DG name
[09/19 02:55:36 16276 1863 SraRdfGroup::ValidateInputDevices ] Validating input devices
[09/19 02:55:36 16276 1920 SraRdfGroup::ValidateInputDevices ] Iterating each input device to determine and verify RDF mode, RDF/Device consistency, RDF type and RDF state
[09/19 02:55:36 16276 1972 SraRdfGroup::ValidateInputDevices ] RDF type of Symm Dev [00B50] is [R2]
[09/19 02:55:36 16276 2042 SraRdfGroup::ValidateInputDevices ] Checking if Symm Dev [00B50] is in [Split] state
[09/19 02:55:36 16276 2098 SraRdfGroup::ValidateInputDevices ] Checking if Symm Dev [00B50] is in [Suspended] state
[09/19 02:55:36 16276 2128 SraRdfGroup::ValidateInputDevices ] The state of Symm Dev [00B50] is [Write Disabled]
[09/19 02:55:36 16276 2148 SraRdfGroup::ValidateInputDevices ] The state of Remote Symm Dev [00EE2] is [Ready]
[09/19 02:55:36 16276 1972 SraRdfGroup::ValidateInputDevices ] RDF type of Symm Dev [00B58] is [R2]
[09/19 02:55:36 16276 2042 SraRdfGroup::ValidateInputDevices ] Checking if Symm Dev [00B58] is in [Split] state
[09/19 02:55:36 16276 2098 SraRdfGroup::ValidateInputDevices ] Checking if Symm Dev [00B58] is in [Suspended] state
[09/19 02:55:36 16276 2128 SraRdfGroup::ValidateInputDevices ] The state of Symm Dev [00B58] is [Write Disabled]
[09/19 02:55:36 16276 2148 SraRdfGroup::ValidateInputDevices ] The state of Remote Symm Dev [00EEA] is [Ready]
[09/19 02:55:36 16276 1972 SraRdfGroup::ValidateInputDevices ] RDF type of Symm Dev [00B60] is [R2]
[09/19 02:55:36 16276 2042 SraRdfGroup::ValidateInputDevices ] Checking if Symm Dev [00B60] is in [Split] state
[09/19 02:55:36 16276 2098 SraRdfGroup::ValidateInputDevices ] Checking if Symm Dev [00B60] is in [Suspended] state
[09/19 02:55:36 16276 2128 SraRdfGroup::ValidateInputDevices ] The state of Symm Dev [00B60] is [Write Disabled]
[09/19 02:55:36 16276 2148 SraRdfGroup::ValidateInputDevices ] The state of Remote Symm Dev [00EF2] is [Ready]
[09/19 02:55:36 16276 1972 SraRdfGroup::ValidateInputDevices ] RDF type of Symm Dev [00B68] is [R2]
[09/19 02:55:36 16276 2042 SraRdfGroup::ValidateInputDevices ] Checking if Symm Dev [00B68] is in [Split] state
[09/19 02:55:36 16276 2098 SraRdfGroup::ValidateInputDevices ] Checking if Symm Dev [00B68] is in [Suspended] state
[09/19 02:55:36 16276 2128 SraRdfGroup::ValidateInputDevices ] The state of Symm Dev [00B68] is [Write Disabled]
[09/19 02:55:36 16276 2148 SraRdfGroup::ValidateInputDevices ] The state of Remote Symm Dev [00EFA] is [Ready]
[09/19 02:55:36 16276 1972 SraRdfGroup::ValidateInputDevices ] RDF type of Symm Dev [00B70] is [R2]
[09/19 02:55:36 16276 2042 SraRdfGroup::ValidateInputDevices ] Checking if Symm Dev [00B70] is in [Split] state
[09/19 02:55:36 16276 2098 SraRdfGroup::ValidateInputDevices ] Checking if Symm Dev [00B70] is in [Suspended] state
[09/19 02:55:36 16276 2128 SraRdfGroup::ValidateInputDevices ] The state of Symm Dev [00B70] is [Write Disabled]
[09/19 02:55:36 16276 2148 SraRdfGroup::ValidateInputDevices ] The state of Remote Symm Dev [00F02] is [Ready]
[09/19 02:55:36 16276 1972 SraRdfGroup::ValidateInputDevices ] RDF type of Symm Dev [00B78] is [R2]
[09/19 02:55:36 16276 2042 SraRdfGroup::ValidateInputDevices ] Checking if Symm Dev [00B78] is in [Split] state
[09/19 02:55:36 16276 2098 SraRdfGroup::ValidateInputDevices ] Checking if Symm Dev [00B78] is in [Suspended] state
[09/19 02:55:36 16276 2128 SraRdfGroup::ValidateInputDevices ] The state of Symm Dev [00B78] is [Write Disabled]
[09/19 02:55:36 16276 2148 SraRdfGroup::ValidateInputDevices ] The state of Remote Symm Dev [00F0A] is [Ready]
[09/19 02:55:36 16276 1972 SraRdfGroup::ValidateInputDevices ] RDF type of Symm Dev [00B80] is [R2]
[09/19 02:55:36 16276 2042 SraRdfGroup::ValidateInputDevices ] Checking if Symm Dev [00B80] is in [Split] state
[09/19 02:55:36 16276 2098 SraRdfGroup::ValidateInputDevices ] Checking if Symm Dev [00B80] is in [Suspended] state
[09/19 02:55:36 16276 2128 SraRdfGroup::ValidateInputDevices ] The state of Symm Dev [00B80] is [Write Disabled]
[09/19 02:55:36 16276 2148 SraRdfGroup::ValidateInputDevices ] The state of Remote Symm Dev [00F12] is [Ready]
[09/19 02:55:36 16276 2164 SraRdfGroup::ValidateInputDevices ] The RDF mode of the input devices is [ASYNCHRONOUS]
[09/19 02:55:36 16276 2250 SraRdfGroup::ContainsAllDevicesFromAllRdfGroups] Verifying if each device present within each RDF group is present in the input list
[09/19 02:55:36 16276 2276 SraRdfGroup::ContainsAllDevicesFromAllRdfGroups] Performing SymDevFilterList() to list devices within each RDF Group
[09/19 02:55:36 16276 2325 SraRdfGroup::ContainsAllDevicesFromAllRdfGroups] There are 7 device(s) in RDF Group [9]
[09/19 02:55:36 16276 0249 SymapiSession::Close ] SymCommit() [ReadModifyNowrite]
[09/19 02:55:36 16276 0257 SymapiSession::Close ] SymExit() [ReadModifyNowrite]
[09/19 02:55:36 16276 0114 SymapiSession::Init ] Initializing SYMAPI session for remote server [mssrmvp1:2707]
[09/19 02:55:36 16276 0120 SymapiSession::Init ] SymInit() [ReadWriteWait]
[09/19 02:55:36 16276 0223 SymapiSession::Init ] [WARNING]: Attempting to set symapi preference [69].
[09/19 02:55:36 16276 2885 SraRdfGroup::RemoveGroupDefinitions ] Removing group definitions of the input devices
[09/19 02:55:36 16276 2586 SraRdfGroup::CreateGroup ] Creating DG [DG_16276_170919025536151]
[09/19 02:55:36 16276 2587 SraRdfGroup::CreateGroup ] Performing SymDgCreate()
[09/19 02:55:36 16276 2623 SraRdfGroup::CreateGroup ] Successfully created DG [DG_16276_170919025536151]. Now adding input devices into the DG
[09/19 02:55:36 16276 2628 SraRdfGroup::CreateGroup ] Adding Symm Dev [00B50] to DG [DG_16276_170919025536151]
[09/19 02:55:36 16276 2628 SraRdfGroup::CreateGroup ] Adding Symm Dev [00B58] to DG [DG_16276_170919025536151]
[09/19 02:55:36 16276 2628 SraRdfGroup::CreateGroup ] Adding Symm Dev [00B60] to DG [DG_16276_170919025536151]
[09/19 02:55:36 16276 2628 SraRdfGroup::CreateGroup ] Adding Symm Dev [00B68] to DG [DG_16276_170919025536151]
[09/19 02:55:36 16276 2628 SraRdfGroup::CreateGroup ] Adding Symm Dev [00B70] to DG [DG_16276_170919025536151]
[09/19 02:55:36 16276 2628 SraRdfGroup::CreateGroup ] Adding Symm Dev [00B78] to DG [DG_16276_170919025536151]
[09/19 02:55:36 16276 2628 SraRdfGroup::CreateGroup ] Adding Symm Dev [00B80] to DG [DG_16276_170919025536151]
[09/19 02:55:36 16276 0249 SymapiSession::Close ] SymCommit() [ReadWriteWait]
[09/19 02:55:36 16276 0257 SymapiSession::Close ] SymExit() [ReadWriteWait]
[09/19 02:55:36 16276 0114 SymapiSession::Init ] Initializing SYMAPI session for remote server [mssrmvp1:2707]
[09/19 02:55:36 16276 0120 SymapiSession::Init ] SymInit() [ReadModifyNowrite]
[09/19 02:55:36 16276 0223 SymapiSession::Init ] [WARNING]: Attempting to set symapi preference [69].
[09/19 02:55:36 16276 0328 SraDevicePairings::GetCopyInfo ] [ERROR]: A valid CopyInfo block could not be found in the options file that has Symm [000492600180]. Exiting with failure
[09/19 02:55:36 16276 8922 TestFailoverStartCommand::RunOnDevices ] [ERROR]: Failed to fetch copy info from the device pairs options file. Exiting with failure
[09/19 02:55:36 16276 0249 SymapiSession::Close ] SymCommit() [ReadModifyNowrite]
[09/19 02:55:36 16276 0257 SymapiSession::Close ] SymExit() [ReadModifyNowrite]
[09/19 02:55:36 16276 0249 SymapiSession::Close ] SymCommit() [ReadModifyNowrite]
[09/19 02:55:36 16276 0257 SymapiSession::Close ] SymExit() [ReadModifyNowrite]
[09/19 02:55:36 16276 2783 SraRdfGroup::RemoveSraCreatedGroup ] Removing SRA created group definition [DG_16276_170919025536151] of the input devices
[09/19 02:55:36 16276 0114 SymapiSession::Init ] Initializing SYMAPI session for remote server [mssrmvp1:2707]
[09/19 02:55:36 16276 0120 SymapiSession::Init ] SymInit() [ReadWriteWait]
[09/19 02:55:36 16276 0223 SymapiSession::Init ] [WARNING]: Attempting to set symapi preference [69].
[09/19 02:55:36 16276 2798 SraRdfGroup::RemoveSraCreatedGroup ] Deleting DG [DG_16276_170919025536151]
[09/19 02:55:36 16276 2818 SraRdfGroup::RemoveSraCreatedGroup ] Successfully deleted DG [DG_16276_170919025536151]
[09/19 02:55:36 16276 0249 SymapiSession::Close ] SymCommit() [ReadWriteWait]
[09/19 02:55:36 16276 0257 SymapiSession::Close ] SymExit() [ReadWriteWait]
[09/19 02:55:36 16276 0249 SymapiSession::Close ] SymCommit() [ReadModifyNowrite]
[09/19 02:55:36 16276 0254 SymapiSession::Close ] [WARNING]: Failed to commit symapi session
[09/19 02:55:36 16276 0257 SymapiSession::Close ] SymExit() [ReadModifyNowrite]
[09/19 02:55:36 16276 0064 SrmResults::Response::WriteToOutputFile ] Output file is C:\Users\S-VMWA~1\AppData\Local\Temp\vmware-s-vmwaresrm\sra-output-50-125
[09/19 02:55:36 16276 0076 SrmResults::Response::WriteToOutputFile ] Writing to output file
Failed to retrieve pairs from site recovery manager server at https://X.X.X.X:8095/dr
Hello All
I am using SRM 5.8.1 build 2991419. Recently, we are having issues where SRM pair is broken using our domain accounts. With Administrator@vsphere.local, I can browse the pair, configured network mappings, browse protection groups, etc. However, with our domain accounts, it gives me the error "Failed to connect to site recovery manager, Cause : Failed to retrieve pairs from site recovery manager server at https://X.X.X.X:8095/dr ". Our SSO identity source is defaulted to type "Local OS" , but we do have "Active Directory (Integrated Windows Authentication)" set as well for the entire root domain. We have the vcenter servers in liked mode.
1. I have checked the communication from from the VC server to the SRM server, and both are listening, as well as established on port 8095.
2. Telnet also seems to work fine on that port. Uninstalled ad re-installed SRM onto a new database, still same issue, which leads me to believe something is wrong at the AD authentication site. We have our AD groups added to the permission, I have even added my account individually to the permissions section, still same issue.
3. Below are the SRM logs which I see. I have already added the parameter <WaitForUpdatesTimeout>300</WaitForUpdatesTimeout> to the SRM config file and restarted the SRM services, since the below logs state that there has been a timeout of 900 seconds. So, changed it to lesser time of 300, so that in case there is any firewall, where its timing out, atleast SRM's value is lesser than that.
4. I have tried adding "Active Directory as a LDAP server" with base dn configured, testing the connection is also successful, restarted SRM service, still same issue.
5. Uninstalled and Re-installed SRM onto a new database altogether, still same issue, Administrator@vsphere.local works, but not with domain accounts.
Can someone, please assist me, on what is going wrong.
2017-10-01T02:51:33.864-04:00 [00268 info 'LocalVC' connID=vc-admin-6615 opID=410dea70] [PCM] Received NULL results from PropertyCollector::WaitForUpdatesEx due to timeout of 300 seconds
2017-10-01T02:51:49.193-04:00 [00444 verbose 'LocalSiteStatus'] Free disk space: 28575 Mb
2017-10-01T02:51:49.193-04:00 [00444 verbose 'LocalSiteStatus'] CPU usage: 0 %
2017-10-01T02:51:49.193-04:00 [00444 verbose 'LocalSiteStatus'] Available memory: 2505 Mb
2017-10-01T02:52:33.068-04:00 [00444 info 'RemoteDR' connID=dr-admin-615b opID=2a28125c] [PCM] Received NULL results from PropertyCollector::WaitForUpdatesEx due to timeout of 300 seconds
2017-10-01T02:52:34.130-04:00 [00444 info 'RemoteVC' connID=vc-admin-af58 opID=12f9ba61] [PCM] Received NULL results from PropertyCollector::WaitForUpdatesEx due to timeout of 300 seconds
2017-10-01T02:52:49.208-04:00 [00612 verbose 'LocalSiteStatus'] Free disk space: 28574 Mb
2017-10-01T02:52:49.208-04:00 [00612 verbose 'LocalSiteStatus'] CPU usage: 1 %
2017-10-01T02:52:49.208-04:00 [00612 verbose 'LocalSiteStatus'] Available memory: 2504 Mb
2017-10-01T02:52:59.646-04:00 [00268 error 'SoapAdapter.HTTPService'] Failed to read request; stream: <SSL(<io_obj p:0x000000000b87c338, h:-1, <TCP '0.0.0.0:0'>, <TCP '0.0.0.0:0'>>)>, error: class Vmacore::TimeoutException(Operation timed out)
2017-10-01T02:53:49.224-04:00 [00444 verbose 'LocalSiteStatus'] Free disk space: 28574 Mb
2017-10-01T02:53:49.224-04:00 [00444 verbose 'LocalSiteStatus'] CPU usage: 0 %
2017-10-01T02:53:49.224-04:00 [00444 verbose 'LocalSiteStatus'] Available memory: 2504 Mb
2017-10-01T02:54:49.240-04:00 [04976 verbose 'LocalSiteStatus'] Free disk space: 28574 Mb
2017-10-01T02:54:49.240-04:00 [04976 verbose 'LocalSiteStatus'] CPU usage: 1 %
2017-10-01T02:54:49.240-04:00 [04976 verbose 'LocalSiteStatus'] Available memory: 2504 Mb
2017-10-01T02:55:49.256-04:00 [04472 verbose 'LocalSiteStatus'] Free disk space: 28574 Mb
2017-10-01T02:55:49.256-04:00 [04472 verbose 'LocalSiteStatus'] CPU usage: 0 %
2017-10-01T02:55:49.256-04:00 [04472 verbose 'LocalSiteStatus'] Available memory: 2500 Mb
2017-10-01T02:56:25.412-04:00 [04472 verbose 'PropertyProvider'] RecordOp ASSIGN: content.about.name, DrServiceInstance
2017-10-01T02:56:26.349-04:00 [01296 verbose 'QsProvider' connID=7cfa] Created entry iterator [class Dr::QueryService::ObjectEntryIterator:000000000B54D920] from generation 1251. Max generation 1252
2017-10-01T02:56:26.349-04:00 [01296 verbose 'QsProvider' connID=7cfa] All data up to generation '1252' is sent to IS
2017-10-01T02:56:26.927-04:00 [03980 verbose 'Licensing'] Asset in sync.
2017-10-01T02:56:27.537-04:00 [04460 verbose 'ThreadPoolStats']
--> Vmacore thread pool stats:
--> /ThreadPool/Vmacore/IOThreads/total 0
--> /ThreadPool/Vmacore/IdleThreads/total 10
--> /ThreadPool/Vmacore/MaxIOThreads/total 401
--> /ThreadPool/Vmacore/MaxWorkerThreads/total 200
--> /ThreadPool/Vmacore/MinIOThreads/total 2
--> /ThreadPool/Vmacore/MinWorkerThreads/total 2
--> /ThreadPool/Vmacore/RunningThreads/total 10
--> /ThreadPool/Vmacore/WorkerThreads/total 0
-->
2017-10-01T02:56:33.865-04:00 [02780 info 'LocalVC' connID=vc-admin-6615 opID=410dea70] [PCM] Received NULL results from PropertyCollector::WaitForUpdatesEx due to timeout of 300 seconds
2017-10-01T02:56:49.256-04:00 [02780 verbose 'LocalSiteStatus'] Free disk space: 28574 Mb
2017-10-01T02:56:49.256-04:00 [02780 verbose 'LocalSiteStatus'] CPU usage: 1 %
2017-10-01T02:56:49.256-04:00 [02780 verbose 'LocalSiteStatus'] Available memory: 2500 Mb
2017-10-01T02:57:33.068-04:00 [03980 info 'RemoteDR' connID=dr-admin-615b opID=2a28125c] [PCM] Received NULL results from PropertyCollector::WaitForUpdatesEx due to timeout of 300 seconds
2017-10-01T02:57:34.146-04:00 [03980 info 'RemoteVC' connID=vc-admin-af58 opID=12f9ba61] [PCM] Received NULL results from PropertyCollector::WaitForUpdatesEx due to timeout of 300 seconds
2017-10-01T02:57:49.271-04:00 [00268 verbose 'LocalSiteStatus'] Free disk space: 28574 Mb
2017-10-01T02:57:49.271-04:00 [00268 verbose 'LocalSiteStatus'] CPU usage: 0 %
2017-10-01T02:57:49.271-04:00 [00268 verbose 'LocalSiteStatus'] Available memory: 2501 Mb
2017-10-01T02:58:49.271-04:00 [04472 verbose 'LocalSiteStatus'] Free disk space: 28574 Mb
2017-10-01T02:58:49.271-04:00 [04472 verbose 'LocalSiteStatus'] CPU usage: 1 %
2017-10-01T02:58:49.271-04:00 [04472 verbose 'LocalSiteStatus'] Available memory: 2499 Mb
2017-10-01T02:59:35.365-04:00 [00444 error 'SoapAdapter.HTTPService'] Failed to read request; stream: <SSL(<io_obj p:0x000000000b87c338, h:-1, <TCP '0.0.0.0:0'>, <TCP '0.0.0.0:0'>>)>, error: class Vmacore::TimeoutException(Operation timed out)
2017-10-01T02:59:49.272-04:00 [02780 verbose 'LocalSiteStatus'] Free disk space: 28574 Mb
2017-10-01T02:59:49.272-04:00 [02780 verbose 'LocalSiteStatus'] CPU usage: 0 %
2017-10-01T02:59:49.272-04:00 [02780 verbose 'LocalSiteStatus'] Available memory: 2501 Mb
2017-10-01T03:00:49.272-04:00 [02780 verbose 'LocalSiteStatus'] Free disk space: 28574 Mb
2017-10-01T03:00:49.272-04:00 [02780 verbose 'LocalSiteStatus'] CPU usage: 1 %
2017-10-01T03:00:49.272-04:00 [02780 verbose 'LocalSiteStatus'] Available memory: 2501 Mb
2017-10-01T03:01:25.428-04:00 [04472 verbose 'PropertyProvider'] RecordOp ASSIGN: content.about.name, DrServiceInstance
2017-10-01T03:01:25.506-04:00 [02140 verbose 'QsProvider' connID=7cfa] Created entry iterator [class Dr::QueryService::ObjectEntryIterator:000000000B54CF00] from generation 1252. Max generation 1253
2017-10-01T03:01:25.506-04:00 [02140 verbose 'QsProvider' connID=7cfa] All data up to generation '1253' is sent to IS
2017-10-01T03:01:26.928-04:00 [03980 verbose 'Licensing'] Asset in sync.
2017-10-01T03:01:27.537-04:00 [04460 verbose 'ThreadPoolStats']
Protection Group error with Netapp Ontap 9, SRM 6.1.1 and SRA 4
I have setup two one node ONTAP clusters with a replicating snapmirror relationship between the protected site's NFS volume and recovery site.
SRM is installed with the SRA server and SRA adapter on each Vcenter.
Everything installed without error. I placed a VM on the protected NFS Volume. When I created a Protection Group its says after the creation that "There are configuration issues with associated VMs."
How do I troubleshoot this error?
SRM with two SRA simultanously
We have an environment on vSphere 6.0 and configured on HP SAN arrays.we are going to implement SRM with two SRA which is work simultanously. We have got 2 questions
firstly, If we want to run SRM with 2 SRA, is it possible or not? one SRa should gather data from EVA 8400 and the second should connect to 3PAR storage. what is your recommendation?
second question is that If there are several virtual machines that their disks (VMDKs) stored on different SAN, could be managed via the SRM to recover these virtual machines?
could you share us the best recommendation for Storage array replication methods and your applied experiences.
Vmware SRM service is not starting after upgrading windows OS from 2008 to windows 2012
Vmware SRM service is not starting after upgrading windows OS from 2008 to windows 2012, getting error: dependency service doesn't exists. As protected service is deprecated from windows 2012 which is the dependency service for SRM. Tried removing protected storage service from below path but no luck.
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\ProtectedStorage
Can someone please help me on this.
Regards
Vikas Nhavkar
Integrating EMC RecoverPoint Appliance With VMware Site Recovery Manager
Integrating EMC RecoverPoint Appliance (RPA) with VMware Site Recovery Manager (SRM). However, before we dive in, if you are not familiar with RPA technology, let me explain first with a high overview:
RPAs are a block LUN IP based replication appliance. RPAs are zoned via FC with all available storage ports. RPAs leverage a “Replication Journal” to track changes within a LUN, once the LUNs have fully seeded between the two sites, the journal log will only send changed deltas over the WAN. This allows you to keep your existing WAN link and not spend more money on WAN expansion. The RPA’s use of the journal log allows it to efficiently track changes to the LUNS and replicate the differences over the WAN. Because RPA can track the changes to the LUNs it can create a Bookmark every 5-10 sec depending on the rate of change and bandwidth. This will keep your data up to date and within a 10 second recover point objective. RPA can also allow you to restore or test your replicated data from any one of the bookmarks created.
Leveraging RPA with VMware LUNs greatly increases the availability of your data upon any maintenance or disaster. Because RPA Blue Prism Training replicate block LUNs, RPAs will replicate LUNs that have datastores formatted on them.
At high overview, to failover a datastore you would:
- Initiate a failover on the RPA.
- Add the LUNs into an existing storage group in the target site.
- Rescan your HBAs in Vsphere O.
- Once the LUNs are visible you will notice a new data store available.
- Open the datastore and add all the VMs into inventory.
- Once all the VMs added configure your networking and power up your machine.
Although this procedure may seem straight forward, your RTO (Recovery Time Objective) will increase.
With VMware Site Recovery Manager (SRM) integration, plug-in the failover procedure can be automated. With SRM you have the ability to build policies as to which v-switch you want each VM to move to as well as which VM you want to power up first. Once the policies are built and tested (yes you can test failover), to failover your virtual site you simply hit the failover button and watch the magic happen.
SRM will automate the entire failover process and bring your site online in a matter of a few seconds or minutes depending on the size of your virtual site. If you are considering replicating your virtual environment, I’d advise considering how long you can sustain to be down and how much data you can sustain to lose. The use of Recover Point Appliance and Site Recovery Manager can assure that you can achieve your disaster recovery goals.
SRM not working after vCenter reinstalled from scratch
I had to reinstall vCenter from scratch and now SRM does not work. Tried to launch SRM and choose option "modify" as suggested in this article https://docs.vmware.com/en/Site-Recovery-Manager/5.8/com.vmware.srm.install_config.doc/GUID-55A0D565-333C-4A5D-9B34-429DB48DBF5D.html
Modify a Site Recovery Manager Server Installation. Modify started but when it comes to the certificate, it failed. The only what I found is log file from the second SRM server which says that there is a problem with the certificate (different PeerThumbprint and ExpectedThumbprint). The error message is similar to this article https://ssbkang.com/2014/10/23/site-recovery-manager-vcenter-server-ssl-replace/.
Is it possible to pair two SRM after rebuilding one of vCenter from scratch and getting a new certificate?
Is possible to update SRM to accept new Thumbprint/certificate from reinstalled vCenter?
Vmware version is 5.5. and SRM is 5.8.