Quantcast
Channel: Easy In IT
Viewing all articles
Browse latest Browse all 10

Part 2 – Install SQL

0
0

Install the SQL Server.

In this part we will install the SQL Server. Nothing special, it’s just a normal SQL 2012 installation.

Not sure if it’s still needed, but I install the .Net 3.5 Feature and I add a Firewall rule to allow incoming SQL traffic on port 1433 using these Powershell lines.

#Install the .Net 3.5 feature
Install-WindowsFeature NET-Framework-Core -Source D:\sources\sxs

#Create the firewall rule for SQL
New-NetFirewallRule -DisplayName "SQL 1433" -Direction Inbound -LocalPort 1433 -Protocol TCP -Action Allow

Next I start the SQL installation and choose SQL Server Feature Installation.P2_001

In the Feature Selection window, I select the Database Engine Services and the Management Tools – Complete.P2_002

In the Server Configuration window, I configure the service accounts we created in part 1.P2_003

I keep the default collation.P2_004

In the Database Engine Configuration, I specify the Domain Administrator as SQL Server Administrator.P2_005

I just continue the installation with all the deafults and wait for it to finish.

Coming up next: Install Virtual Machine Manager.


Viewing all articles
Browse latest Browse all 10

Latest Images

Trending Articles





Latest Images