Primo #VMUGIT Hands-on Day: ExaGrid

23 Jan 2012 Leave a comment

Il 18 Gennaio, il primo VMUGIT Hands-on Day è diventto realtà! Protagonista di questo primo evento è stata ExaGrid  (rappresentata da Andy Palmer, EMEA Sales Director) e la sua soluzione di backup su disco.

L’ Hands-on day

L’Hands-On Lab è una giornata di laboratorio, in cui un singolo produttore ha la possibilità di presentare la propria soluzione e permettere ai partecipanti di testarla dal vivo.
Il taglio è spiccatamente tecnico, e la presenza di un unico produttore con un’unica soluzione, permette la partecipazione a persone realmente interessate all’argomento proposto.

L’evento è stato un successo: 16 partecipanti, parecchie domande, interazione tra partecipanti e vendor, molto interesse.

ExaGrid

ExaGrid è una società statunitense, fondata nel 2002 e con un unico prodotto a catalogo: l’appliance ExaGrid.

ExaGrid è una soluzione di backup su disco economica e scalabile che lavora in modo trasparente con le applicazioni di backup esistenti. L’approccio di ExaGrid minimizza la quantità di dati da salvare tramite compressione dei backup più recenti e deduplica dei dati byte-level di tutti i precedenti backup.

La demo

Ho registrato la prima demo. Eccola qui:

ExaGrid demo by Luca Dell’Oca
Tutte le demo sono state fatte su una appliance ExaGrid EX5000 presente in sala. Ecco un tour panoramico dell’appliance:

Arrivederci al prossimo evento del VMUGIT!

1st #VMUGIT Hands-on Day: ExaGrid

23 Jan 2012 Leave a comment

On January 18th, the 1st VMUGIT Hands-on Day has become reality! Main guest of this first meeting was ExaGrid  (represented by Andy Palmer, EMEA Sales Director) and it’s disk appliance backup solution.

The Hands-on day

Our idea for Hands-on day events, is to create a “day in a lab” where a single vendor can present its solution and allow participants to test it live. The main goal is to allow people genuinely interested in the solution proposed, to have a technical presentation and to have a technical contact with the vendor.

The event was a success! About 16 people attending the event, several questions and a lot of interaction between the vendor and the participants.

ExaGrid

ExaGrid is a US company, founded in 2002, that produce easy to use, plug-and-play disk backup and dedupe appliances.

The ExaGrid system is a scalable disk backup solution that works with existing backup applications. ExaGrid approach combines SATA drives, compression and byte-level data deduplication for fast and reliable backups and restores.

The demo

I’ve recorded the first demo. A note to my english speaking readers: the language used in the demo is Italian.

ExaGrid demo by Luca Dell’Oca
All the demos was performed on an EX5000 appliance. Here an overview.

See you at the next VMUG meeting!

vCenter Server Appliance: come registrare un vCenter nel vSphere Web Client via command line

16 Jan 2012 Leave a comment

image_thumb[1]

In vSphere 5 è presente un nuovo client web per gestire vSphere: il vSphere Web Client.

Prima di potersi connettere a un vCenter Server però, è necessario registrare il vCenter con il vSphere Web Client.

E’ possibile registrare più vCenter con un singolo vSphere Web Client ma il vSphere Web Client può connettersi a solo un vCenter Server alla volta, a meno che questi vCenter non siano uniti tramite Linked Mode.

Per registrare un vCenter è sufficiente aprire un browser e farlo puntare alla URL dei tool amministrativi: https://localhost:port/admin-app 

Se si sta usando il vCenter Server della vCenter Server Appliance, questo vCenter è preregistrato con il vSphere Web Client installato nell’appliance stessa.

Ma come fare se si vuole registrare un altro vCenter Server con il vSphere Web Client installato nella vCenter Server Appliance? Non è possibile registrare un vCenter tramite un client da un sistema remoto e non c’e’ nessun browser, ne’ grafico ne’ testuale, installato nella vCSA.

Per registrare il vCenter bisogna ricorrere a uno script via riga di comando, nascosto nella vCSA…

