Quantcast
Channel: VMware Communities : All Content - All Communities
Viewing all 181132 articles
Browse latest View live

How to change ESX 5.0 Operating system release to debug mode

0
0

Hi All,

I am trying to setup vmware debug setup in our project  using serial console. I had installed vmware workbench in server machine and also installed vmware workbench plugins (tool chain and sdk) in development machine.I had installed ESX 5.0 Server in debug machine. I referred the DDK development guide for CLI ESX 5.0.

I had enabled live debugging commands debug the ESX OS.

To enable live debugging process, issue the following command:

esxcfg-advcfg -k com1 gdbPort

I used the following commands testing the serial connection between development and testing machine.

1 Connect the null modem serial cable to the respective COM ports on $dev and $debug.

2 ($debug)esxcfg-advcfg -k GDBPort

3 ($debug)esxcfg-advcfg -j LogPort

LogPort = com1

4 ($debug) reboot

5 To enable debugging, you must start the $debug machine in debug mode by selecting “VMware ESXi

Server (debug mode)” during the boot process.

Please guide me which commands or steps used to change ESX 5.0 Operating system release to debug mode .

Thanks & Regards,

Senthil


Fusion 5.0.3 / Win 7 partition 90% full

0
0

Mac OS 10.8.5 / Fusion 5.0.3 / Win 7 Home Premium SP1.

This has been an ongoing problem for me and I am not technical enough to solve it.

I have a partition of 120gb on my virtual Win 7 drive and it shows only 10% available. I had this problem before when the partition was smaller and expanded the partition to give me some space.

The issue is that I don't keep work files on the Win 7 drive and only have 4.7gb in applications. I can't figure out what could be taking up so much space. I ran the Windows disk cleanup utility and that only frees a small amount of space.

Can anyone shed light on this issue? Any insights appreciated.

Automated rollout of vCloud Customer using PowerShell

0
0

Hi all,

 

I've been trying to rollout a vCloud 5.5 environment using PowerCLI, and so far I've got the following working code:

 

#Code written by MrBoogiee for SLTN Cloud Services (www.sltncloud.nl)

$snapins = @("VMware.VimAutomation.Core", "VMware.VimAutomation.Cloud")

foreach ($snapin in $snapins){

  try {

  Write-Host "Trying to load snapin $snapin"

  Add-PSSnapin $snapin -ErrorAction Stop

  Write-Host "$Snapin loaded"

  }

  catch {

  Write-Host "$snapin was already loaded or cannot be loaded"

  }

}

 

 

#Variables

$orgName = "PowerCLI"

$orgFullName = "PowerCLI Test Rollout"

$cpu = 2

$vdcDescription = $orgName

$memory = 2

$storage = 2

$providerVdc = "Production01"

$networkPool = "Production01-VXLAN-NP"

$firstExternalIP = "1.1.1.1"

$lastExternalIP = "1.1.1.2"

$internalGateway = "192.168.1.1"

$internalNetmask= "255.255.255.0"

$firstInternalIP = "192.168.1.2"

$lastInternalIP = "192.168.1.5"

 

 

#Connect to vCloud URL

Connect-CIServer vcloud.provider.org

 

 

$externalNetwork = Get-ExternalNetwork -ProviderVdc $providerVdc -Name "Internet"

 

 

# Create Organization

New-Org -Name $orgName -FullName $orgFullName -Description ""

$org = get-org -name $orgName

$VAppLeaseSettings = $org.ExtensionData.Settings.GetvAppLeaseSettings()

$VAppLeaseSettings.DeploymentLeaseSeconds = "0"

$VAppLeaseSettings.StorageLeaseSeconds = "0"

$VAppLeaseSettings.UpdateServerData()

$vAppTemplateLeaseSettings = $org.ExtensionData.Settings.GetVAppTemplateLeaseSettings()

$vAppTemplateLeaseSettings.StorageLeaseSeconds = "0"

$vAppTemplateLeaseSettings.UpdateServerData()

$OrgOperationLimitsSettings = $org.ExtensionData.Settings.GetOperationLimitsSettings()

$OrgOperationLimitsSettings.ConsolesPerVmLimit = "4"

$OrgOperationLimitsSettings.OperationsPerUser = "5"

$OrgOperationLimitsSettings.OperationsPerOrg = "10"

$OrgOperationLimitsSettings.UpdateServerData()

 

 

 

 

# TODO stop if organization alread exists

 

 

# Create Organization Virtual Datacenter

New-OrgVdc -Org $orgName -AllocationModelAllocationPool -CpuAllocationGHz $cpu -MemoryAllocationGB $memory -Description $vdcDescription -Name $orgName -ProviderVdc $providerVdc -StorageAllocationGB $storage -NetworkPool $networkPool

 

 

$orgVdc = Get-OrgVdc -Org $orgName -Name $orgName

Set-OrgVdc -OrgVdc $orgVdc -CpuGuaranteedPercent 10 -MemoryGuaranteedPercent 100 -NetworkMaxCount 1 -ThinProvisioned $false -UseFastProvisioning $true

 

 

 

 

 

 

# Create Edge Firewall

