Stopping, starting, or restarting VCSA services

When working with vCenter Appliance it is bit hard to manage the relavent services.
If you can access the web-based GUI, then the thing are simple. You can Log in to the vSphere Web Client with a vCenter Single Sign-on administrator account. The go to Administration > Deployment > System Configuration.
What if you can’t get there and you don’t have a possibility to login into the web-based UI, to check for the services status? Then you need SSH console. Log in as root through an SSH or console session on the vCenter Server Appliance.

  • Run this command to enable the shell:

shell.set –enabled true

  • Run this command to launch the shell:

shell

  • Run this to change directories to /bin:

cd /bin

  • Run this command to list the vCenter Server Appliance services:

service-control –list

  • To view the current status of the vCenter Server Appliance services, type the command:

service-control –status

  • To Manage all the services you can use:

service-control –start –all / service-control –stop –all

  • TO START A SPECIFIED SERVICE

service-control –start servicename

  • TO STOP A SPECIFIED SERVICE

service-control –stop servicename

[source: kb.vmware.com]

RDM intro and Migrating virtual machines with Raw Device Mappings

First of all we will discuss about a common use case with regards to the RDM – Raw Device Mappings,

Microsoft failover clustering service requires to have RDM volumes specially when using the multi host clustering setup (cluster-across-boxes)

In this setup, Physical compatibility mode is being used. By doing this the VM will have more IOPS access than the virtualized storage.

Raw device mapping (RDM) is a mapping file that provides direct access to a LUN on an iscsi or fibre channel storage system for a virtual machine. RDM is basically a Mapping file acts as a proxy for a raw physical storage device placed in a VMFS volume. Virtual Machine can directly access the storage device using RDM and RDM contains metadata which controls the disk access to the physical device. Raw Device Mapping (RDM) gives you some of the advantages of direct access to a physical device while keeping some advantages of a virtual disk in VMFS. 

Now, let’s discuss the Migration process of the VM servers with RDM in detail;

Migrating virtual machines with RDMs can be performed in three ways:

  1. Warm migration (vMotion), with the virtual machine powered on.
  2. Cold migration, with the virtual machine powered off.
  3. Storage migration (Storage vMotion), with the virtual machine powered on.

To be honest, this process is a pain and also not an easy task to carry out.

But VMware discusses some of the common questions that arise when migrating virtual machines that use Raw Device Mappings (RDMs).

https://kb.vmware.com/s/article/1005241