Ecco la procedura:

  1. Connettersi alla vCSA via ssh come utente root (il servizio ssh è abilitato di default)
  2. portarsi nella directory /usr/lib/vmware-vsphere-client/scripts:
    cd /usr/lib/vmware-vsphere-client/scripts
  3. Usare lo script admin-cmd.sh per registrare il vCenter:
    ./admin-cmd.sh register https://localhost:9433/vsphere-client https://localhost root <password>
  4.  

    Lo stesso comando puo’ anche essere usato per deregistrare un vCenter Server.

    Per completezza, ecco l’help completo:

    admin-cmd <register|unregister> <vSphere-web-client-url> <vCenter-server-url> <username> <password>

    register|unregister -  Tipo operazione. Se il tipo è register, questo tool registrerà il vCenter Server specificato con il vSphere Web Client. Se il tipo è unregister, questo tool deregistrerà il vCenter Server specificato.

    vSphere-web-client-url – vSphere Client URL. Esempio: https://clientIP:port/vsphere-client

    vCenter-server-url – vCenter Server che deve essere registrato o deregistrato.

    Per ulteriori informazioni sul vSphere Web Client:

http://vinfrastructure.it/vsphere-5/vmware-vsphere-web-client/

http://www.vladan.fr/vsphere-5-installing-web-client/

http://www.ntpro.nl/blog/archives/1788-vSphere-5-Video-The-vSphere-Web-Client.html

vCenter Server Appliance: how to register a vCenter in vSphere Web Client by command line

16 Jan 2012 Leave a comment

image

With vSphere 5 there is a new web-oriented client to manage vSphere: the vSphere Web Client.

Before you can connect to a vCenter Server, you must register it with the vSphere Web Client.

You can register multiple vCenter Server systems with a single vSphere Web Client. However, the vSphere Web Client can connect only to one vCenter Server system at a time, unless those vCenter Server systems are joined together in Linked Mode.

To register a vCenter you just need to open a Web browser and enter the URL for the administration tool: https://localhost:port/admin-app 

If you are using the vCenter Server in a vCenter Server appliance, it is preregistered with the vSphere Web Client installed in the appliance.

But what if you want to register another vCenter Server with the vSphere Web Client installed as part of a vCenter Server Appliance? You cannot register a vCenter Server system with the client from a remote system and no web browser (neither graphical nor textual) is installed in the vCSA.

To register the vCenter Server you must use a command-line script, well hidden in the vCSA…

Here it is the procedure:

  1. Access the vcsa via ssh as root user (the ssh service is enabled by default on vCSA)
  2. Go to the directory /usr/lib/vmware-vsphere-client/scripts:
    cd /usr/lib/vmware-vsphere-client/scripts
  3. Use the admin-cmd.sh script to register the vcenter:
    ./admin-cmd.sh register https://localhost:9433/vsphere-client https://localhost root <password>
  4.  

    The same command can also be used to unregister a vCenter Server.

    For the sake of completeness the full usage is:

    admin-cmd <register|unregister> <vSphere-web-client-url> <vCenter-server-url> <username> <password>

    register|unregister -  Operation type. If the type is register, this tool will register the specified vCenter Server with the vSphere Web Client. If the type is unregister, this tool will unregister the specified vCenter Server.

    vSphere-web-client-url – vSphere Client URL. Example: https://clientIP:port/vsphere-client

    vCenter-server-url – vCenter Server system which is being registered or unregistered.

    For more info about the vSphere Web Client:

http://www.vladan.fr/vsphere-5-installing-web-client/

http://www.ntpro.nl/blog/archives/1788-vSphere-5-Video-The-vSphere-Web-Client.html

http://vinfrastructure.it/en/vsphere-5/vmware-vsphere-web-client/

WMworld 2011 top sessions and keynotes online on VMworld TV

14 Dec 2011 Leave a comment

 

Missed WMworld2011 US and Europe? Now you can view keynotes and top session online on VMworldTV YouTube channel!

http://www.youtube.com/playlist?list=PL0A1556FC9CA79575&hl=en&gl=US

 

Here the video playlist at the time of writing:

Thursday General Session at VMworld Europe 2011 (VMware CEO)
Wednesday General Session at VMworld Europe 2011 (VMware SVP & GM)
Tuesday General Session at VMworld Europe 2011 (VMware CTO & SVP of EMEA)
Tuesday General Session at VMworld 2011 (VMware CTO)
Monday General Session at VMworld 2011 (VMware CEO, Co-President & CMO)
Deployment Considerations for ESXi 5 (VSP3307)
Upgrading to VMware ESXi 5 (VSP3305)
VMware vCenter 5: What’s New, What’s Cool (VSP2360)
VMware vMotion in VMware vSphere 5: Architecture, Performance & Best Practices (VSP2122)
VMware Storage Distributed Resource Scheduler (VSP1823)
Avoiding the Biggest HA & Resource Scheduler Config Mistakes (BCO3420)
Site Recovery Manager 5 and VMware vSphere Replication (BCO3324)
VMware Data Recovery – Everything You Need To Know (BCO1432)
VMworld 2011 Session: Oracle on VMware (BCA1548)