$firewall = New-Object VMware.VimAutomation.Cloud.Views.Gateway

$firewall.Name = $orgName

$firewall.Configuration = New-Object VMware.VimAutomation.Cloud.Views.GatewayConfiguration

$firewall.Configuration.BackwardCompatibilityMode = $false

$firewall.Configuration.GatewayBackingConfig = "compact"

$firewall.Configuration.UseDefaultRouteForDnsRelay = $true

$firewall.Configuration.HaEnabled = $false

$firewall.Configuration.EdgeGatewayServiceConfiguration = New-Object VMware.VimAutomation.Cloud.Views.GatewayFeatures

$firewall.Configuration.GatewayInterfaces = New-Object VMware.VimAutomation.Cloud.Views.GatewayInterfaces

$firewall.Configuration.GatewayInterfaces.GatewayInterface = New-Object VMware.VimAutomation.Cloud.Views.GatewayInterface

$firewall.Configuration.GatewayInterfaces.GatewayInterface[0].DisplayName = "uplink1"

$firewall.Configuration.GatewayInterfaces.GatewayInterface[0].Network = $externalNetwork.Href

$firewall.Configuration.GatewayInterfaces.GatewayInterface[0].InterfaceType = "uplink"

$firewall.Configuration.GatewayInterfaces.GatewayInterface[0].UseForDefaultRoute = $true

$firewall.Configuration.GatewayInterfaces.GatewayInterface[0].ApplyRateLimit = $false

 

 

$externalSubnet = New-Object VMware.VimAutomation.Cloud.Views.SubnetParticipation

$externalSubnet.Gateway = $externalNetwork.Gateway

$externalSubnet.Netmask = $externalNetwork.Netmask

$externalSubnet.IpAddress = $firstExternalIP

$externalSubnet.IpRanges = New-Object VMware.VimAutomation.Cloud.Views.IpRanges

$externalSubnet.IpRanges.IpRange = New-Object VMware.VimAutomation.Cloud.Views.IpRange

$externalSubnet.IpRanges.IpRange[0].StartAddress = $firstExternalIP

$externalSubnet.IpRanges.IpRange[0].EndAddress = $lastExternalIP

 

 

$firewall.Configuration.GatewayInterfaces.GatewayInterface[0].SubnetParticipation = $externalSubnet

 

 

$orgVdc.ExtensionData.CreateEdgeGateway($firewall)

# TODO wait for creation of Edge to complete

 

 

While ((Search-Cloud -QueryType EdgeGateway | get-ciview | where {$_.name -eq $orgName}).tasks.task.Status -eq "running") {

    write-host "Please wait, we're currently rolling out the Edge Firewall..."

}

 

 

# Create an Internal network on the Edge gateway

$edgeGateway = Search-Cloud -QueryType EdgeGateway -Name $orgName | Get-CIView | where {$_.name -like "$orgname*"}

$network = New-Object VMware.VimAutomation.Cloud.Views.OrgVdcNetwork

$network.EdgeGateway = $edgeGateway.Id

$network.isShared = $false

$network.Configuration = New-Object VMware.VimAutomation.Cloud.Views.NetworkConfiguration

$network.Name = $orgName + " Internal"

$network.Configuration.IpScopes = New-Object VMware.VimAutomation.Cloud.Views.IpScopes

$network.Configuration.FenceMode = "natRouted"

 

 

$IpScope = New-Object VMware.VimAutomation.Cloud.Views.IpScope

$IpScope.Gateway = $internalGateway

$IpScope.Netmask = $internalNetmask

$IpScope.Dns1 = $internalGateway

$IpScope.IpRanges = New-Object VMware.VimAutomation.Cloud.Views.IpRanges

$IpScope.IpRanges.IpRange = New-Object VMware.VimAutomation.Cloud.Views.IpRange

$IpScope.IpRanges.IpRange[0].StartAddress = $firstInternalIP

$IpScope.IpRanges.IpRange[0].EndAddress = $lastInternalIP

 

 

$network.Configuration.IpScopes.IpScope += $IpScope

 

 

$orgVdc.ExtensionData.CreateNetwork($network)

 

 

While ((Search-Cloud -QueryType EdgeGateway | get-ciview | where {$_.name -eq $orgName}).tasks.task.Status -eq "running") {

    write-host "Please wait, we're currently rolling out the internal network..."

}

 

 

#Setup the firewall services for the network

$firewallService = New-Object VMware.VimAutomation.Cloud.Views.FirewallService

$firewallService.DefaultAction = "drop"

$firewallService.FirewallRule = New-Object VMware.VimAutomation.Cloud.Views.FirewallRule

 

 

$firewallRule = New-Object VMware.VimAutomation.Cloud.Views.FirewallRule

$firewallRule.IsEnabled = $true

$firewallRule.Description = "Default Outgoing Allowed"

$firewallRule.Protocols = New-Object VMware.VimAutomation.Cloud.Views.FirewallRuleTypeProtocols

$firewallRule.Protocols.any = $true

$firewallRule.Policy = "allow"

$firewallRule.SourceIp = "internal"

$firewallRule.DestinationIp = "external"

