6.7
Table Of Contents
- vCenter Server Installation and Setup
- Contents
- About vCenter Server Installation and Setup
- Introduction to vSphere Installation and Setup
- Overview of the vSphere Installation and Setup Process
- vCenter Server Components and Services
- Overview of the vCenter Server Appliance
- vCenter Server and Platform Services Controller Deployment Types
- Understanding vSphere Domains, Domain Names, and Sites
- Deployment Topologies with External Platform Services Controller Instances and High Availability
- vCenter Enhanced Linked Mode
- Deploying the vCenter Server Appliance and Platform Services Controller Appliance
- System Requirements for the vCenter Server Appliance and Platform Services Controller Appliance
- Hardware Requirements for the vCenter Server Appliance and Platform Services Controller Appliance
- Storage Requirements for the vCenter Server Appliance and Platform Services Controller Appliance
- Software Requirements for the vCenter Server Appliance and Platform Services Controller Appliance
- Required Ports for vCenter Server and Platform Services Controller
- DNS Requirements for the vCenter Server Appliance and Platform Services Controller Appliance
- vSphere Web Client Software Requirements
- Preparing for Deployment of the vCenter Server Appliance and Platform Services Controller Appliance
- Prerequisites for Deploying the vCenter Server Appliance or Platform Services Controller Appliance
- GUI Deployment of the vCenter Server Appliance and Platform Services Controller Appliance
- Required Information for Deploying a vCenter Server Appliance or Platform Services Controller Appliance
- Deploy the vCenter Server Appliance with an Embedded Platform Services Controller by Using the GUI
- Deploy a Platform Services Controller Appliance by Using the GUI
- Deploy the vCenter Server Appliance with an External Platform Services Controller by Using the GUI
- CLI Deployment of the vCenter Server Appliance and Platform Services Controller Appliance
- System Requirements for the vCenter Server Appliance and Platform Services Controller Appliance
- Installing vCenter Server and Platform Services Controller on Windows
- vCenter Server for Windows Requirements
- Pre-Install Checks for vCenter Server and Platform Services Controller on Windows
- Hardware Requirements for vCenter Server and Platform Services Controller on Windows
- Storage Requirements for vCenter Server and Platform Services Controller on Windows
- Software Requirements for vCenter Server and Platform Services Controller on Windows
- Database Requirements for vCenter Server on Windows
- Required Ports for vCenter Server and Platform Services Controller
- DNS Requirements for vCenter Server and Platform Services Controller on Windows
- vSphere Web Client Software Requirements
- Preparing for Installing vCenter Server and Platform Services Controller on Windows
- Download the vCenter Server Installer for Windows
- Preparing vCenter Server Databases for Install
- vCenter Server Database Configuration Notes
- Configure Microsoft SQL Server Databases
- Configure Oracle Databases
- Database Permission Requirements for vCenter Server
- Verify That vCenter Server Can Communicate with the Local Database
- Maintaining a vCenter Server Database
- Synchronizing Clocks on the vSphere Network
- Using a User Account for Running vCenter Server
- Installing vCenter Server on IPv6 Machines
- Running the vCenter Server Installer from a Network Drive
- Required Information for Installing vCenter Server or Platform Services Controller on Windows
- Installing vCenter Server and Platform Services Controller on Windows
- vCenter Server for Windows Requirements
- File-Based Backup and Restore of vCenter Server Appliance
- Image-Based Backup and Restore of a vCenter Server Environment
- After You Install vCenter Server or Deploy the vCenter Server Appliance
- Log in to vCenter Server by Using the vSphere Web Client
- Install the VMware Enhanced Authentication Plug-in
- Collect vCenter Server Log Files
- Repoint vCenter Server to Another External Platform Services Controller in the Same Domain
- Repoint vCenter Server to External Platform Services Controller in a Different Domain
- Reconfigure a Standalone vCenter Server with an Embedded Platform Services Controller to a vCenter Server with an External Platform Services Controller
- Troubleshooting vCenter Server Installation or Deployment
- Uninstall vCenter Server
4 Configure Microsoft SQL Server TCP/IP for JDBC
If the Microsoft SQL Server database has TCP/IP disabled and the dynamic ports are not set, the
JDBC connection remains closed. The closed connection causes the vCenter Server statistics to
malfunction. You can configure the server TCP/IP for JDBC.
Prepare the vCenter Server SQL Server Database
You first create a database and user for vCenter Server. Then you assign permissions to the
vCenter Server database user either by using the existing dbo schema and dbo_owner role or by creating
custom database schema and roles.
Prerequisites
Log in to the Microsoft SQL Server Management Studio as the sysadmin (SA) or a user account with
sysadmin privileges.
Prepare the vCenter Server Database by Using the dbo Schema and the db_owner Database
Role
The simplest way to assign permissions for a vCenter Server database user is through the database role
db_owner.
You must first create a database and user for vCenter Server. Then you can use the existing dbo_owner
database role and let the vCenter Server installer create the default dbo schema that assigns database
user permissions to that role. You must also enable database monitoring for the user before you install
vCenter Server. See Database Permission Requirements for vCenter Server.
To perform the following procedure, you can either use the graphical user interface or run scripts. The
vCenter Server installer package contains example scripts in the vCenter-
Server\dbschema\DB_and_schema_creation_scripts_PostgreSQL.txt file.
Procedure
1 Create a database and user for vCenter Server.
a In the master database, create a database for vCenter Server.
b Create a database user for vCenter Server and map it to the vCenter Server and msdb
databases.
For example, to create the database VCDB and user vpxuser, you can run the following script:
use master
go
CREATE DATABASE VCDB ON PRIMARY
(NAME = N'vcdb', FILENAME = N'C:\database_path\VCDB.mdf', SIZE = 10MB, FILEGROWTH = 10% )
LOG ON
(NAME = N'vcdb_log', FILENAME = N'C:\database_path\VCDB.ldf', SIZE = 1000KB, FILEGROWTH = 10%)
COLLATE SQL_Latin1_General_CP1_CI_AS
go
use VCDB
go
CREATE LOGIN vpxuser WITH PASSWORD=N'vpxuser!0', DEFAULT_DATABASE=VCDB,
DEFAULT_LANGUAGE=us_english, CHECK_POLICY=OFF
vCenter Server Installation and Setup
VMware, Inc. 92