Enjoy!

Categories: vmware, vmworld Tags: , , ,

VMworld 2011 top session disponibili online per tutti via VMworldTV

14 Dec 2011 Leave a comment

Sono disponibili online visibili a tutti sia le keynotes che le migliori sessioni del VMworld 2011 US e Europe.

E’ sufficiente "sintonizzarsi" sul canale YouTube di VMworldTV:

http://www.youtube.com/playlist?list=PL0A1556FC9CA79575&hl=en&gl=US

Questo l’elenco dei video attualmente disponibili:

Thursday General Session at VMworld Europe 2011 (VMware CEO)
Wednesday General Session at VMworld Europe 2011 (VMware SVP & GM)
Tuesday General Session at VMworld Europe 2011 (VMware CTO & SVP of EMEA)
Tuesday General Session at VMworld 2011 (VMware CTO)
Monday General Session at VMworld 2011 (VMware CEO, Co-President & CMO)
Deployment Considerations for ESXi 5 (VSP3307)
Upgrading to VMware ESXi 5 (VSP3305)
VMware vCenter 5: What’s New, What’s Cool (VSP2360)
VMware vMotion in VMware vSphere 5: Architecture, Performance & Best Practices (VSP2122)
VMware Storage Distributed Resource Scheduler (VSP1823)
Avoiding the Biggest HA & Resource Scheduler Config Mistakes (BCO3420)
Site Recovery Manager 5 and VMware vSphere Replication (BCO3324)
VMware Data Recovery – Everything You Need To Know (BCO1432)
VMworld 2011 Session: Oracle on VMware (BCA1548)

VMUG.IT Hands On Day 2012/1: Exagrid – 18 gennaio 2012

VMUG_IT-blue-CMYK-outlinesimage

Ed eccoci finalmente al primo appuntamento con Hands-On Lab, il progetto presentato a Ottobre 2011 da VMUG.IT.

Hands-On Lab?

L’Hands-On Lab è una giornata di laboratorio, in cui un singolo produttore ha la possibilità di presentare la propria soluzione per VMware, e permettere ai partecipanti di testarlo dal vivo.
Il taglio è spiccatamente tecnico, e la presenza di un unico produttore con un’unica soluzione, permette la partecipazione a persone realmente interessate all’argomento proposto.

Chi

Protagonista del primo evento 2012 sarà ExaGrid.

ExaGrid è una società statunitense, fondata nel 2001 e con un unico prodotto a catalogo: l’appliance ExaGrid.

ExaGrid è una soluzione di backup su disco economica e scalabile che lavora in modo trasparente con le vostre applicazioni di backup esistenti. L’innovativo approccio di ExaGrid minimizza la quantità di dati da salvare offrendo la compressione dei backup più recenti, oltre alla deduplica dei dati byte-level di tutti i precedenti backup. La soluzione di backup su disco di ExaGrid sfrutta la deduplica dei dati che salva solo le modifiche byte-level tra un backup e l’altro invece di salvare copie complete.

Questo approccio riduce lo spazio disco richiesto da 10 a 50 volte o più, offrendo risparmi di spesa e prestazioni impareggiabili al 30% del costo di uno storage standard, quasi lo stesso prezzo di un sistema a nastro.

L’unica combinazione di deduplica post-process, cache dei backup recenti, e scalabilità GRID permette ai reparti IT di ottenere finestre di backup minime e ripristini veloci e sicuri, senza degradi di performance o sostituzioni hardware al crescere dei dati.

Per maggiori dettagli vi rimando all’ottima serie di post di Luca http://www.vuemuer.it/?p=2363

Quando

18 gennaio 2012

Dove

Questo Hands-on Lab sara’ ospitato da:

Moresi.Com SA

Via Pedemonte di Sopra

6818 Melano

Switzerland

Voglio iscrivermi!

L’evento è a numero chiuso (30 partecipanti), ed è prevista una lista d’attesa. La registrazione all’evento avviene in base all’ordine di iscrizione. Chi risulta iscritto e non potesse partecipare, è invitato a deregistrarsi in modo da permettere a chi è in lista di attesa di partecipare.

Tutti i dettagli su date, luogo, orari, e gli strumenti per registrarsi sono disponibili a questo link:
http://hod2012-01.eventbrite.com/

Vi aspettiamo!

Il mio nuovo lab – gli host