$firewallRule.Port = "-1"

$firewallRule.SourcePort = "-1"

 

 

$firewallRule.EnableLogging = $false

$firewallService.FirewallRule = $firewallRule

 

 

$firewallService.LogDefaultAction = $false

$firewallService.IsEnabled = $true

 

 

$edge = Search-Cloud -QueryType EdgeGateway | Get-CIView | where {$_.name -eq $orgName}

$edge.ConfigureServices($firewallService)

 

 

While ((Search-Cloud -QueryType EdgeGateway | get-ciview | where {$_.name -eq $orgName}).tasks.task.Status -eq "running") {

    write-host "Please wait, we're currently rolling out the default firewall rule..."

}

Again, this part works. When I try to add a NAT rule however, I run into problems. The code for this is as follows:

# Setup the NAT rules for the network

$natService = New-Object VMware.VimAutomation.Cloud.Views.NatService

$natService.NatType = "ipTranslation"

$natService.Policy = "allowTraffic"

$natService.ExternalIp = $firstExternalIP

$natService.IsEnabled = $true

$natService.NatRule = New-Object VMware.VimAutomation.Cloud.Views.NatRule

 

 

$natRule = New-Object VMware.VimAutomation.Cloud.Views.NatRule

$natRule.IsEnabled = $true

$natRule.RuleType = "GatewayNatRule"

$natRule.Id = 0

$natService.NatRule = $natRule

 

 

$edge.ConfigureServices($natService)

When I execute the above code, I receive the following error:

 

Exception calling "ConfigureServices" with "1" argument(s): "Bad request  - Unexpected JAXB Exception  - cvc-complex-type.2.4.b: The content of element 'q1:NatRule' is not complete. One of '

{"http://www.vmware.com/vcloud/v1.5":GatewayNatRule, "http://www.vmware.com/vcloud/v1.5":OneToOneBasicRule, "http://www.vmware.com/vcloud/v1.5":OneToOneVmRule, "http://www.vmware.com/vcloud/

v1.5":PortForwardingRule, "http://www.vmware.com/vcloud/v1.5":VmRule}' is expected."

At line:14 char:1

+ $edge.ConfigureServices($natService)

+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException

    + FullyQualifiedErrorId : CloudException

When I now try to resolve this by adding the following line before the "$natService.NatRule = $natRule" line:

$natRule.GatewayNatRule = $true

I receive the following error:

Property 'GatewayNatRule' cannot be found on this object; make sure it exists and is settable.

At line:4 char:1

+ $natRule.GatewayNatRule = $true

+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    + CategoryInfo          : InvalidOperation: (:) [], RuntimeException

    + FullyQualifiedErrorId : PropertyAssignmentException

When I do a $natRule | get-Member, the GatewayNatRule property does not exist. Does anybody have a clue how to work around this? There are plenty posts on the internet explaining how to create NAT rules for vApps, but I can't seem to find any on create NAT rules for OrgVDC Edges (and they really don't work the same way...). I want to be able to automatically roll out an SNAT rule where the internal network is being NATed to $firstExternalIP on the internet interface.

 

Regards,

 

MrBoogiee

vExpert: Doug Baer

0
0
This document is a detail page for the VMware vExpert Directory.

Expert Information
NameDoug Baer
LocationMesa, AZ
United States
Short DescriptionInfrastructure Architect - VMware Hands-on Labs
AffiliationOther
IndustryComputer Software
Website/Bloghttp://blogs.vmware.com/hol
Twitterhttp://www.twitter.com/@dobaer
OverviewNearly 20 years in IT have spanned a variety of roles including consulting, software development, system administration, network and storage infrastructure solutions, training and lab management. If you look hard enough, you may even find him as "Trevor" in videos on the Hands-on labs site. In his free time, Doug likes to get away from technology and spends time hiking with his family or running on the roads and trails all over Arizona.
Technical CertificationsVCDX #19, HP Master ASE Cloud and Datacenter Architect (#14)
Publications and Speaking Engagements
User Groups and CommunitiesPhoenix VMUG
Expertise and InterestsWhat problem are you trying to solve? Storage, Automation, Scripting (Perl, Powershell)

 


View all vExpert entries

Internet

0
0

I have a question about VMware networking. I have a router that route a 172.100.1.0 to 192.168.3.1 network. My ESXi 5.5 host have the IP 192.168.3.2. In de ESXi CLI can I ping 8.8.8.8, but in a VM I can't.

 

My firewall's on the router, ESXi and the Windows server are disabled.

 

Thanks for your reply!

Need to know what feature pack i'm using

0
0

Hello everyone,

 

Does anybody know how to find out what feature pack my VMware Horizon view is using. i'm currently using view 5.2.0 build-987719.

vExpert: Wil van Antwerpen

0
0
This document is a detail page for the VMware vExpert Directory.

