Book Image

VMware vRealize Configuration Manager Cookbook

By : Abhijeet Shriram Janwalkar
Book Image

VMware vRealize Configuration Manager Cookbook

By: Abhijeet Shriram Janwalkar

Overview of this book

VMware vRealize Configuration Manager (VCM) helps you to automate IT operations, manage performance, and gain visibility across physical and virtual infrastructure. It is continuously being used by enterprises to audit the configurations of the VMware infrastructure as well as the Windows, Linux, and UNIX operating systems. This book is filled with practical recipes through which you will learn about the latest features of vRealize Configuration Manager 5.8.X, starting with installation of various tiers of VCM followed by configuration management across physical and virtual servers. Throughout this book, you will explore how VCM can perform tasks such as patch management, compliance assessment, and software package distribution along with Machine filters for new platforms such as RHEL 7 and Windows 10. This book will ease your troubles while upgrading from the existing VCM to the latest version by providing you with step-by-step instructions about the process of migration along with upgrade and maintenance support. This book will help you understand how to integrate vRealize Configuration with other applications along with schedule management and also guide you on how to handle security issues. After reading this book, you will have a clear understanding of how VCM fits in the overall picture of the data center design from a patching and compliance perspective.
Table of Contents (18 chapters)
VMware vRealize Configuration Manager Cookbook
Credits
About the Author
Acknowledgments
About the Reviewer
www.PacktPub.com
Preface
11
Understanding VCM Console

Troubleshooting VCM console login failure


You are trying to log in to VCM and it throws an error: Your ID is disabled.

Getting ready

You will need access to SQL server to resolve the issue.

Consider this: you do not have anyone who can help you enable the ID or, even worse, you were setting up the VCM and still haven't added anyone, so yours is the only account that can log in and make the necessary settings.

No worries; we have a solution.

You will need SQL Managemnt Studio and access to your SQL server that holds the VCM DB.

How to do it...

Follow these steps to unlock the user:

  1. Log in to the VCM SQL server and launch SQL Management Studio.

    Select VCM as the database and run the first query:

              select * from ecm_sysdat_logins 
    

    This will show all the users with their login IDs.

  2. Note the login ID for the user you were trying and run the following query:

              update ecm_sysdat_logins set login_active = 1 where login_id = X 
    

    X is the login ID of the user you noted earlier.

The login...