Вы находитесь на странице: 1из 12

SQL Server 2012 Installation Guide - SQLServerCentral

Log in :: Register :: Not logged in


Home
Tags
Articles
Editorials
Stairways
Forums
Scripts
Videos
Blogs
QotD
Books
Ask SSC
SQL Jobs
Training
Authors
About us
Contact us
Newsletters
Write for us

Page 1 of 12

Search

Go

Basit's SQL Server Tips

Get Your Own Blog

Basit Farooq is a Lead Database Administrator, Trainer and Technical Author. He has more than a
decade of IT experience in development, technical training and database administration on

If you would like to blog on


SQLServerCentral.com then send an email to
webmaster@sqlservercentral.com.

Microsoft SQL Server platforms. Basit has authored numerous SQL Server technical articles, and
developed and implemented many successful database infrastructure, data warehouse and
business intelligence projects. He holds a master's degree in computer science from London

Contact the author

Metropolitan University, and industry standard certifications from Microsoft, Sun, Cisco,

Please log in or register to contact the author


of this blog

Brainbench, Prosoft and APM, including MCITP Database Administrator 2008, MCITP Database
Administrator 2005, MCDBA SQL Server 2000 and MCTS .NET Framework 2.0 Web Applications.

All Blogs

SQL Server 2012 Installation Guide


Posted on 23 June 2012

Comments

Briefcase

Print

This article walks the user through installation of SQL Server 2012 on a Windows Server 2008 system using the
SQL Server setup installation wizard. The installation process is simple, straight forward and is very similar to
SQL Server 2008 / 2008 R2 setup. The procedure described is for a non-clustered server, and can be applied

All Bloggers on SQL Server Central

Feeds
Subscribe to this blog

either to a default instance or a named instance. It is intended to be read by Database Administrators and
anybody interested in the technical aspects of carrying out this task.

Archives for this blog

Before beginning, you should check that minimum hardware and software requirements to install and run SQL

January 2015

Server 2012 have been met. For operating system and hardware requirements, visit:
http://msdn.microsoft.com/en-us/library/ms143506.aspx.

December 2014
September 2014

Preparing for Installation

August 2014
July 2014

Identify drives to which the databases and/or logs will be backed up, ensuring that there is enough disk space
to accommodate the backups for the retention period that you choose.
Identify drive that will be used for data or log files. These will usually be on SAN storage and hence on a
different drive from the operating system and SQL Server installations. Decide which folder will be the primary
location for data files: you will need to specify this during the installation. If you are installing Analysis
Services, identify drives that will host the data and log files for the cube(s).
Create dedicated service account for each of the service to be installed. Ensure that these accounts are not
member of Local Administrator because it will give unnecessary rights to these accounts. Note: for the
purpose of this tutorial Im using local system accounts as a service start-up accounts.
Assign Deny logon locally right to these service accounts.
Choose the port number for you SQL Server installation because common TCP\IP ports 1433/1434 ports are
well known and are common target for hackers. Therefore it is recommended to change default ports
associated with the SQL Server installation.
Installing SQL Server 2012
Insert the SQL Server installation media. From the root folder, double-click Setup.exe. To install from a network
share, locate the root folder on the share, and then double-click Setup.exe:

May 2014
April 2014
March 2014
February 2014
January 2014
December 2013
October 2013
September 2013
August 2013
July 2013
June 2013
May 2013
April 2013
March 2013
February 2013
January 2013
December 2012
November 2012
October 2012
September 2012
August 2012
July 2012
June 2012
May 2012
February 2012
December 2011

The Installation Wizard runs the SQL Server Installation Center. To create a new installation of SQL Server,
select the Installation option on the left side, and then click New SQL Server stand-alone installation or add
features to an existing installation:

http://www.sqlservercentral.com/blogs/basits-sql-server-tips/2012/06/23/sql-server-2012-installati...

SQL Server 2012 Installation Guide - SQLServerCentral

Page 2 of 12

Setup is now preparing to launch Setup Support Rules window:

Now Setup Support Rules will run to identify problems that may occur during the Setup Support Files installation:

Once this step finishes click OK to proceed to Product Key window, In the Product Key window, enter the
Product license key (if required), and click Next to continue:

http://www.sqlservercentral.com/blogs/basits-sql-server-tips/2012/06/23/sql-server-2012-installati...

SQL Server 2012 Installation Guide - SQLServerCentral

Page 3 of 12

In the License Terms window, tick the box I accept the license terms and then click Next to continue:

Note: You must accept the license agreement before you can continue the installation of SQL Server
2012. Send feature usage data to Microsoft option is optional.
Click Next and then click Install to Install Setup Files:

These files are necessary to perform the actual installation. Following the installation of the setup support files,
you will be presented with another compatibility check. Following dialog appears once you successfully pass

http://www.sqlservercentral.com/blogs/basits-sql-server-tips/2012/06/23/sql-server-2012-installati...

SQL Server 2012 Installation Guide - SQLServerCentral

Page 4 of 12

these checks. You can click the Show Details button under the green progress bar if you want to see the
individual checks listed:

Click Next to continue to the Setup Role page:

Select SQL Server Feature Installation option and then Next to continue to Feature Selection page:

Im going to select all features so that we can walk through a complete installation process. This will install the
Database Engine Services, Analysis Services, Reporting Services, and a number of shared features including
SQL Server Books Online. You can also specify the shared feature directory where share features components

http://www.sqlservercentral.com/blogs/basits-sql-server-tips/2012/06/23/sql-server-2012-installati...

SQL Server 2012 Installation Guide - SQLServerCentral

Page 5 of 12

will be installed. Click Next to continue to the Installation Rules page, Setup verifies the system state of your
computer before Setup continues:

Click Next to continue to the Instance Configuration page. Each server machine can host one default instance of
SQL Server, which resolves to the server name, and multiple named instances, which resolves to the pattern
ServerName\InstanceName.
In this sample installation, I will install a named instance of SQL Server 2012 called DEV01:

Note: This screen also report on other instances installed on this machine.
Click Next to proceed to the Disk Space Requirements page:

http://www.sqlservercentral.com/blogs/basits-sql-server-tips/2012/06/23/sql-server-2012-installati...

SQL Server 2012 Installation Guide - SQLServerCentral

Page 6 of 12

This is just a information page that does not require you to make any choices. Click Next to go to Server
Configuration page:

Here you specify service startup and authentication. Microsoft recommends that each service account have
separate user accounts as a security best practice as shown in the following figure:

The SQL Server 2012 Books Online makes the following security recommendations:

Run separate SQL Server services under separate Windows accounts.


Run SQL Server services with the lowest possible privileges.
Associate SQL Server services with Windows accounts.
Require Windows Authentication for connections to the SQL Server.

For the purposes of this article, we will authenticate all services using LocalSystem account.
You may have noticed the Collation tab here in this page. Click Collation tab and then click Customize button to
specify the collation for your Database Engine and Analysis Services instance that best matches your application
need:

http://www.sqlservercentral.com/blogs/basits-sql-server-tips/2012/06/23/sql-server-2012-installati...

SQL Server 2012 Installation Guide - SQLServerCentral

Page 7 of 12

Click Next to continue to Database Engine Configuration page. The SQL Server 2012 authentication mode was
configured for Windows Authentication Mode per Microsoft security best practice. For the purposes of this
article, I will be choosing Mixed Mode Authentication. You will also need to specify the SQL Server
administrators to be used; in this example I will use the current logged in user by clicking Add Current User
button:

Click Data Dictionary tab and specify default database, log, backup, and tempdb locations:

http://www.sqlservercentral.com/blogs/basits-sql-server-tips/2012/06/23/sql-server-2012-installati...

SQL Server 2012 Installation Guide - SQLServerCentral

Page 8 of 12

Click FILESTREAM tab and enable this feature as below:

FILESTREAM feature is quiet useful when binaries or other data that does not fit neatly in a table structure.
Click Next to proceed to Analysis Services Configuration page, this is similar to Database Engine Configuration
page.
Specify users or accounts that will have administrator permissions for Analysis Services in Account Provisioning
page and specify non-default installation directories in Data Directories page:

http://www.sqlservercentral.com/blogs/basits-sql-server-tips/2012/06/23/sql-server-2012-installati...

SQL Server 2012 Installation Guide - SQLServerCentral

Page 9 of 12

Click Next to continue to Reporting Services Configuration page, specify the kind of Reporting Services
installation to create. For the purpose of this article, I will use Install and Configure option:

For more information about Reporting Services configuration modes and the options we have, see Reporting
Services Configuration Options (SSRS).
Click Next to proceed to Distributed Replay Controller page, specify the users you want to grant administrative
permissions to for the Distributed Replay controller service and then click Next to continue:

Distributed Replay Client Configuration page appears, here specify setting as shown in next figure:

http://www.sqlservercentral.com/blogs/basits-sql-server-tips/2012/06/23/sql-server-2012-installati...

SQL Server 2012 Installation Guide - SQLServerCentral

Page 10 of 12

Click Next to advanced to Error Reporting page, tick the check box if you want to send Windows and SQL Server
error reports to Microsoft:

Click Next, Now System Configuration Checker will run some more rules that will validate your computer
configuration with the SQL Server features you have specified:

Correct any errors reported in the Installation Rules screen and click on Next to advanced to Ready to Install
page. This page shows a tree view of installation options that were specified during Setup. On this page, Setup
indicates whether the Product Update feature is enabled or disabled and the final update version:

http://www.sqlservercentral.com/blogs/basits-sql-server-tips/2012/06/23/sql-server-2012-installati...

SQL Server 2012 Installation Guide - SQLServerCentral

Page 11 of 12

Click Install button to start SQL Server 2012 installation. The Setup will first install the required prerequisites for
the selected features followed by the feature installation. The Installation Progress page provides status so that
you can monitor installation progress as Setup continues:

When the installation is complete, click on Next to Complete page:

Click on the link to review the installation log if appropriate, then click on Close.
This finalizes the installation process for SQL Server 2012.

http://www.sqlservercentral.com/blogs/basits-sql-server-tips/2012/06/23/sql-server-2012-installati...

SQL Server 2012 Installation Guide - SQLServerCentral

Page 12 of 12

Comments
Leave a comment on the original post [basitaalishan.wordpress.com, opens in a new window]

Posted by Basit Farooq on 11 November 2012


Reblogged this on Basit's SQL Server Tips.
LikeLike

Posted by Sree on 21 November 2012


Very Good and Very usefull.
LikeLike

Posted by John Cas (@moresunshine_1) on 26 November 2012


Where did you configure the port for SQL, or is that still a post configuration task?
LikeLike

Posted by Basit Farooq on 26 November 2012


Yes, it is a post installation task. You can change port by using SQL Server Configuration Manager.
LikeLike

Posted by Carl Perkins on 7 February 2013


Most excellent! Thank you.
LikeLike

Posted by TechMePro on 4 March 2013


Here is the Video how to Install Sql Server 2012. Thank You.

LikeLike

Posted by bhavesh on 17 April 2013


Great work. Thank you
LikeLike

Posted by Rk on 14 July 2013


Thanks
LikeLike

Posted by Miles on 15 September 2014


Have you written the SQL Server 2014 Installation Guide yet? I really like this 2012 version, but Im getting
ready to install 2014.
LikeLike

Posted by Basit Farooq on 21 September 2014


Hi Miles,
Thanks for liking the article. I am currently writing the SQL Server 2014 Guide, it will be due for publication in
October.
Regards,
Basit
LikeLike

Copyright 2002-2015 Simple Talk Publishing. All Rights Reserved. Privacy Policy. Terms of Use. Report Abuse.

http://www.sqlservercentral.com/blogs/basits-sql-server-tips/2012/06/23/sql-server-2012-installati...

Вам также может понравиться