Expert Information
NameWil van Antwerpen
LocationBangkok
Thailand
Short DescriptionDeveloper with a passion for OSS and VMware. Moderator @ VMware communities
AffiliationCustomer, Other
IndustryComputer Software, Consulting, Internet Service Provider
Website/Bloghttp://www.vi-toolkit.com
Twitterhttp://www.twitter.com/wilva
OverviewDeveloper with a passion for OSS and VMware. Check http://www.vi-toolkit.com Contributing author to http://planetvm.net Moderator @ VMware communities
Technical Certifications
Publications and Speaking Engagements
User Groups and Communities
Expertise and Interests

 


View all vExpert entries

OVF Tool - VmWare File Systems and OVA Format conversion question

0
0

Greetings! Question in regards to OVFtool and how storage file systems are handled in VMWare.

 

I am using the OVFTool version 2.1.0 (Tried 3.5.0 with not much avail) to export multiple VMDK files or disks in a Virtual Machine (versions 7 and 8) to a multiple OVA files for each - at moment tool allows for consolidation of disks in a partitioned state into ONE OVA - Does anyone know of a work around or undocumented switch which can be used to create X # of virtual disks to X # of OVAs for import into another system?

 

Copying VMDKs is not a viable option in this case as want to remain with OVA standards.

 

Thank you!


Workflow presentation action causes "processing presentation, please wait"

0
0

I have a workflow with a string field that I want to offer as a dropdown of results from a SQL database. I've created an action to query the database that is passed a SQL:Database value. The action script is below:

 

// DO query on MGMTDB

var results = new Array();

var SingleResult;

var query = "SELECT TemplateOS,TemplateVersion FROM TableName";

var QueryResults = MGMTDB.readCustomQuery(query);

for each (SingleResult in QueryResults)

{

    var template = SingleResult.getProperty("TemplateOS") + " " + SingleResult.getProperty("TemplateVersion");

    //System.debug("getTemplateNames:: " + template);

    results.push(template);

}

return results;

 

However, as soon as I add the action to a presentation property, the workflow spends an eternity "processing presentation". The action itself works quickly enough. I added it to a test workflow as part of its schema and I get the desired array of strings back instantly. It's only when it's being used for presentation that it's giving me a problem.

 

Anyone have any ideas what's going on?

How to set advanced host options w/ Perl SDK?

0
0

I want to write a script that will let me set advanced host options, so I can roll them out to all of my hosts in one go vs. touching each host. I have the Enterprise license so I don't have host profiles - scripts are the best option for me. I'm trying to use the UpdateOptions() method to an OptionManager object to make this happen.

 

The problem I'm having is identical to the one in this discussion: http://communities.vmware.com/message/686401, but the accepted solution is not working for me. Neither my own code nor the script attached to the other discussion will work.

 

For example, if I try to change the value of NFS.SendBufferSize to any valid, I get a response like this:

 

$ perl ./advoptions.pl --server vcenter --host vm1 --name NFS.SendBufferSize --value 64
Changing option NFS.SendBufferSize to 64.
SOAP Fault:
-----------
Fault string: A specified parameter was not correct.
Fault detail: InvalidArgumentFault

This occurs whether I treat the new value as an integer, a string, or use PrimType to set one or the other. It occurs whether I create a new OptionValue instance or change the value of an existing one and submit that. I've tried on a vMA instance (5.0.0.0-472630) as well as a CentOS 6.3 x86_64 host w/ perl 5.10.1 and the perl SDK build 4.1.0-254719, with identical results. Same issue whether I connect to the vCenter server or to a VM host directly.
Here is some sample code. It's similar to the script attached to the other discussion and fails the same way.
#!/usr/bin/perl -w

use strict;
use VMware::VIRuntime;

$ENV{PERL_LWP_SSL_VERIFY_HOSTNAME} = 0;

Opts::parse();
Opts::validate();

Util::connect();

my $entities = Vim::find_entity_views(
                view_type => 'HostSystem',
                properties => ['configManager'],
                );

foreach my $entity (@$entities) {

        my $optionManager = Vim::get_view(mo_ref => $entity->configManager->advancedOption);

        my $sendBuffer = new OptionValue (key => 'NFS.SendBufferSize', value => PrimType->new('64', 'int') );
        eval { $optionManager->UpdateOptions( changedValue => [$sendBuffer] ); };

        print $@ if ($@);
}

Util::disconnect();

What am I doing wrong here? Any pointers would be appreciated.

Не запускается служба VirtualCenter Server

0
0

Добрый день. Не запускается служба VirtualCenter Server. В консоли Services она висит в состоянии Starting. Прикладываю лог запуска службы. После чего это произошло не заметил, имею только факт.

Oracle ASM disk setup

0
0

I think I may need some help getting the storage for my ASM right. I changed companies recently and the new place is a Windows house so the Oracle databases are all on 2008 R2 machines. I have run Oracle RAC on both physical and virtual before, but only in Linux/Unix environments (which so far I still prefer) so I'm still learning some of the ins and outs. This company is also looking at moving to RAC, so ASM is in the mix. To begin my testing, I have set up an ASM instance for a single host which will eventually become a development hub holding several databases. However, even before I've set up any databases, the host is locking up. I suspect it has something to do with the disk configuration in that while the lock ups have occurred while the vm is idling, several lock-ups have happened when I try to drop a disk from within ASM. I followed the documentation that Oracle provided for Windows platforms, but this documentation of course does not offer insight into storage virtualization.

 

