środa, 24 lutego 2016

Komunikat: Server returned 'request expired' less than 0 seconds after request was issued, but it shouldn't have expired for at least 600 seconds.



Objawy

  
Podczas integracji VMware vCenter Orchestrator 5.5 z VMware vCenter 5.5 w konsoli "VMware vCenter Orchestrator Configuration" w sekcji "Authentication" pojawia sie komunikat:
  • "Server returned 'request expired' less than 0 seconds after request was issued, but it shouldn't have expired for at least 600 seconds."

Uzyłem domyślnego konta administratora SSO z vCenter Appliance 5.5 administrator@vsphere.local z hasłem "vmware"

Konsola: VMware vCenter Orchestrator Configuration



Rozwiązanie

  
Synchronizacja czasu na wszystkich hostach ESXi w srodowisku oraz integracja vCenter z active directory (w moim przypadku) przez co czas był pobierany z kontrolera domeny rozwiązał problem.


Konsola: VMware vCenter Orchestrator Configuration

Pomocne w rozwiązaniu problemu:


poniedziałek, 23 listopada 2015

Receipe: Create portgroup , vmkernel and configure network for him on ESXi 5.5



esxcli network vswitch standard portgroup add -p "vMotion Network" -v vSwitch0
esxcli network ip interface add --interface-name=vmk3 --portgroup-name="vMotion Network"
esxcli network ip interface ipv4 set -i vmk3 -I 192.168.2.103 -N 255.255.255.0 -t static




poniedziałek, 28 września 2015

Nowe zaawansowane laby Hands-on Labs od VMware


     Parę dni temu VMware poinformował o udostępnieniu nowych labów na swojej platformie labowej o której wspominałem w poscie Laboratoria online VMWARE. Jest to świeża dawka scenariuszy jakie proponuje vendor dla swoich klientów , partnerów.
W szczególności polecam administratorom z danej technologii. Vmware także informują iż w najblizszym czasie pojawią się kolejne. Sam też zabieram się do labowania i polecam !


źródło: VMware
  • HOL-CHG-1695 vSphere 6 Challenge Lab
  • HOL-HBD-1681 VMware vCloud Air – Jump Start for vSphere Admins
  • HOL-MBL-1651 Advanced Technical Concepts of Horizon 6 from A to Z
  • HOL-SDC-1605 Data Center Migration and Disaster Recovery with VMware Site Recovery Manager
  • HOL-SDC-1611 IT Cost Transparency with vRealize Business
  • HOL-SDC-1620 OpenStack with VMware vSphere and NSX
źródło: VMware
  • HOL-SDC-1601 Cloud Management with vRealize Operations Insight
  • HOL-SDC-1603 VMware NSX Introduction
  • HOL-SDC-1608 Virtual SAN 6 from A to Z
  • HOL-SDC-1610 Virtualization 101: vSphere with Operations Management 6
  • HOL-SDC-1621 vRealize Automation 101: Application and Infrastructure Delivery and DevOps with Code Stream
  • HOL-SDC-1628 VMware EVO:RAIL Introduction
  • HOL-SDC-1631 vSphere Optimization Assessment (service for partners)
źródło: VMware

czwartek, 3 września 2015

Manually stopping virtual machines with ESXCLI on ESXi

    In some cases, virtual machines do not respond to the normal shutdown or stop commands.Not responding in vSphere Client on Vcenter. In these cases, it might be necessary to manually shut down the virtual machines.

# List all running virtual machines on the system to see the World ID of the virtual machine that you want to stop:
esxcli vm process list
# Kill (stop) the virtual machine by running the following command:
esxcli vm process kill [cmd options]
Example:

# List all running virtual machines on the system to see the World ID of the virtual machine that you want to stop:

~ # esxcli vm process list
AHSDC
   World ID: 2331910
   Process ID: 0
   VMX Cartel ID: 250197
   UUID: 42 2d 2c 6c 29 38 96 81-c7 65 5a 4d 2e f4 81 5f
   Display Name: AHSDC
   Config File: /vmfs/volumes/554a239a-6285f416-7db9-000ae4847e00/AHSDC/AHSDC.vmx



# Kill (stop) the virtual machine by running the following command:

~ # esxcli vm process kill -t force -w 2331910

 I hope this informative for you. Thanks for Reading!. Be Social and share it in social media, if you feel worth sharing it


Helpfull links::