Finora come lab ho sempre usato un unico pc con VMware Workstation e alcuni host ESXi virtuali. Avevo scelto questa configurazione per il vantaggio di poter usare il pc anche per altro oltre al lab VMware, ma ha alcuni difetti:

- non permette di eseguire virtual machine 64bit dentro gli ESXi virtuali

- non permette di provare fault tolerance

- le prestazioni complessive sono "accettabili" ma nulla di piu’

- e’ difficoltoso provare qualcosa di piu’ di un piccolo cluster vSphere

Con l’uscita di vSphere 5 ho quindi deciso di ampliare un po’ il mio lab cosi’ da avere piu’ margini di manovra.

I requisiti del lab che volevo sono:

- essere "accettabile" per la presenza in casa: quindi silenzioso e con consumi non elevati

- avere abbastanza "potenza di fuoco" da permettermi di provare un po’ di tutto, compreso vCloud Director

Ispirandomi ai lab di @vladan e @KendickColeman, ho deciso per una coppia di whitebox piu’ uno storage condiviso.

Dato che il nuovo lab e’ tuttora un work in progress, postero’ un po’ per volta i progressi.

Gli host

Per gli host ho deciso per due whitebox. Per chi non lo sapesse con il termine whitebox si intende utilizzare hardware non server per i nodi ESXi. Ovviamente un whitebox non e’ certificato in nessun modo e la scelta dell’hardware diventa difficile, in compenso si spende meno che con un server "vero" e si hanno macchine decisamente piu’ silenziose e con consumi di corrente minori.

Dopo aver fatto un po’ di ricerche e consultato la whitebox HCL su www.vm-help.com ho deciso, ed ecco la mia scelta:

- barebone Asus V7-P8H67E

- cpu Intel core i5-2400

- 16 GB ram

- nic aggiuntiva Intel dual port (comprate usate via eBay)

- chiavetta usb per l’installazione di ESXi 5

image

Per l’installazione di ESXi5 su chiavetta usb, vi lascio a una delle tante guide: personalmente ho scelto la via veloce di installare su chiavetta tramite Workstation.

E ora le buone notizie: tutto viene riconosciuto! Anche la scheda di rete integrata viene riconosciuta, cosa che mi lascia con ben 3 schede di rete gigabit a disposizione Sorriso

Ed ecco il lab in tutto il suo splendore…

SAMSUNG

Categories: virtualization, vmware Tags: , ,

VMware Workstation 8.0.1 released

21 Nov 2011 Leave a comment

VMware workstation 8.0.1 update has been released.In this new free update for Workstation 8.0 users, there are some enhancements and some bugfix.

Enhancements

  • Graphics performance and compatibility enhancements
  • Improvements in creating and using shared virtual machines and remote virtual machines
  • Ubuntu 11.10 is officially supported as a guest operating system

Some resolved issues

  • VMware Tools failed to start in Fedora 15 guests
  • An Ubuntu 11.10 guest crashed with a signal 11 error if you installed or upgraded VMware Tools
  • Easy Install did not properly function on Ubuntu 11.10
  • If remote virtual machines were open, you could not shut down the Windows hosts

You can read the full release notes here:

http://www.vmware.com/support/ws80/doc/releasenotes_workstation_801.html

For more information about Workstation 8, trial version or buy:

http://www.vmware.com/products/workstation/overview.html

Categories: vmware, workstation Tags: ,

Rilasciato VMware Workstation 8.0.1

21 Nov 2011 Leave a comment

E’ disponibile da qualche giorno il nuovo aggiornamento gratuito per Workstation 8.0; in questo aggiornamento ci sono alcune nuove funzionalita’ e alcuni bugfix.

Nuove funzionalita’

  • Miglioramenti alle performance e alla compatibilita’ grafica
  • Miglioramenti nella creazione e uso di shared e remote virtual machine
  • Supporto ufficiale a Ubuntu 11.10 come guest

Alcuni problemi risolti

  • Fallimento della partenza dei VMware Tools in guest Fedora 15
  • Crash di guest Ubuntu 11.10 in caso di installazione e upgrade dei VMware Tools
  • Easy install non funzionante con Ubuntu 11.10
  • Impossibile spegnere l’host Windows in caso delle virtual machine remote fossero aperte

Potete trovare le release notes complete qui:

http://www.vmware.com/support/ws80/doc/releasenotes_workstation_801.html

Per ulteriori informazioni su Workstation 8 e per scaricare la trial o acquistarlo:

http://www.vmware.com/products/workstation/overview.html

Categories: vmware, workstation Tags: ,