Here is my configuration:

VMware: vSphere 5.5

OS: Windows 2008 R2 Standard

Memory: 12G

Storage (LSI SCSI): OS: 60G; ASM: 20G, 5G, 5G

Oracle Grid: 11.2.0.4 (plus January 2014 CPU)

Oracle Database: 11.2.0.4 (plus January 2014 CPU)

 

Other details (maybe important, maybe not):

1) I have a large pages enabled

2) Disks are thin-provisioned. As a side-note, I've always thick-provisioned my ASM disks, but our Sr. IT admin has made a policy that all disks are to be thin-provisioned for efficiency. I'm not sure if this could cause an issue.

3) I am working on having the 3 ASM disks (20G, 5G, 5G) set up on different Paravirtualized SCSI controllers (another policy from the IT admin - LSI SCSI by default) as they will be used for DB, LOG, and FRA respectively.

4) The host also has an OEM 12c Agent installed and running.

 

I'm new to the Windows platform when it comes to Oracle (I've administered plenty of SQL Server DBs), but the lockups don't appear to be generating any kind of data to any logs.

Disable hyperthreading on a Virtual machine

0
0

Hi all.

 

We have a requirement, where we have to disable hyperthreading on a VM. Will there be any impact on a application runnning running on VM if we do it when VM is powered ON.

 

Regards,

Vikram.

How to PERMANENTLY stop Fusion from opening apps in the VM instead of on my Mac?

0
0

Fusion is starting to drive me nuts. 

 

In Settings / Applications / Default Applications

 

I have both Open Mac files ... and Open your Windows files ... UNCHECKED.

 

In the Configure button I've even gone in and removed all default apps so it is blank.

 

Yet, no matter what, every time I read a message in Mail on the Mac and click a hyperlink, Fusion insists I want to do it in Internet Explorer in the Virtual machine.

 

How to I permanently disable this "feature"?

vExpert: Ben Clayton

0
0
This document is a detail page for the VMware vExpert Directory.

Expert Information
NameBen Clayton
LocationKansas City, MO
United States
Short DescriptionAll around IT guy for the past 20 or so years
AffiliationCustomer
IndustryBanking
Website/Blog
Twitterhttp://www.twitter.com/@grob4ever
OverviewLeader of the KCVMUG and original member of the VMUG Board of Directors.
Technical CertificationsVCP5, CCNA, MCSE, MCSA, RHCT, etc
Publications and Speaking Engagements
User Groups and CommunitiesKCVMUG
Expertise and Interestspretty much everything

 


View all vExpert entries

vExpert: Josh Sims

0
0
This document is a detail page for the VMware vExpert Directory.

Expert Information
NameJosh Sims
LocationMill Creek, WA
United States
Short DescriptionSolutions Architect - VCAP5-DCA/DCD/CID/vExpert http://www.vcrumbs.com - My Virtualization Blog
AffiliationPartner
IndustryConsulting
Website/Bloghttp://www.vcrumbs.com
Twitterhttp://www.twitter.com/@josh_vcrumbs
OverviewSolutions Architect - VCAP5-DCA/DCD/CID/vExpert http://www.vcrumbs.com blog
Technical CertificationsVCAP5-DCA/DCD/CID
Publications and Speaking Engagements
User Groups and Communities
Expertise and Interests

 


View all vExpert entries

"Cannot connect to Storage service" Using web client and vCenter server appliance under vm's Storage reports.

0
0

Hello,

     I am using ESXi 5.5 and the latest VCVA , I can no longer see hardware status for the host and I get the error above when looking at Storage reports

for any VM.  I have rebooted the Host etc but no change.  I can see hardware status under vmware client direct to host.

 

Thank you for your help!

Dan

vmware vsphere health check report v5.1.0

0
0

Hi,

 

I'm currently using the vmware vsphere health check report v5.1.0 script. I switched from another perl script to this and the report provide much more information. There is one thing that don't seem to work properly though..

 

I currently have a failed disk in my server and the report is showing "unknown" status next to 3 disk / disk day. If I run the other script I have used in the past, I have 3 alerts in red clearly showing that something has failed. Would any of you know why it's showing as unknown instead of critical in the report?

 

Old Script

 

oDisk or Disk Bay 15 Drive 15 0: Drive Fault - Deassert: 0

oDisk or Disk Bay 15 Drive 15 0: Predictive Failure - Deassert: 0

oDisk or Disk Bay 15 Drive 15 0: In Critical Array - Deassert: 0

oDisk or Disk Bay 15 Drive 15 0: In Failed Array - Deassert: 0

oDisk or Disk Bay 15 Drive 15 0: Rebuild In Progress - Deassert: 0

oDisk or Disk Bay 14 Drive 14 0: Drive Fault - Deassert: 0

oDisk or Disk Bay 14 Drive 14 0: Predictive Failure - Deassert: 0

oDisk or Disk Bay 14 Drive 14 0: In Critical Array - Deassert: 0

oDisk or Disk Bay 14 Drive 14 0: In Failed Array - Deassert: 0

