Search This Blog

Thursday, August 22, 2019

FREE e-book - PowerCLI: The Aspiring Automator’s Guide


If you currently use PowerCLI to automate basic tasks with pre-defined scripts, you’ll already know how powerful automation can be. However, taking the next step and customizing scripts to carry out tasks specifically designed for your needs opens a whole new world of opportunities. This new eBook from Altaro takes you there.




Written by VMware vExpert Xavier Avrillier, this free eBook presents a use-case approach to learning how to automate tasks in vSphere environments using PowerCLI. We start by covering the basics of installation, set up, and an overview of PowerCLI terms. From there we move into scripting logic and script building with step-by-step instructions of truly useful custom scripts, including:

·      How to retrieve data on vSphere objects
·      Display VM performance metrics
·      How to build HTML reports and schedule them
·      Basics on building functions
·      And more!

Stop looking at scripts online in envy because you wish you could build your own scripts. DownloadPowerCLI: The Aspiring Automator’s Guide now and get started on your path to automation greatness!

Sunday, August 18, 2019

Build Object Storage OnPrem for Lab

In this post, we are going to setup object storage on-prem for lab purpose.
This allow us to test object storage without using Microsoft Azure Blob Storage or AWS S3.

To start, download minio from here.
It is a small file around 43MB.

Start your object storage by using command line.

Minio.exe server <path of object storage target>

We use C:\Backup\Minio

Final command:

Minio.exe server C:\Backup\Minio
Object storage is now ready to use on your on-prem.

Our Lab setup:-

Here is sample of the object storage detail on my lab:
Endpoint: https://192.168.0.143:9000
Access Key : KZQNQQIFA4MEOHPWC42N
Secret Key: LCWkIm3Cw4MKZTk+4H4e07xRdrU2tzWeyQ0m9qYz

To access your storage from browser:

https://192.168.0.143:9000

Use the access key & secret key to access to your object storage.


Good luck on your setup..