oDisk or Disk Bay 14 Drive 14 0: Rebuild In Progress - Deassert: 0

oDisk or Disk Bay 13 Drive 13 0: Drive Fault - Deassert: 0

oDisk or Disk Bay 13 Drive 13 0: Predictive Failure - Deassert: 0

oDisk or Disk Bay 13 Drive 13 0: In Critical Array - Deassert: 0

oDisk or Disk Bay 13 Drive 13 0: In Failed Array - Deassert: 0

oDisk or Disk Bay 13 Drive 13 0: Rebuild In Progress - Deassert: 0

oDisk or Disk Bay 12 Drive 12 0: Drive Fault - Deassert: 0

oDisk or Disk Bay 12 Drive 12 0: Predictive Failure - Deassert: 0

oDisk or Disk Bay 12 Drive 12 0: In Critical Array - Deassert: 0

oDisk or Disk Bay 12 Drive 12 0: In Failed Array - Deassert: 0

oDisk or Disk Bay 12 Drive 12 0: Rebuild In Progress - Deassert: 0

oDisk or Disk Bay 11 Drive 11 0: Drive Fault - Deassert: 0

oDisk or Disk Bay 11 Drive 11 0: Predictive Failure - Deassert: 0

oDisk or Disk Bay 11 Drive 11 0: In Critical Array - Deassert: 0

oDisk or Disk Bay 11 Drive 11 0: In Failed Array - Deassert: 0

oDisk or Disk Bay 11 Drive 11 0: Rebuild In Progress - Deassert: 0

oDisk or Disk Bay 10 Drive 10 0: Drive Fault - Deassert: 0

oDisk or Disk Bay 10 Drive 10 0: Predictive Failure - Deassert: 0

oDisk or Disk Bay 10 Drive 10 0: In Critical Array - Deassert: 0

oDisk or Disk Bay 10 Drive 10 0: In Failed Array - Deassert: 0

oDisk or Disk Bay 10 Drive 10 0: Rebuild In Progress - Deassert: 0

oDisk or Disk Bay 9 Drive 9 0: Drive Fault - Deassert: 0

oDisk or Disk Bay 9 Drive 9 0: Predictive Failure - Deassert: 0

oDisk or Disk Bay 9 Drive 9 0: In Critical Array - Deassert: 0

oDisk or Disk Bay 9 Drive 9 0: In Failed Array - Deassert: 0

oDisk or Disk Bay 9 Drive 9 0: Rebuild In Progress - Deassert: 0

oDisk or Disk Bay 8 Drive 8 0: Drive Fault - Deassert: 0

oDisk or Disk Bay 8 Drive 8 0: Predictive Failure - Deassert: 0

oDisk or Disk Bay 8 Drive 8 0: In Critical Array - Deassert: 0

oDisk or Disk Bay 8 Drive 8 0: In Failed Array - Deassert: 0

oDisk or Disk Bay 8 Drive 8 0: Rebuild In Progress - Deassert: 0

oDisk or Disk Bay 7 Drive 7 0: Drive Fault - Deassert: 0

oDisk or Disk Bay 7 Drive 7 0: Predictive Failure - Deassert: 0

oDisk or Disk Bay 7 Drive 7 0: In Critical Array - Deassert: 0

oDisk or Disk Bay 7 Drive 7 0: In Failed Array - Deassert: 0

oDisk or Disk Bay 7 Drive 7 0: Rebuild In Progress - Deassert: 0

oDisk or Disk Bay 6 Drive 6 0: Drive Fault - Deassert: 0

oDisk or Disk Bay 6 Drive 6 0: Predictive Failure - Deassert: 0

oDisk or Disk Bay 6 Drive 6 0: In Critical Array - Deassert: 0

oDisk or Disk Bay 6 Drive 6 0: In Failed Array - Deassert: 0

oDisk or Disk Bay 6 Drive 6 0: Rebuild In Progress - Deassert: 0

oDisk or Disk Bay 5 Drive 5 0: Drive Fault - Deassert: 0

oDisk or Disk Bay 5 Drive 5 0: Predictive Failure - Deassert: 0

oDisk or Disk Bay 5 Drive 5 0: In Critical Array - Deassert: 0

oDisk or Disk Bay 5 Drive 5 0: In Failed Array - Deassert: 0

oDisk or Disk Bay 5 Drive 5 0: Rebuild In Progress - Deassert: 0

oDisk or Disk Bay 4 Drive 4 0: Drive Fault - Deassert: 0

oDisk or Disk Bay 4 Drive 4 0: Predictive Failure - Deassert: 0

oDisk or Disk Bay 4 Drive 4 0: In Critical Array - Deassert: 0

oDisk or Disk Bay 4 Drive 4 0: In Failed Array - Deassert: 0

oDisk or Disk Bay 4 Drive 4 0: Rebuild In Progress - Deassert: 0

oDisk or Disk Bay 3 Drive 3 0: Drive Fault - Deassert: 0

oDisk or Disk Bay 3 Drive 3 0: Predictive Failure - Deassert: 0

oDisk or Disk Bay 3 Drive 3 0: In Critical Array - Deassert: 0

oDisk or Disk Bay 3 Drive 3 0: In Failed Array - Deassert: 0

oDisk or Disk Bay 3 Drive 3 0: Rebuild In Progress - Deassert: 0

oDisk or Disk Bay 2 Drive 2 0: Drive Fault - Assert: 0

oDisk or Disk Bay 2 Drive 2 0: Predictive Failure - Deassert: 0

oDisk or Disk Bay 2 Drive 2 0: In Critical Array - Deassert: 0

oDisk or Disk Bay 2 Drive 2 0: In Failed Array - Deassert: 0

oDisk or Disk Bay 2 Drive 2 0: Rebuild In Progress - Deassert: 0

oDisk or Disk Bay 1 Drive 1 0: Drive Fault - Deassert: 0

oDisk or Disk Bay 1 Drive 1 0: Predictive Failure - Deassert: 0

oDisk or Disk Bay 1 Drive 1 0: In Critical Array - Assert: 0

oDisk or Disk Bay 1 Drive 1 0: In Failed Array - Deassert: 0

oDisk or Disk Bay 1 Drive 1 0: Rebuild In Progress - Deassert: 0

oDisk or Disk Bay 0 Drive 0 0: Drive Fault - Deassert: 0

oDisk or Disk Bay 0 Drive 0 0: Predictive Failure - Deassert: 0

oDisk or Disk Bay 0 Drive 0 0: In Critical Array - Assert: 0

oDisk or Disk Bay 0 Drive 0 0: In Failed Array - Deassert: 0

oDisk or Disk Bay 0 Drive 0 0: Rebuild In Progress - Deassert: 0


 

 

 

New Report

 

BIOS 1 ABR Status 0: Unspecified - Deassert0OK
BIOS 1 Firmware Error 0: Unspecified - Deassert0OK
BIOS 1 Firmware Error 0: Unspecified - Deassert0OK
Cooling Unit 1 Cooling Zone 1 0 - Fully redundant0OK
Cooling Unit 2 Cooling Zone 2 0 - Fully redundant0OK
Cooling Unit 3 Cooling Zone 3 0 - Fully redundant0OK
Disk or Disk Bay 0 Drive 0 0: Drive Fault - Deassert0OK
Disk or Disk Bay 0 Drive 0 0: In Critical Array - Assert0UNKNOWN
Disk or Disk Bay 0 Drive 0 0: In Failed Array - Deassert0OK
Disk or Disk Bay 0 Drive 0 0: Predictive Failure - Deassert0OK
Disk or Disk Bay 0 Drive 0 0: Rebuild In Progress - Deassert0OK
Disk or Disk Bay 1 Drive 1 0: Drive Fault - Deassert0OK
Disk or Disk Bay 1 Drive 1 0: In Critical Array - Assert0UNKNOWN
Disk or Disk Bay 1 Drive 1 0: In Failed Array - Deassert0OK
Disk or Disk Bay 1 Drive 1 0: Predictive Failure - Deassert0OK
Disk or Disk Bay 1 Drive 1 0: Rebuild In Progress - Deassert0OK
Disk or Disk Bay 10 Drive 10 0: Drive Fault - Deassert0OK
Disk or Disk Bay 10 Drive 10 0: In Critical Array - Deassert0OK
Disk or Disk Bay 10 Drive 10 0: In Failed Array - Deassert0OK
Disk or Disk Bay 10 Drive 10 0: Predictive Failure - Deassert0OK
Disk or Disk Bay 10 Drive 10 0: Rebuild In Progress - Deassert0OK
Disk or Disk Bay 11 Drive 11 0: Drive Fault - Deassert0OK
Disk or Disk Bay 11 Drive 11 0: In Critical Array - Deassert0OK
Disk or Disk Bay 11 Drive 11 0: In Failed Array - Deassert0OK
Disk or Disk Bay 11 Drive 11 0: Predictive Failure - Deassert0OK
Disk or Disk Bay 11 Drive 11 0: Rebuild In Progress - Deassert0OK
Disk or Disk Bay 12 Drive 12 0: Drive Fault - Deassert0OK
Disk or Disk Bay 12 Drive 12 0: In Critical Array - Deassert0OK
Disk or Disk Bay 12 Drive 12 0: In Failed Array - Deassert0OK
Disk or Disk Bay 12 Drive 12 0: Predictive Failure - Deassert0OK
Disk or Disk Bay 12 Drive 12 0: Rebuild In Progress - Deassert0OK
Disk or Disk Bay 13 Drive 13 0: Drive Fault - Deassert0OK
Disk or Disk Bay 13 Drive 13 0: In Critical Array - Deassert0OK
Disk or Disk Bay 13 Drive 13 0: In Failed Array - Deassert0OK
Disk or Disk Bay 13 Drive 13 0: Predictive Failure - Deassert0OK
Disk or Disk Bay 13 Drive 13 0: Rebuild In Progress - Deassert0OK
Disk or Disk Bay 14 Drive 14 0: Drive Fault - Deassert0OK
Disk or Disk Bay 14 Drive 14 0: In Critical Array - Deassert0OK
Disk or Disk Bay 14 Drive 14 0: In Failed Array - Deassert0OK
Disk or Disk Bay 14 Drive 14 0: Predictive Failure - Deassert0OK
Disk or Disk Bay 14 Drive 14 0: Rebuild In Progress - Deassert0OK
Disk or Disk Bay 15 Drive 15 0: Drive Fault - Deassert0OK
Disk or Disk Bay 15 Drive 15 0: In Critical Array - Deassert0OK
Disk or Disk Bay 15 Drive 15 0: In Failed Array - Deassert0OK
Disk or Disk Bay 15 Drive 15 0: Predictive Failure - Deassert0OK
Disk or Disk Bay 15 Drive 15 0: Rebuild In Progress - Deassert0OK
Disk or Disk Bay 2 Drive 2 0: Drive Fault - Assert0UNKNOWN
Disk or Disk Bay 2 Drive 2 0: In Critical Array - Deassert0OK
Disk or Disk Bay 2 Drive 2 0: In Failed Array - Deassert0OK
Disk or Disk Bay 2 Drive 2 0: Predictive Failure - Deassert0OK
Disk or Disk Bay 2 Drive 2 0: Rebuild In Progress - Deassert0OK
Disk or Disk Bay 3 Drive 3 0: Drive Fault - Deassert0OK
Disk or Disk Bay 3 Drive 3 0: In Critical Array - Deassert0OK
Disk or Disk Bay 3 Drive 3 0: In Failed Array - Deassert0OK
Disk or Disk Bay 3 Drive 3 0: Predictive Failure - Deassert0OK
Disk or Disk Bay 3 Drive 3 0: Rebuild In Progress - Deassert0OK
Disk or Disk Bay 4 Drive 4 0: Drive Fault - Deassert0OK
Disk or Disk Bay 4 Drive 4 0: In Critical Array - Deassert0OK
Disk or Disk Bay 4 Drive 4 0: In Failed Array - Deassert0OK
Disk or Disk Bay 4 Drive 4 0: Predictive Failure - Deassert0OK
Disk or Disk Bay 4 Drive 4 0: Rebuild In Progress - Deassert0OK
Disk or Disk Bay 5 Drive 5 0: Drive Fault - Deassert0OK
Disk or Disk Bay 5 Drive 5 0: In Critical Array - Deassert0OK
Disk or Disk Bay 5 Drive 5 0: In Failed Array - Deassert0OK
Disk or Disk Bay 5 Drive 5 0: Predictive Failure - Deassert0OK
Disk or Disk Bay 5 Drive 5 0: Rebuild In Progress - Deassert0OK
Disk or Disk Bay 6 Drive 6 0: Drive Fault - Deassert0OK
Disk or Disk Bay 6 Drive 6 0: In Critical Array - Deassert0OK
Disk or Disk Bay 6 Drive 6 0: In Failed Array - Deassert0OK
Disk or Disk Bay 6 Drive 6 0: Predictive Failure - Deassert0OK
Disk or Disk Bay 6 Drive 6 0: Rebuild In Progress - Deassert0OK
Disk or Disk Bay 7 Drive 7 0: Drive Fault - Deassert0OK
Disk or Disk Bay 7 Drive 7 0: In Critical Array - Deassert0OK
Disk or Disk Bay 7 Drive 7 0: In Failed Array - Deassert0OK
Disk or Disk Bay 7 Drive 7 0: Predictive Failure - Deassert0OK
Disk or Disk Bay 7 Drive 7 0: Rebuild In Progress - Deassert0OK
Disk or Disk Bay 8 Drive 8 0: Drive Fault - Deassert0OK
Disk or Disk Bay 8 Drive 8 0: In Critical Array - Deassert0OK
Disk or Disk Bay 8 Drive 8 0: In Failed Array - Deassert0OK
Disk or Disk Bay 8 Drive 8 0: Predictive Failure - Deassert0OK
Disk or Disk Bay 8 Drive 8 0: Rebuild In Progress - Deassert0OK
Disk or Disk Bay 9 Drive 9 0: Drive Fault - Deassert0OK
Disk or Disk Bay 9 Drive 9 0: In Critical Array - Deassert0OK
Disk or Disk Bay 9 Drive 9 0: In Failed Array - Deassert0OK
Disk or Disk Bay 9 Drive 9 0: Predictive Failure - Deassert0OK
Disk or Disk Bay 9 Drive 9 0: Rebuild In Progress - Deassert0OK

VDP 5.5.5.180 cannot edit backup Job

0
0

Hi all,

after a lot of tuning I have a working installation of vdp 5.5.5. I have a single backup job for 30 vms and everything seems working well.

Now I need to edit my backup job but when I edit it "Loading..." windows stays forever.

 

Can someone help me in finding where the log files are located so I can troubleshoot the issue?

 

Regards

Valerio

Server Error null when importing a custom package

0
0

This is my first attempt at creating a package (Alpha Automation Package) - it contains several workflows and configuration items.

 

When attempting to import into another Orchestrator instance, I get the following:

 

error.PNG

Is there a log location I can find to try and figure out what's causing this error? Has anyone seen this before?

Viewing all 181132 articles
Browse latest View live




Latest Images