Skip to content

Instantly share code, notes, and snippets.

@cheeseplus
Last active August 29, 2015 14:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cheeseplus/71927ab5cb9845741698 to your computer and use it in GitHub Desktop.
Save cheeseplus/71927ab5cb9845741698 to your computer and use it in GitHub Desktop.
sql_server::server recipe on ec2
projects/cookbooks/umbraco-cookbook master ✗ 172d ⚑ ◒
▶ knife ec2 server create --image ami-9ade1df2 --flavor m1.medium --region us-east-1 --user-data dat-boostrap.ps1 -x chef -P 'chef' -r 'role[sql_databass],recipe[sql_server::server]' --ssh-key aws-east
Instance ID: i-895146a4
Flavor: m1.medium
Image: ami-9ade1df2
Region: us-east-1
Availability Zone: us-east-1c
Security Groups: default
Tags: Name: i-895146a4
SSH Key: aws-east
Waiting for instance...........
Public DNS Name: ec2-54-164-95-159.compute-1.amazonaws.com
Public IP Address: 54.164.95.159
Private DNS Name: ip-172-31-31-169.ec2.internal
Private IP Address: 172.31.31.169
WARNING: Could not load IOV methods. Check your GSSAPI C library for an update
WARNING: Could not load AEAD methods. Check your GSSAPI C library for an update
Waiting for winrm......done
Waiting for remote response before bootstrap.ec2-54-164-95-159.compute-1.amazonaws.com .
ec2-54-164-95-159.compute-1.amazonaws.com Response received.
Remote node responded after 0.58 minutes.
Bootstrapping Chef on ec2-54-164-95-159.compute-1.amazonaws.com
ec2-54-164-95-159.compute-1.amazonaws.com "Rendering "C:\Users\chef\AppData\Local\Temp\bootstrap-50639-1408656353.bat" chunk 1"
ec2-54-164-95-159.compute-1.amazonaws.com "Rendering "C:\Users\chef\AppData\Local\Temp\bootstrap-50639-1408656353.bat" chunk 2"
ec2-54-164-95-159.compute-1.amazonaws.com "Rendering "C:\Users\chef\AppData\Local\Temp\bootstrap-50639-1408656353.bat" chunk 3"
ec2-54-164-95-159.compute-1.amazonaws.com "Rendering "C:\Users\chef\AppData\Local\Temp\bootstrap-50639-1408656353.bat" chunk 4"
ec2-54-164-95-159.compute-1.amazonaws.com "Rendering "C:\Users\chef\AppData\Local\Temp\bootstrap-50639-1408656353.bat" chunk 5"
ec2-54-164-95-159.compute-1.amazonaws.com "Rendering "C:\Users\chef\AppData\Local\Temp\bootstrap-50639-1408656353.bat" chunk 6"
ec2-54-164-95-159.compute-1.amazonaws.com "Rendering "C:\Users\chef\AppData\Local\Temp\bootstrap-50639-1408656353.bat" chunk 7"
ec2-54-164-95-159.compute-1.amazonaws.com "Rendering "C:\Users\chef\AppData\Local\Temp\bootstrap-50639-1408656353.bat" chunk 8"
ec2-54-164-95-159.compute-1.amazonaws.com "Rendering "C:\Users\chef\AppData\Local\Temp\bootstrap-50639-1408656353.bat" chunk 9"
ec2-54-164-95-159.compute-1.amazonaws.com "Rendering "C:\Users\chef\AppData\Local\Temp\bootstrap-50639-1408656353.bat" chunk 10"
ec2-54-164-95-159.compute-1.amazonaws.com "Rendering "C:\Users\chef\AppData\Local\Temp\bootstrap-50639-1408656353.bat" chunk 11"
ec2-54-164-95-159.compute-1.amazonaws.com "Rendering "C:\Users\chef\AppData\Local\Temp\bootstrap-50639-1408656353.bat" chunk 12"
ec2-54-164-95-159.compute-1.amazonaws.com "Rendering "C:\Users\chef\AppData\Local\Temp\bootstrap-50639-1408656353.bat" chunk 13"
ec2-54-164-95-159.compute-1.amazonaws.com Checking for existing directory "C:\chef"...
ec2-54-164-95-159.compute-1.amazonaws.com Existing directory not found, creating.
ec2-54-164-95-159.compute-1.amazonaws.com
ec2-54-164-95-159.compute-1.amazonaws.com C:\Users\chef>(
ec2-54-164-95-159.compute-1.amazonaws.com echo.url = WScript.Arguments.Named("url")
ec2-54-164-95-159.compute-1.amazonaws.com echo.path = WScript.Arguments.Named("path")
ec2-54-164-95-159.compute-1.amazonaws.com echo.proxy = null
ec2-54-164-95-159.compute-1.amazonaws.com echo.Set objXMLHTTP = CreateObject("MSXML2.ServerXMLHTTP")
ec2-54-164-95-159.compute-1.amazonaws.com echo.Set wshShell = CreateObject( "WScript.Shell" )
ec2-54-164-95-159.compute-1.amazonaws.com echo.Set objUserVariables = wshShell.Environment("USER")
ec2-54-164-95-159.compute-1.amazonaws.com echo.
ec2-54-164-95-159.compute-1.amazonaws.com echo.rem http proxy is optional
ec2-54-164-95-159.compute-1.amazonaws.com echo.rem attempt to read from HTTP_PROXY env var first
ec2-54-164-95-159.compute-1.amazonaws.com echo.On Error Resume Next
ec2-54-164-95-159.compute-1.amazonaws.com echo.
ec2-54-164-95-159.compute-1.amazonaws.com echo.If NOT (objUserVariables("HTTP_PROXY") = "") Then
ec2-54-164-95-159.compute-1.amazonaws.com echo.proxy = objUserVariables("HTTP_PROXY")
ec2-54-164-95-159.compute-1.amazonaws.com echo.
ec2-54-164-95-159.compute-1.amazonaws.com echo.rem fall back to named arg
ec2-54-164-95-159.compute-1.amazonaws.com echo.ElseIf NOT (WScript.Arguments.Named("proxy") = "") Then
ec2-54-164-95-159.compute-1.amazonaws.com echo.proxy = WScript.Arguments.Named("proxy")
ec2-54-164-95-159.compute-1.amazonaws.com echo.End If
ec2-54-164-95-159.compute-1.amazonaws.com echo.
ec2-54-164-95-159.compute-1.amazonaws.com echo.If NOT isNull(proxy) Then
ec2-54-164-95-159.compute-1.amazonaws.com echo.rem setProxy method is only available on ServerXMLHTTP 6.0+
ec2-54-164-95-159.compute-1.amazonaws.com echo.Set objXMLHTTP = CreateObject("MSXML2.ServerXMLHTTP.6.0")
ec2-54-164-95-159.compute-1.amazonaws.com echo.objXMLHTTP.setProxy 2, proxy
ec2-54-164-95-159.compute-1.amazonaws.com echo.End If
ec2-54-164-95-159.compute-1.amazonaws.com echo.
ec2-54-164-95-159.compute-1.amazonaws.com echo.On Error Goto 0
ec2-54-164-95-159.compute-1.amazonaws.com echo.
ec2-54-164-95-159.compute-1.amazonaws.com echo.objXMLHTTP.open "GET", url, false
ec2-54-164-95-159.compute-1.amazonaws.com echo.objXMLHTTP.send()
ec2-54-164-95-159.compute-1.amazonaws.com echo.If objXMLHTTP.Status = 200 Then
ec2-54-164-95-159.compute-1.amazonaws.com echo.Set objADOStream = CreateObject("ADODB.Stream")
ec2-54-164-95-159.compute-1.amazonaws.com echo.objADOStream.Open
ec2-54-164-95-159.compute-1.amazonaws.com echo.objADOStream.Type = 1
ec2-54-164-95-159.compute-1.amazonaws.com echo.objADOStream.Write objXMLHTTP.ResponseBody
ec2-54-164-95-159.compute-1.amazonaws.com echo.objADOStream.Position = 0
ec2-54-164-95-159.compute-1.amazonaws.com echo.Set objFSO = Createobject("Scripting.FileSystemObject")
ec2-54-164-95-159.compute-1.amazonaws.com echo.If objFSO.Fileexists(path) Then objFSO.DeleteFile path
ec2-54-164-95-159.compute-1.amazonaws.com echo.Set objFSO = Nothing
ec2-54-164-95-159.compute-1.amazonaws.com echo.objADOStream.SaveToFile path
ec2-54-164-95-159.compute-1.amazonaws.com echo.objADOStream.Close
ec2-54-164-95-159.compute-1.amazonaws.com echo.Set objADOStream = Nothing
ec2-54-164-95-159.compute-1.amazonaws.com echo.End if
ec2-54-164-95-159.compute-1.amazonaws.com echo.Set objXMLHTTP = Nothing
ec2-54-164-95-159.compute-1.amazonaws.com ) 1>C:\chef\wget.vbs
ec2-54-164-95-159.compute-1.amazonaws.com
ec2-54-164-95-159.compute-1.amazonaws.com C:\Users\chef>(
ec2-54-164-95-159.compute-1.amazonaws.com echo.param(
ec2-54-164-95-159.compute-1.amazonaws.com echo. [String] $remoteUrl,
ec2-54-164-95-159.compute-1.amazonaws.com echo. [String] $localPath
ec2-54-164-95-159.compute-1.amazonaws.com echo.)
ec2-54-164-95-159.compute-1.amazonaws.com echo.
ec2-54-164-95-159.compute-1.amazonaws.com echo.$webClient = new-object System.Net.WebClient;
ec2-54-164-95-159.compute-1.amazonaws.com echo.
ec2-54-164-95-159.compute-1.amazonaws.com echo.$webClient.DownloadFile($remoteUrl, $localPath);
ec2-54-164-95-159.compute-1.amazonaws.com ) 1>C:\chef\wget.ps1
ec2-54-164-95-159.compute-1.amazonaws.com
ec2-54-164-95-159.compute-1.amazonaws.com C:\Users\chef>(
ec2-54-164-95-159.compute-1.amazonaws.com
ec2-54-164-95-159.compute-1.amazonaws.com
ec2-54-164-95-159.compute-1.amazonaws.com
ec2-54-164-95-159.compute-1.amazonaws.com )
ec2-54-164-95-159.compute-1.amazonaws.com Detected Windows Version 6.3 Build 9600
ec2-54-164-95-159.compute-1.amazonaws.com
ec2-54-164-95-159.compute-1.amazonaws.com C:\Users\chef>goto Version6.3
ec2-54-164-95-159.compute-1.amazonaws.com
ec2-54-164-95-159.compute-1.amazonaws.com C:\Users\chef>goto Version6.2
ec2-54-164-95-159.compute-1.amazonaws.com
ec2-54-164-95-159.compute-1.amazonaws.com C:\Users\chef>goto architecture_select
ec2-54-164-95-159.compute-1.amazonaws.com
ec2-54-164-95-159.compute-1.amazonaws.com C:\Users\chef>goto Architecture
ec2-54-164-95-159.compute-1.amazonaws.com
ec2-54-164-95-159.compute-1.amazonaws.com C:\Users\chef>goto ArchitectureAMD64
ec2-54-164-95-159.compute-1.amazonaws.com
ec2-54-164-95-159.compute-1.amazonaws.com C:\Users\chef>goto install
ec2-54-164-95-159.compute-1.amazonaws.com Checking for existing downloaded package at "C:\Users\chef\AppData\Local\Temp\chef-client-latest.msi"
ec2-54-164-95-159.compute-1.amazonaws.com No existing downloaded packages to delete.
ec2-54-164-95-159.compute-1.amazonaws.com Attempting to download client package using cscript...
ec2-54-164-95-159.compute-1.amazonaws.com
ec2-54-164-95-159.compute-1.amazonaws.com C:\Users\chef>cscript /nologo C:\chef\wget.vbs /url:"https://www.opscode.com/chef/download?p=windows&pv=2012&m=x86_64&v=" /path:"C:\Users\chef\AppData\Local\Temp\chef-client-latest.msi"
ec2-54-164-95-159.compute-1.amazonaws.com Download via cscript succeeded.
ec2-54-164-95-159.compute-1.amazonaws.com Installing downloaded client package...
ec2-54-164-95-159.compute-1.amazonaws.com
ec2-54-164-95-159.compute-1.amazonaws.com C:\Users\chef>msiexec /qn /log "C:\Users\chef\AppData\Local\Temp\chef-client-msi8824.log" /i "C:\Users\chef\AppData\Local\Temp\chef-client-latest.msi"
ec2-54-164-95-159.compute-1.amazonaws.com Installation completed successfully
ec2-54-164-95-159.compute-1.amazonaws.com Writing validation key...
ec2-54-164-95-159.compute-1.amazonaws.com Validation key written.
ec2-54-164-95-159.compute-1.amazonaws.com
ec2-54-164-95-159.compute-1.amazonaws.com C:\Users\chef>mkdir C:\chef\ohai\hints
ec2-54-164-95-159.compute-1.amazonaws.com
ec2-54-164-95-159.compute-1.amazonaws.com C:\Users\chef>(echo.{}) 1>C:\chef\ohai\hints\ec2.json
ec2-54-164-95-159.compute-1.amazonaws.com
ec2-54-164-95-159.compute-1.amazonaws.com C:\Users\chef>(
ec2-54-164-95-159.compute-1.amazonaws.com echo.log_level :info
ec2-54-164-95-159.compute-1.amazonaws.com echo.log_location STDOUT
ec2-54-164-95-159.compute-1.amazonaws.com echo.
ec2-54-164-95-159.compute-1.amazonaws.com echo.chef_server_url "https://api.opscode.com/organizations/polycount"
ec2-54-164-95-159.compute-1.amazonaws.com echo.validation_client_name "polycount-validator"
ec2-54-164-95-159.compute-1.amazonaws.com echo.client_key "c:/chef/client.pem"
ec2-54-164-95-159.compute-1.amazonaws.com echo.validation_key "c:/chef/validation.pem"
ec2-54-164-95-159.compute-1.amazonaws.com echo.
ec2-54-164-95-159.compute-1.amazonaws.com echo.file_cache_path "c:/chef/cache"
ec2-54-164-95-159.compute-1.amazonaws.com echo.file_backup_path "c:/chef/backup"
ec2-54-164-95-159.compute-1.amazonaws.com echo.cache_options ({:path => "c:/chef/cache/checksums", :skip_expires => true})
ec2-54-164-95-159.compute-1.amazonaws.com echo.
ec2-54-164-95-159.compute-1.amazonaws.com echo.node_name "i-895146a4"
ec2-54-164-95-159.compute-1.amazonaws.com ) 1>C:\chef\client.rb
ec2-54-164-95-159.compute-1.amazonaws.com
ec2-54-164-95-159.compute-1.amazonaws.com C:\Users\chef>(echo.{"run_list":["role[sql_databass]","recipe[sql_server::server]"]} ) 1>C:\chef\first-boot.json
ec2-54-164-95-159.compute-1.amazonaws.com Starting chef to bootstrap the node...
ec2-54-164-95-159.compute-1.amazonaws.com
ec2-54-164-95-159.compute-1.amazonaws.com C:\Users\chef>SET "PATH=C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files\Amazon\cfn-bootstrap\;C:\ruby\bin;C:\opscode\chef\bin;C:\opscode\chef\embedded\bin"
ec2-54-164-95-159.compute-1.amazonaws.com
ec2-54-164-95-159.compute-1.amazonaws.com C:\Users\chef>chef-client -c c:/chef/client.rb -j c:/chef/first-boot.json -E _default
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:28:57+00:00] WARN:
ec2-54-164-95-159.compute-1.amazonaws.com * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
ec2-54-164-95-159.compute-1.amazonaws.com SSL validation of HTTPS requests is disabled. HTTPS connections are still
ec2-54-164-95-159.compute-1.amazonaws.com encrypted, but chef is not able to detect forged replies or man in the middle
ec2-54-164-95-159.compute-1.amazonaws.com attacks.
ec2-54-164-95-159.compute-1.amazonaws.com
ec2-54-164-95-159.compute-1.amazonaws.com To fix this issue add an entry like this to your configuration file:
ec2-54-164-95-159.compute-1.amazonaws.com
ec2-54-164-95-159.compute-1.amazonaws.com ```
ec2-54-164-95-159.compute-1.amazonaws.com # Verify all HTTPS connections (recommended)
ec2-54-164-95-159.compute-1.amazonaws.com ssl_verify_mode :verify_peer
ec2-54-164-95-159.compute-1.amazonaws.com
ec2-54-164-95-159.compute-1.amazonaws.com # OR, Verify only connections to chef-server
ec2-54-164-95-159.compute-1.amazonaws.com verify_api_cert true
ec2-54-164-95-159.compute-1.amazonaws.com ```
ec2-54-164-95-159.compute-1.amazonaws.com
ec2-54-164-95-159.compute-1.amazonaws.com To check your SSL configuration, or troubleshoot errors, you can use the
ec2-54-164-95-159.compute-1.amazonaws.com `knife ssl check` command like so:
ec2-54-164-95-159.compute-1.amazonaws.com
ec2-54-164-95-159.compute-1.amazonaws.com ```
ec2-54-164-95-159.compute-1.amazonaws.com knife ssl check -c c:/chef/client.rb
ec2-54-164-95-159.compute-1.amazonaws.com ```
ec2-54-164-95-159.compute-1.amazonaws.com
ec2-54-164-95-159.compute-1.amazonaws.com * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
ec2-54-164-95-159.compute-1.amazonaws.com
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:04+00:00] INFO: *** Chef 11.14.6 ***
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:04+00:00] INFO: Chef-client pid: 1280
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:45+00:00] INFO: Client key c:/chef/client.pem is not present - registering
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:46+00:00] INFO: HTTP Request Returned 404 Object Not Found: error
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:47+00:00] INFO: Setting the run_list to ["role[sql_databass]", "recipe[sql_server::server]"] from CLI options
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:47+00:00] INFO: Run List is [role[sql_databass], recipe[sql_server::server]]
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:47+00:00] INFO: Run List expands to [sql_server::server]
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:47+00:00] INFO: Starting Chef Run for i-895146a4
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:47+00:00] INFO: Running start handlers
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:47+00:00] INFO: Start handlers complete.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:48+00:00] INFO: Loading cookbooks [sql_server@2.2.0, openssl@2.0.0, chef-sugar@2.2.0, windows@1.34.2, chef_handler@1.1.6]
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:48+00:00] INFO: Storing updated cookbooks/sql_server/attributes/server.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:48+00:00] INFO: Storing updated cookbooks/sql_server/recipes/default.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:48+00:00] INFO: Storing updated cookbooks/sql_server/attributes/client.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:48+00:00] INFO: Storing updated cookbooks/sql_server/metadata.json in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:48+00:00] INFO: Storing updated cookbooks/sql_server/CHANGELOG.md in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:48+00:00] INFO: Storing updated cookbooks/sql_server/libraries/helper.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:48+00:00] INFO: Storing updated cookbooks/sql_server/recipes/server.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:48+00:00] INFO: Storing updated cookbooks/sql_server/README.md in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:48+00:00] INFO: Storing updated cookbooks/sql_server/attributes/default.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:48+00:00] INFO: Storing updated cookbooks/sql_server/recipes/client.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:49+00:00] INFO: Storing updated cookbooks/openssl/recipes/default.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:49+00:00] INFO: Storing updated cookbooks/openssl/providers/x509.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:49+00:00] INFO: Storing updated cookbooks/openssl/recipes/upgrade.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:49+00:00] INFO: Storing updated cookbooks/openssl/resources/x509.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:49+00:00] INFO: Storing updated cookbooks/openssl/README.md in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:49+00:00] INFO: Storing updated cookbooks/openssl/CHANGELOG.md in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:49+00:00] INFO: Storing updated cookbooks/openssl/metadata.json in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:49+00:00] INFO: Storing updated cookbooks/chef-sugar/recipes/default.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:49+00:00] INFO: Storing updated cookbooks/chef-sugar/metadata.json in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:49+00:00] INFO: Storing updated cookbooks/chef-sugar/CHANGELOG.md in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:49+00:00] INFO: Storing updated cookbooks/chef-sugar/README.md in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:49+00:00] INFO: Storing updated cookbooks/windows/resources/auto_run.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:49+00:00] INFO: Storing updated cookbooks/windows/resources/pagefile.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:49+00:00] INFO: Storing updated cookbooks/openssl/libraries/secure_password.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:49+00:00] INFO: Storing updated cookbooks/openssl/attributes/default.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:49+00:00] INFO: Storing updated cookbooks/windows/resources/path.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:49+00:00] INFO: Storing updated cookbooks/windows/resources/package.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:49+00:00] INFO: Storing updated cookbooks/windows/resources/feature.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:49+00:00] INFO: Storing updated cookbooks/windows/resources/batch.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:49+00:00] INFO: Storing updated cookbooks/windows/resources/reboot.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:49+00:00] INFO: Storing updated cookbooks/windows/resources/printer_port.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:49+00:00] INFO: Storing updated cookbooks/windows/resources/printer.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:50+00:00] INFO: Storing updated cookbooks/windows/resources/shortcut.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:50+00:00] INFO: Storing updated cookbooks/windows/resources/registry.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:50+00:00] INFO: Storing updated cookbooks/windows/resources/task.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:50+00:00] INFO: Storing updated cookbooks/windows/providers/feature_dism.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:50+00:00] INFO: Storing updated cookbooks/windows/resources/zipfile.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:50+00:00] INFO: Storing updated cookbooks/windows/providers/auto_run.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:50+00:00] INFO: Storing updated cookbooks/windows/providers/batch.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:50+00:00] INFO: Storing updated cookbooks/windows/providers/path.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:50+00:00] INFO: Storing updated cookbooks/windows/providers/feature_servermanagercmd.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:50+00:00] INFO: Storing updated cookbooks/windows/providers/printer.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:50+00:00] INFO: Storing updated cookbooks/windows/providers/feature_powershell.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:50+00:00] INFO: Storing updated cookbooks/windows/providers/package.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:50+00:00] INFO: Storing updated cookbooks/windows/providers/pagefile.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:50+00:00] INFO: Storing updated cookbooks/windows/providers/registry.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:50+00:00] INFO: Storing updated cookbooks/windows/providers/reboot.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:50+00:00] INFO: Storing updated cookbooks/windows/providers/printer_port.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:50+00:00] INFO: Storing updated cookbooks/windows/providers/shortcut.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:50+00:00] INFO: Storing updated cookbooks/windows/providers/task.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:50+00:00] INFO: Storing updated cookbooks/windows/libraries/feature_base.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:50+00:00] INFO: Storing updated cookbooks/windows/recipes/default.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:50+00:00] INFO: Storing updated cookbooks/windows/providers/zipfile.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:50+00:00] INFO: Storing updated cookbooks/windows/libraries/matchers.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:51+00:00] INFO: Storing updated cookbooks/windows/libraries/powershell_out.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:51+00:00] INFO: Storing updated cookbooks/windows/libraries/powershell_helper.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:51+00:00] INFO: Storing updated cookbooks/windows/recipes/reboot_handler.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:51+00:00] INFO: Storing updated cookbooks/windows/libraries/registry_helper.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:51+00:00] INFO: Storing updated cookbooks/windows/libraries/wmi_helper.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:51+00:00] INFO: Storing updated cookbooks/windows/libraries/windows_privileged.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:51+00:00] INFO: Storing updated cookbooks/windows/libraries/windows_helper.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:51+00:00] INFO: Storing updated cookbooks/windows/libraries/windows_architecture_helper.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:51+00:00] INFO: Storing updated cookbooks/windows/libraries/version.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:51+00:00] INFO: Storing updated cookbooks/windows/CHANGELOG.md in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:51+00:00] INFO: Storing updated cookbooks/windows/attributes/default.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:51+00:00] INFO: Storing updated cookbooks/chef_handler/recipes/default.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:51+00:00] INFO: Storing updated cookbooks/chef_handler/providers/default.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:51+00:00] INFO: Storing updated cookbooks/chef_handler/resources/default.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:51+00:00] INFO: Storing updated cookbooks/windows/TODO.md in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:51+00:00] INFO: Storing updated cookbooks/windows/README.md in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:51+00:00] INFO: Storing updated cookbooks/windows/metadata.json in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:51+00:00] INFO: Storing updated cookbooks/windows/LICENSE in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:51+00:00] INFO: Storing updated cookbooks/windows/CONTRIBUTING in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:51+00:00] INFO: Storing updated cookbooks/chef_handler/libraries/matchers.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:51+00:00] INFO: Storing updated cookbooks/chef_handler/recipes/json_file.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:51+00:00] INFO: Storing updated cookbooks/chef_handler/attributes/default.rb in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:51+00:00] INFO: Storing updated cookbooks/chef_handler/CHANGELOG.md in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:52+00:00] INFO: Storing updated cookbooks/chef_handler/README.md in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:52+00:00] INFO: Storing updated cookbooks/chef_handler/metadata.json in the cache.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:52+00:00] INFO: WindowsPackage lightweight resource already initialized -- overriding!
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:54+00:00] INFO: Processing template[c:\chef\cache\ConfigurationFile.ini] action create (sql_server::server line 38)
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:54+00:00] INFO: template[c:\chef\cache\ConfigurationFile.ini] created file c:\chef\cache\ConfigurationFile.ini
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:54+00:00] INFO: template[c:\chef\cache\ConfigurationFile.ini] updated file contents c:\chef\cache\ConfigurationFile.ini
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:54+00:00] INFO: Processing windows_package[Microsoft SQL Server 2012 (64-bit)] action install (sql_server::server line 42)
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:54+00:00] INFO: Installing windows_package[Microsoft SQL Server 2012 (64-bit)] version latest
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:54+00:00] INFO: Processing remote_file[c:/chef/cache/SQLEXPR_x64_ENU.exe] action create (dynamically defined)
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:29:54+00:00] INFO: remote_file[c:/chef/cache/SQLEXPR_x64_ENU.exe] created file c:/chef/cache/SQLEXPR_x64_ENU.exe
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:30:14+00:00] INFO: remote_file[c:/chef/cache/SQLEXPR_x64_ENU.exe] updated file contents c:/chef/cache/SQLEXPR_x64_ENU.exe
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:30:16+00:00] INFO: Starting installation...this could take awhile.
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:31:09+00:00] INFO: Processing service[MSSQL$SQLEXPRESS] action nothing (sql_server::server line 51)
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:31:09+00:00] INFO: Processing registry_key[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL11.SQLEXPRESS\MSSQLServer\SuperSocketNetLib\Tcp\IPAll] action create (sql_server::server line 56)
ec2-54-164-95-159.compute-1.amazonaws.com
ec2-54-164-95-159.compute-1.amazonaws.com ================================================================================
ec2-54-164-95-159.compute-1.amazonaws.com Error executing action `create` on resource 'registry_key[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL11.SQLEXPRESS\MSSQLServer\SuperSocketNetLib\Tcp\IPAll]'
ec2-54-164-95-159.compute-1.amazonaws.com ================================================================================
ec2-54-164-95-159.compute-1.amazonaws.com
ec2-54-164-95-159.compute-1.amazonaws.com Chef::Exceptions::Win32RegNoRecursive
ec2-54-164-95-159.compute-1.amazonaws.com -------------------------------------
ec2-54-164-95-159.compute-1.amazonaws.com Intermediate keys missing but recursive is set to false
ec2-54-164-95-159.compute-1.amazonaws.com
ec2-54-164-95-159.compute-1.amazonaws.com Resource Declaration:
ec2-54-164-95-159.compute-1.amazonaws.com ---------------------
ec2-54-164-95-159.compute-1.amazonaws.com # In c:/chef/cache/cookbooks/sql_server/recipes/server.rb
ec2-54-164-95-159.compute-1.amazonaws.com
ec2-54-164-95-159.compute-1.amazonaws.com 56: registry_key static_tcp_reg_key do
ec2-54-164-95-159.compute-1.amazonaws.com 57: values [{ :name => 'TcpPort', :type => :string, :data => node['sql_server']['port'].to_s },
ec2-54-164-95-159.compute-1.amazonaws.com 58: { :name => 'TcpDynamicPorts', :type => :string, :data => '' }]
ec2-54-164-95-159.compute-1.amazonaws.com 59: notifies :restart, "service[#{service_name}]", :immediately
ec2-54-164-95-159.compute-1.amazonaws.com 60: end
ec2-54-164-95-159.compute-1.amazonaws.com 61:
ec2-54-164-95-159.compute-1.amazonaws.com
ec2-54-164-95-159.compute-1.amazonaws.com Compiled Resource:
ec2-54-164-95-159.compute-1.amazonaws.com ------------------
ec2-54-164-95-159.compute-1.amazonaws.com # Declared in c:/chef/cache/cookbooks/sql_server/recipes/server.rb:56:in `from_file'
ec2-54-164-95-159.compute-1.amazonaws.com
ec2-54-164-95-159.compute-1.amazonaws.com registry_key("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL11.SQLEXPRESS\MSSQLServer\SuperSocketNetLib\Tcp\IPAll") do
ec2-54-164-95-159.compute-1.amazonaws.com action :create
ec2-54-164-95-159.compute-1.amazonaws.com retries 0
ec2-54-164-95-159.compute-1.amazonaws.com retry_delay 2
ec2-54-164-95-159.compute-1.amazonaws.com guard_interpreter :default
ec2-54-164-95-159.compute-1.amazonaws.com architecture :machine
ec2-54-164-95-159.compute-1.amazonaws.com key "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Microsoft SQL Server\\MSSQL11.SQLEXPRESS\\MSSQLServer\\SuperSocketNetLib\\Tcp\\IPAll"
ec2-54-164-95-159.compute-1.amazonaws.com unscrubbed_values [{:name=>"TcpPort", :type=>:string, :data=>"1433"}, {:name=>"TcpDynamicPorts", :type=>:string, :data=>""}]
ec2-54-164-95-159.compute-1.amazonaws.com values [{:name=>"TcpPort", :type=>:string, :data=>"1433"}, {:name=>"TcpDynamicPorts", :type=>:string, :data=>""}]
ec2-54-164-95-159.compute-1.amazonaws.com cookbook_name "sql_server"
ec2-54-164-95-159.compute-1.amazonaws.com recipe_name "server"
ec2-54-164-95-159.compute-1.amazonaws.com end
ec2-54-164-95-159.compute-1.amazonaws.com
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:31:09+00:00] INFO: Running queued delayed notifications before re-raising exception
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:31:09+00:00] ERROR: Running exception handlers
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:31:09+00:00] ERROR: Exception handlers complete
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:31:09+00:00] FATAL: Stacktrace dumped to c:/chef/cache/chef-stacktrace.out
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:31:09+00:00] INFO: Sending resource update report (run-id: 314b5ebe-2a8f-4e02-96f7-e8dea5f9a8b1)
ec2-54-164-95-159.compute-1.amazonaws.com [2014-08-21T21:31:11+00:00] FATAL: Chef::Exceptions::Win32RegNoRecursive: registry_key[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\MSSQL11.SQLEXPRESS\MSSQLServer\SuperSocketNetLib\Tcp\IPAll] (sql_server::server line 56) had an error: Chef::Exceptions::Win32RegNoRecursive: Intermediate keys missing but recursive is set to false
Instance ID: i-895146a4
Flavor: m1.medium
Image: ami-9ade1df2
Region: us-east-1
Availability Zone: us-east-1c
Security Groups: default
Security Group Ids: default
Tags: Name: i-895146a4
SSH Key: aws-east
Root Device Type: ebs
Root Volume ID: vol-d337c29b
Root Device Name: /dev/sda1
Root Device Delete on Terminate: true
Public DNS Name: ec2-54-164-95-159.compute-1.amazonaws.com
Public IP Address: 54.164.95.159
Private DNS Name: ip-172-31-31-169.ec2.internal
Private IP Address: 172.31.31.169
Environment: _default
Run List: role[sql_databass], recipe[sql_server::server]
; SQLSERVER2008 Configuration File
; Generated by Opscode Chef
[OPTIONS]
; Auto accept the license terms
IACCEPTSQLSERVERLICENSETERMS="True"
; The default is Windows Authentication. Use "SQL" for Mixed Mode Authentication.
SECURITYMODE="SQL"
SAPWD="ebbZW4yXDP0e184RVGKl-aA12"
; Specify the Instance ID for the SQL Server features you have specified. SQL Server directory structure, registry structure, and service names will reflect the instance ID of the SQL Server instance.
INSTANCEID="SQLEXPRESS"
; Specifies a Setup work flow, like INSTALL, UNINSTALL, or UPGRADE. This is a required parameter.
ACTION="Install"
; Specifies features to install, uninstall, or upgrade. The list of top-level features include SQL, AS, RS, IS, and Tools. The SQL feature will install the database engine, replication, and full-text. The Tools feature will install Management Tools, Books online, Business Intelligence Development Studio, and other shared components.
FEATURES=SQLENGINE,REPLICATION,SNAC_SDK
; Displays the command line parameters usage
HELP="False"
; Specifies that the detailed Setup log should be piped to the console.
INDICATEPROGRESS="False"
; Setup will not display any user interface.
QUIET="False"
; Setup will display progress only without any user interaction.
QUIETSIMPLE="False"
; Specifies that Setup should install into WOW64. This command line argument is not supported on an IA64 or a 32-bit system.
X86="False"
; Detailed help for command line argument ROLE has not been defined yet.
ROLE="AllFeatures_WithDefaults"
; Detailed help for command line argument ENU has not been defined yet.
ENU="True"
; Parameter that controls the user interface behavior. Valid values are Normal for the full UI, and AutoAdvance for a simplied UI.
; UIMode setting cannot be used in conjunction with /Q or /QS
; UIMODE="Normal"
; Specify if errors can be reported to Microsoft to improve future SQL Server releases. Specify 1 or True to enable and 0 or False to disable this feature.
ERRORREPORTING="False"
; Specify the root installation directory for native shared components.
INSTALLSHAREDDIR="C:\Program Files\Microsoft SQL Server"
; Specify the root installation directory for the WOW64 shared components.
INSTALLSHAREDWOWDIR="C:\Program Files (x86)\Microsoft SQL Server"
; Specify the installation directory.
INSTANCEDIR="C:\Program Files\Microsoft SQL Server"
; Specify that SQL Server feature usage data can be collected and sent to Microsoft. Specify 1 or True to enable and 0 or False to disable this feature.
SQMREPORTING="False"
; Specify a default or named instance. MSSQLSERVER is the default instance for non-Express editions and SQLExpress for Express editions. This parameter is required when installing the SQL Server Database Engine (SQL), Analysis Services (AS), or Reporting Services (RS).
INSTANCENAME="SQLEXPRESS"
; Agent account name
AGTSVCACCOUNT="NT AUTHORITY\NETWORK SERVICE"
; Auto-start service after installation.
AGTSVCSTARTUPTYPE="Disabled"
; Startup type for Integration Services.
ISSVCSTARTUPTYPE="Automatic"
; Account for Integration Services: Domain\User or system account.
ISSVCACCOUNT="NT AUTHORITY\NetworkService"
; Controls the service startup type setting after the service has been created.
ASSVCSTARTUPTYPE="Automatic"
; The collation to be used by Analysis Services.
ASCOLLATION="Latin1_General_CI_AS"
; The location for the Analysis Services data files.
ASDATADIR="Data"
; The location for the Analysis Services log files.
ASLOGDIR="Log"
; The location for the Analysis Services backup files.
ASBACKUPDIR="Backup"
; The location for the Analysis Services temporary files.
ASTEMPDIR="Temp"
; The location for the Analysis Services configuration files.
ASCONFIGDIR="Config"
; Specifies whether or not the MSOLAP provider is allowed to run in process.
ASPROVIDERMSOLAP="1"
; A port number used to connect to the SharePoint Central Administration web application.
; The setting 'FARMADMINIPORT' specified is not recognized.
; FARMADMINIPORT="0"
; Startup type for the SQL Server service.
SQLSVCSTARTUPTYPE="Automatic"
; Level to enable FILESTREAM feature at (0, 1, 2 or 3).
FILESTREAMLEVEL="0"
; Set to "1" to enable RANU for SQL Server Express.
ENABLERANU="True"
; Specifies a Windows collation or an SQL collation to use for the Database Engine.
SQLCOLLATION="SQL_Latin1_General_CP1_CI_AS"
; Account for SQL Server service: Domain\User or system account.
SQLSVCACCOUNT="NT AUTHORITY\NETWORK SERVICE"
; Windows account(s) to provision as SQL Server system administrators.
;SQLSYSADMINACCOUNTS="IP-0A7A5B97\Administrator"
SQLSYSADMINACCOUNTS="Administrator"
; Provision current user as a Database Engine system administrator for SQL Server 2008 R2 Express.
ADDCURRENTUSERASSQLADMIN="True"
; Specify 0 to disable or 1 to enable the TCP/IP protocol.
TCPENABLED="1"
; Specify 0 to disable or 1 to enable the Named Pipes protocol.
NPENABLED="0"
; Startup type for Browser Service.
BROWSERSVCSTARTUPTYPE="Disabled"
; Specifies which account the report server NT service should execute under. When omitted or when the value is empty string, the default built-in account for the current operating system.
; The username part of RSSVCACCOUNT is a maximum of 20 characters long and
; The domain part of RSSVCACCOUNT is a maximum of 254 characters long.
RSSVCACCOUNT="NT AUTHORITY\NETWORK SERVICE"
; Specifies how the startup mode of the report server NT service. When
; Manual - Service startup is manual mode (default).
; Automatic - Service startup is automatic mode.
; Disabled - Service is disabled
RSSVCSTARTUPTYPE="Automatic"
; Specifies which mode report server is installed in.
; Default value: "FilesOnly"
RSINSTALLMODE="FilesOnlyMode"
08/21/2014 21:37:26.724 ======================================================================
08/21/2014 21:37:26.740 Setup launched
08/21/2014 21:37:26.740 Attempting to determine media source
08/21/2014 21:37:26.740 Media source value not specified on command line argument.
08/21/2014 21:37:26.756 Setup is launched from media directly so default the value to the current folder.
08/21/2014 21:37:26.756 Media source: z:\4d38b5017bf687968a61be850b8d\
08/21/2014 21:37:26.756 Attempt to determine media layout based on file 'z:\4d38b5017bf687968a61be850b8d\mediainfo.xml'.
08/21/2014 21:37:26.771 Media layout is detected as: Core
08/21/2014 21:37:26.834 Not a slip stream media, so continuing to run setup.exe from media.
08/21/2014 21:37:26.943 /? or /HELP or /ACTION=HELP specified: false
08/21/2014 21:37:26.959 Help display: false
08/21/2014 21:37:26.959 Server-Gui-Mgmt: 1, Server-Gui-Shell: 1
08/21/2014 21:37:26.959 .Net version 4.0 is installed
08/21/2014 21:37:26.974 Local setup.exe not found, so continuing to run setup.exe from media.
08/21/2014 21:37:26.974 Attempt to initialize SQL setup code group
08/21/2014 21:37:26.974 Attempting to determine security.config file path
08/21/2014 21:37:26.974 Checking to see if policy file exists C:\Windows\Microsoft.NET\Framework64\v4.0.30319\\CONFIG\security.config
08/21/2014 21:37:26.974 .Net security policy file does exist
08/21/2014 21:37:26.974 Attempting to load .Net security policy file
08/21/2014 21:37:26.990 Processing entry ("MSVCM80", "Native")
08/21/2014 21:37:26.990 Attempting to create .Net security code group node: MSVCM80
08/21/2014 21:37:26.990 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.SETUP", "Native")
08/21/2014 21:37:26.990 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CHAINER.SETUP
08/21/2014 21:37:27.006 Processing entry ("MICROSOFT.SQL.CHAINER.PACKAGE", "Native")
08/21/2014 21:37:27.006 Attempting to create .Net security code group node: MICROSOFT.SQL.CHAINER.PACKAGE
08/21/2014 21:37:27.006 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.INFRASTRUCTURE", "Native")
08/21/2014 21:37:27.006 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CHAINER.INFRASTRUCTURE
08/21/2014 21:37:27.006 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.BOOTSTRAPEXTENSION", "Native")
08/21/2014 21:37:27.021 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.BOOTSTRAPEXTENSION
08/21/2014 21:37:27.021 Processing entry ("MICROSOFT.SQLSERVER.SETUP.CHAINER.WORKFLOW", "Native")
08/21/2014 21:37:27.021 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.SETUP.CHAINER.WORKFLOW
08/21/2014 21:37:27.021 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLCONFIGBASE", "Native")
08/21/2014 21:37:27.021 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SQLCONFIGBASE
08/21/2014 21:37:27.021 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SFC", "Native")
08/21/2014 21:37:27.037 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SFC
08/21/2014 21:37:27.037 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SETUPEXTENSION", "Native")
08/21/2014 21:37:27.037 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SETUPEXTENSION
08/21/2014 21:37:27.037 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MSIEXTENSION", "Native")
08/21/2014 21:37:27.037 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.MSIEXTENSION
08/21/2014 21:37:27.037 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.EXTENSIONCOMMON", "Native")
08/21/2014 21:37:27.037 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CHAINER.EXTENSIONCOMMON
08/21/2014 21:37:27.053 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCO", "Native")
08/21/2014 21:37:27.053 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SCO
08/21/2014 21:37:27.053 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCOEXTENSION", "Native")
08/21/2014 21:37:27.053 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SCOEXTENSION
08/21/2014 21:37:27.053 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SMARTSETUPEXTENSION", "Native")
08/21/2014 21:37:27.053 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SMARTSETUPEXTENSION
08/21/2014 21:37:27.068 Processing entry ("MICROSOFT.SQLSERVER.INTEROP.WUAPILIB", "Native")
08/21/2014 21:37:27.068 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.INTEROP.WUAPILIB
08/21/2014 21:37:27.068 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONFIGEXTENSION", "Native")
08/21/2014 21:37:27.068 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.CONFIGEXTENSION
08/21/2014 21:37:27.068 Processing entry ("MICROSOFT.SQLSERVER.DISCOVERY", "Native")
08/21/2014 21:37:27.099 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.DISCOVERY
08/21/2014 21:37:27.099 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UIEXTENSION", "Native")
08/21/2014 21:37:27.099 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.UIEXTENSION
08/21/2014 21:37:27.115 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SSTRING", "Native")
08/21/2014 21:37:27.115 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SSTRING
08/21/2014 21:37:27.115 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.WIZARDFRAMEWORK", "Native")
08/21/2014 21:37:27.146 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.WIZARDFRAMEWORK
08/21/2014 21:37:27.146 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARDFRAMEWORK", "Native")
08/21/2014 21:37:27.146 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARDFRAMEWORK
08/21/2014 21:37:27.146 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARD", "Native")
08/21/2014 21:37:27.162 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARD
08/21/2014 21:37:27.162 Processing entry ("MICROSOFT.SQLSERVER.MANAGEMENT.CONTROLS", "Native")
08/21/2014 21:37:27.162 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.MANAGEMENT.CONTROLS
08/21/2014 21:37:27.162 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION", "Native")
08/21/2014 21:37:27.162 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION
08/21/2014 21:37:27.178 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONNECTIONINFO", "Native")
08/21/2014 21:37:27.178 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.CONNECTIONINFO
08/21/2014 21:37:27.178 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RULESENGINEEXTENSION", "Native")
08/21/2014 21:37:27.178 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.RULESENGINEEXTENSION
08/21/2014 21:37:27.193 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CLUSTER", "Native")
08/21/2014 21:37:27.193 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.CLUSTER
08/21/2014 21:37:27.193 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.WMIINTEROP", "Native")
08/21/2014 21:37:27.193 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.WMIINTEROP
08/21/2014 21:37:27.209 Processing entry ("MICROSOFT.SQL.CHAINER.PACKAGEDATA", "Native")
08/21/2014 21:37:27.209 Attempting to create .Net security code group node: MICROSOFT.SQL.CHAINER.PACKAGEDATA
08/21/2014 21:37:27.209 Processing entry ("MICROSOFT.SQL.CHAINER.PRODUCT", "Native")
08/21/2014 21:37:27.209 Attempting to create .Net security code group node: MICROSOFT.SQL.CHAINER.PRODUCT
08/21/2014 21:37:27.209 Processing entry ("MICROSOFT.NETENTERPRISESERVERS.EXCEPTIONMESSAGEBOX", "Native")
08/21/2014 21:37:27.209 Attempting to create .Net security code group node: MICROSOFT.NETENTERPRISESERVERS.EXCEPTIONMESSAGEBOX
08/21/2014 21:37:27.224 Processing entry ("LANDINGPAGE", "Native")
08/21/2014 21:37:27.224 Attempting to create .Net security code group node: LANDINGPAGE
08/21/2014 21:37:27.224 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SLPEXTENSION", "Native")
08/21/2014 21:37:27.224 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SLPEXTENSION
08/21/2014 21:37:27.224 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.AGENTEXTENSION", "Native")
08/21/2014 21:37:27.224 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.AGENTEXTENSION
08/21/2014 21:37:27.240 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.POWERSHELLEXTENSION", "Native")
08/21/2014 21:37:27.240 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.POWERSHELLEXTENSION
08/21/2014 21:37:27.240 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SSISEXTENSION", "Native")
08/21/2014 21:37:27.240 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SSISEXTENSION
08/21/2014 21:37:27.240 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.ASEXTENSION", "Native")
08/21/2014 21:37:27.256 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.ASEXTENSION
08/21/2014 21:37:27.256 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.REPL_CONFIGEXTENSION", "Native")
08/21/2014 21:37:27.256 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.REPL_CONFIGEXTENSION
08/21/2014 21:37:27.256 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MANAGEMENTTOOLSEXTENSION", "Native")
08/21/2014 21:37:27.256 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.MANAGEMENTTOOLSEXTENSION
08/21/2014 21:37:27.271 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLSERVER_CONFIGEXTENSION", "Native")
08/21/2014 21:37:27.271 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SQLSERVER_CONFIGEXTENSION
08/21/2014 21:37:27.271 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SNISERVERCONFIGEXT", "Native")
08/21/2014 21:37:27.271 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SNISERVERCONFIGEXT
08/21/2014 21:37:27.287 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLBROWSEREXTENSION", "Native")
08/21/2014 21:37:27.287 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SQLBROWSEREXTENSION
08/21/2014 21:37:27.287 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RSEXTENSION", "Native")
08/21/2014 21:37:27.287 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.RSEXTENSION
08/21/2014 21:37:27.318 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.DISTRIBUTEDREPLAYEXTENSION", "Native")
08/21/2014 21:37:27.334 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.DISTRIBUTEDREPLAYEXTENSION
08/21/2014 21:37:27.334 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RSSHPEXTENSION", "Native")
08/21/2014 21:37:27.334 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.RSSHPEXTENSION
08/21/2014 21:37:27.349 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.DMF", "Native")
08/21/2014 21:37:27.396 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.DMF
08/21/2014 21:37:27.443 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SMO", "Native")
08/21/2014 21:37:27.474 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SMO
08/21/2014 21:37:27.474 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLENUM", "Native")
08/21/2014 21:37:27.474 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SQLENUM
08/21/2014 21:37:27.490 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.FULLTEXT_CONFIGEXTENSION", "Native")
08/21/2014 21:37:27.490 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.FULLTEXT_CONFIGEXTENSION
08/21/2014 21:37:27.490 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.WORKFLOWDATA", "Native")
08/21/2014 21:37:27.490 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CHAINER.WORKFLOWDATA
08/21/2014 21:37:27.506 Processing entry ("SHELLOBJECTS", "Native")
08/21/2014 21:37:27.506 Attempting to create .Net security code group node: SHELLOBJECTS
08/21/2014 21:37:27.521 Processing entry ("MICROSOFT.SQLSERVER.DEPLOYMENT", "Native")
08/21/2014 21:37:27.537 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.DEPLOYMENT
08/21/2014 21:37:27.537 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UTILITYEXTENSION", "Native")
08/21/2014 21:37:27.537 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.UTILITYEXTENSION
08/21/2014 21:37:27.537 Processing entry ("MICROSOFT.ANALYSISSERVICES.SHAREPOINT.INTEGRATION", "Native")
08/21/2014 21:37:27.537 Attempting to create .Net security code group node: MICROSOFT.ANALYSISSERVICES.SHAREPOINT.INTEGRATION
08/21/2014 21:37:27.537 Processing entry ("MICROSOFT.SQLSERVER.SQM", "Native")
08/21/2014 21:37:27.553 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.SQM
08/21/2014 21:37:27.553 Processing entry ("MICROSOFT.DATAWAREHOUSE.SQM", "X86")
08/21/2014 21:37:27.553 Processing entry ("FIXSQLREGISTRYKEY", "X86")
08/21/2014 21:37:27.553 Processing entry ("FIXSQLREGISTRYKEY", "X64")
08/21/2014 21:37:27.553 Attempting to create .Net security code group node: FIXSQLREGISTRYKEY
08/21/2014 21:37:27.568 Processing entry ("MICROSOFT.SQLSERVER.DIAGNOSTICS.CONFIGURATION.STRACE", "Native")
08/21/2014 21:37:27.568 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.DIAGNOSTICS.CONFIGURATION.STRACE
08/21/2014 21:37:27.568 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.PACKAGECHAINEREXTENSION", "Native")
08/21/2014 21:37:27.568 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.PACKAGECHAINEREXTENSION
08/21/2014 21:37:27.568 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.SETUP.RESOURCES", "Native")
08/21/2014 21:37:27.584 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CHAINER.SETUP.RESOURCES
08/21/2014 21:37:27.584 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.INFRASTRUCTURE.RESOURCES", "Native")
08/21/2014 21:37:27.584 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CHAINER.INFRASTRUCTURE.RESOURCES
08/21/2014 21:37:27.584 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.BOOTSTRAPEXTENSION.RESOURCES", "Native")
08/21/2014 21:37:27.584 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.BOOTSTRAPEXTENSION.RESOURCES
08/21/2014 21:37:27.584 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLCONFIGBASE.RESOURCES", "Native")
08/21/2014 21:37:27.599 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SQLCONFIGBASE.RESOURCES
08/21/2014 21:37:27.599 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SFC.RESOURCES", "Native")
08/21/2014 21:37:27.599 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SFC.RESOURCES
08/21/2014 21:37:27.599 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SETUPEXTENSION.RESOURCES", "Native")
08/21/2014 21:37:27.599 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SETUPEXTENSION.RESOURCES
08/21/2014 21:37:27.615 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MSIEXTENSION.RESOURCES", "Native")
08/21/2014 21:37:27.615 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.MSIEXTENSION.RESOURCES
08/21/2014 21:37:27.615 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.PACKAGECHAINEREXTENSION.RESOURCES", "Native")
08/21/2014 21:37:27.615 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.PACKAGECHAINEREXTENSION.RESOURCES
08/21/2014 21:37:27.615 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.EXTENSIONCOMMON.RESOURCES", "Native")
08/21/2014 21:37:27.631 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CHAINER.EXTENSIONCOMMON.RESOURCES
08/21/2014 21:37:27.631 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCO.RESOURCES", "Native")
08/21/2014 21:37:27.631 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SCO.RESOURCES
08/21/2014 21:37:27.631 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCOEXTENSION.RESOURCES", "Native")
08/21/2014 21:37:27.646 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SCOEXTENSION.RESOURCES
08/21/2014 21:37:27.646 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SMARTSETUPEXTENSION.RESOURCES", "Native")
08/21/2014 21:37:27.646 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.SMARTSETUPEXTENSION.RESOURCES
08/21/2014 21:37:27.646 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONFIGEXTENSION.RESOURCES", "Native")
08/21/2014 21:37:27.662 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.CONFIGEXTENSION.RESOURCES
08/21/2014 21:37:27.678 Processing entry ("MICROSOFT.SQLSERVER.DISCOVERY.RESOURCES", "Native")
08/21/2014 21:37:27.709 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.DISCOVERY.RESOURCES
08/21/2014 21:37:27.709 Processing entry ("MICROSOFT.SQLSERVER.CONNECTIONINFO.RESOURCES", "Native")
08/21/2014 21:37:27.709 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONNECTIONINFO.RESOURCES
08/21/2014 21:37:27.724 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UIEXTENSION.RESOURCES", "Native")
08/21/2014 21:37:27.724 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.UIEXTENSION.RESOURCES
08/21/2014 21:37:27.724 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.WIZARDFRAMEWORK.RESOURCES", "Native")
08/21/2014 21:37:27.724 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.WIZARDFRAMEWORK.RESOURCES
08/21/2014 21:37:27.724 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARDFRAMEWORK.RESOURCES", "Native")
08/21/2014 21:37:27.740 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARDFRAMEWORK.RESOURCES
08/21/2014 21:37:27.756 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARD.RESOURCES", "Native")
08/21/2014 21:37:27.756 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARD.RESOURCES
08/21/2014 21:37:27.771 Processing entry ("MICROSOFT.SQLSERVER.MANAGEMENT.CONTROLS.RESOURCES", "Native")
08/21/2014 21:37:27.771 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.MANAGEMENT.CONTROLS.RESOURCES
08/21/2014 21:37:27.771 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RESOURCES", "Native")
08/21/2014 21:37:27.771 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.RESOURCES
08/21/2014 21:37:27.771 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONNECTIONINFO.RESOURCES", "Native")
08/21/2014 21:37:27.771 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.CONNECTIONINFO.RESOURCES
08/21/2014 21:37:27.787 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RULESENGINEEXTENSION.RESOURCES", "Native")
08/21/2014 21:37:27.787 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.CONFIGURATION.RULESENGINEEXTENSION.RESOURCES
08/21/2014 21:37:27.803 Processing entry ("LANDINGPAGE.RESOURCES", "Native")
08/21/2014 21:37:27.803 Attempting to create .Net security code group node: LANDINGPAGE.RESOURCES
08/21/2014 21:37:27.803 Processing entry ("MICROSOFT.SQLSERVER.DEPLOYMENT.RESOURCES", "Native")
08/21/2014 21:37:27.803 Attempting to create .Net security code group node: MICROSOFT.SQLSERVER.DEPLOYMENT.RESOURCES
08/21/2014 21:37:27.818 Processing entry ("MICROSOFT.NETENTERPRISESERVERS.EXCEPTIONMESSAGEBOX.RESOURCES", "Native")
08/21/2014 21:37:27.818 Attempting to create .Net security code group node: MICROSOFT.NETENTERPRISESERVERS.EXCEPTIONMESSAGEBOX.RESOURCES
08/21/2014 21:37:27.834 Saved .Net security policy file
08/21/2014 21:37:27.834 Attempting to determine security.config file path
08/21/2014 21:37:27.834 Checking to see if policy file exists C:\Windows\Microsoft.NET\Framework\v4.0.30319\\CONFIG\security.config
08/21/2014 21:37:27.849 .Net security policy file does exist
08/21/2014 21:37:27.849 Attempting to load .Net security policy file
08/21/2014 21:37:27.849 Processing entry ("MSVCM80", "Native")
08/21/2014 21:37:27.849 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.SETUP", "Native")
08/21/2014 21:37:27.849 Processing entry ("MICROSOFT.SQL.CHAINER.PACKAGE", "Native")
08/21/2014 21:37:27.865 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.INFRASTRUCTURE", "Native")
08/21/2014 21:37:27.865 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.BOOTSTRAPEXTENSION", "Native")
08/21/2014 21:37:27.865 Processing entry ("MICROSOFT.SQLSERVER.SETUP.CHAINER.WORKFLOW", "Native")
08/21/2014 21:37:27.865 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLCONFIGBASE", "Native")
08/21/2014 21:37:27.881 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SFC", "Native")
08/21/2014 21:37:27.881 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SETUPEXTENSION", "Native")
08/21/2014 21:37:27.881 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MSIEXTENSION", "Native")
08/21/2014 21:37:27.896 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.EXTENSIONCOMMON", "Native")
08/21/2014 21:37:27.896 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCO", "Native")
08/21/2014 21:37:27.896 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCOEXTENSION", "Native")
08/21/2014 21:37:27.896 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SMARTSETUPEXTENSION", "Native")
08/21/2014 21:37:28.053 Processing entry ("MICROSOFT.SQLSERVER.INTEROP.WUAPILIB", "Native")
08/21/2014 21:37:28.068 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONFIGEXTENSION", "Native")
08/21/2014 21:37:28.068 Processing entry ("MICROSOFT.SQLSERVER.DISCOVERY", "Native")
08/21/2014 21:37:28.068 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UIEXTENSION", "Native")
08/21/2014 21:37:28.068 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SSTRING", "Native")
08/21/2014 21:37:28.084 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.WIZARDFRAMEWORK", "Native")
08/21/2014 21:37:28.084 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARDFRAMEWORK", "Native")
08/21/2014 21:37:28.084 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARD", "Native")
08/21/2014 21:37:28.084 Processing entry ("MICROSOFT.SQLSERVER.MANAGEMENT.CONTROLS", "Native")
08/21/2014 21:37:28.099 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION", "Native")
08/21/2014 21:37:28.099 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONNECTIONINFO", "Native")
08/21/2014 21:37:28.099 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RULESENGINEEXTENSION", "Native")
08/21/2014 21:37:28.099 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CLUSTER", "Native")
08/21/2014 21:37:28.099 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.WMIINTEROP", "Native")
08/21/2014 21:37:28.099 Processing entry ("MICROSOFT.SQL.CHAINER.PACKAGEDATA", "Native")
08/21/2014 21:37:28.115 Processing entry ("MICROSOFT.SQL.CHAINER.PRODUCT", "Native")
08/21/2014 21:37:28.115 Processing entry ("MICROSOFT.NETENTERPRISESERVERS.EXCEPTIONMESSAGEBOX", "Native")
08/21/2014 21:37:28.115 Processing entry ("LANDINGPAGE", "Native")
08/21/2014 21:37:28.115 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SLPEXTENSION", "Native")
08/21/2014 21:37:28.115 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.AGENTEXTENSION", "Native")
08/21/2014 21:37:28.115 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.POWERSHELLEXTENSION", "Native")
08/21/2014 21:37:28.131 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SSISEXTENSION", "Native")
08/21/2014 21:37:28.131 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.ASEXTENSION", "Native")
08/21/2014 21:37:28.131 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.REPL_CONFIGEXTENSION", "Native")
08/21/2014 21:37:28.131 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MANAGEMENTTOOLSEXTENSION", "Native")
08/21/2014 21:37:28.131 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLSERVER_CONFIGEXTENSION", "Native")
08/21/2014 21:37:28.131 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SNISERVERCONFIGEXT", "Native")
08/21/2014 21:37:28.131 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLBROWSEREXTENSION", "Native")
08/21/2014 21:37:28.146 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RSEXTENSION", "Native")
08/21/2014 21:37:28.146 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.DISTRIBUTEDREPLAYEXTENSION", "Native")
08/21/2014 21:37:28.146 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RSSHPEXTENSION", "Native")
08/21/2014 21:37:28.146 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.DMF", "Native")
08/21/2014 21:37:28.146 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SMO", "Native")
08/21/2014 21:37:28.146 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLENUM", "Native")
08/21/2014 21:37:28.146 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.FULLTEXT_CONFIGEXTENSION", "Native")
08/21/2014 21:37:28.162 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.WORKFLOWDATA", "Native")
08/21/2014 21:37:28.162 Processing entry ("SHELLOBJECTS", "Native")
08/21/2014 21:37:28.162 Processing entry ("MICROSOFT.SQLSERVER.DEPLOYMENT", "Native")
08/21/2014 21:37:28.162 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UTILITYEXTENSION", "Native")
08/21/2014 21:37:28.162 Processing entry ("MICROSOFT.ANALYSISSERVICES.SHAREPOINT.INTEGRATION", "Native")
08/21/2014 21:37:28.178 Processing entry ("MICROSOFT.SQLSERVER.SQM", "Native")
08/21/2014 21:37:28.178 Processing entry ("MICROSOFT.DATAWAREHOUSE.SQM", "X86")
08/21/2014 21:37:28.178 Attempting to create .Net security code group node: MICROSOFT.DATAWAREHOUSE.SQM
08/21/2014 21:37:28.178 Processing entry ("FIXSQLREGISTRYKEY", "X86")
08/21/2014 21:37:28.178 Attempting to create .Net security code group node: FIXSQLREGISTRYKEY
08/21/2014 21:37:28.193 Processing entry ("FIXSQLREGISTRYKEY", "X64")
08/21/2014 21:37:28.193 Processing entry ("MICROSOFT.SQLSERVER.DIAGNOSTICS.CONFIGURATION.STRACE", "Native")
08/21/2014 21:37:28.193 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.PACKAGECHAINEREXTENSION", "Native")
08/21/2014 21:37:28.193 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.SETUP.RESOURCES", "Native")
08/21/2014 21:37:28.224 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.INFRASTRUCTURE.RESOURCES", "Native")
08/21/2014 21:37:28.303 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.BOOTSTRAPEXTENSION.RESOURCES", "Native")
08/21/2014 21:37:28.318 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SQLCONFIGBASE.RESOURCES", "Native")
08/21/2014 21:37:28.318 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SFC.RESOURCES", "Native")
08/21/2014 21:37:28.318 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SETUPEXTENSION.RESOURCES", "Native")
08/21/2014 21:37:28.318 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.MSIEXTENSION.RESOURCES", "Native")
08/21/2014 21:37:28.334 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.PACKAGECHAINEREXTENSION.RESOURCES", "Native")
08/21/2014 21:37:28.334 Processing entry ("MICROSOFT.SQLSERVER.CHAINER.EXTENSIONCOMMON.RESOURCES", "Native")
08/21/2014 21:37:28.334 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCO.RESOURCES", "Native")
08/21/2014 21:37:28.334 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SCOEXTENSION.RESOURCES", "Native")
08/21/2014 21:37:28.349 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.SMARTSETUPEXTENSION.RESOURCES", "Native")
08/21/2014 21:37:28.349 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONFIGEXTENSION.RESOURCES", "Native")
08/21/2014 21:37:28.349 Processing entry ("MICROSOFT.SQLSERVER.DISCOVERY.RESOURCES", "Native")
08/21/2014 21:37:28.349 Processing entry ("MICROSOFT.SQLSERVER.CONNECTIONINFO.RESOURCES", "Native")
08/21/2014 21:37:28.365 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.UIEXTENSION.RESOURCES", "Native")
08/21/2014 21:37:28.365 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.WIZARDFRAMEWORK.RESOURCES", "Native")
08/21/2014 21:37:28.365 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARDFRAMEWORK.RESOURCES", "Native")
08/21/2014 21:37:28.381 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.INSTALLWIZARD.RESOURCES", "Native")
08/21/2014 21:37:28.381 Processing entry ("MICROSOFT.SQLSERVER.MANAGEMENT.CONTROLS.RESOURCES", "Native")
08/21/2014 21:37:28.381 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RESOURCES", "Native")
08/21/2014 21:37:28.381 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.CONNECTIONINFO.RESOURCES", "Native")
08/21/2014 21:37:28.490 Processing entry ("MICROSOFT.SQLSERVER.CONFIGURATION.RULESENGINEEXTENSION.RESOURCES", "Native")
08/21/2014 21:37:28.506 Processing entry ("LANDINGPAGE.RESOURCES", "Native")
08/21/2014 21:37:28.506 Processing entry ("MICROSOFT.SQLSERVER.DEPLOYMENT.RESOURCES", "Native")
08/21/2014 21:37:28.521 Processing entry ("MICROSOFT.NETENTERPRISESERVERS.EXCEPTIONMESSAGEBOX.RESOURCES", "Native")
08/21/2014 21:37:28.521 Saved .Net security policy file
08/21/2014 21:37:28.537 Strong name verification disabling is not required
08/21/2014 21:37:28.568 /? or /HELP or /ACTION=HELP specified: false
08/21/2014 21:37:28.568 Help display: false
08/21/2014 21:37:28.568 Attempting to launch landing page workflow
08/21/2014 21:37:28.584 Attempting to set setup mutex
08/21/2014 21:37:28.584 Setup mutex has been set
08/21/2014 21:37:28.584 Attempting to launch global rules workflow
08/21/2014 21:37:28.584 Media source: z:\4d38b5017bf687968a61be850b8d\
08/21/2014 21:37:28.599 Install media path: z:\4d38b5017bf687968a61be850b8d\x64\setup\
08/21/2014 21:37:28.599 Media layout: Core
08/21/2014 21:37:28.599 Attempting to get execution timestamp
08/21/2014 21:37:28.615 Timestamp: 20140821_213726
08/21/2014 21:37:28.615 Attempting to run workflow RUNRULES /RULES=GlobalRules
08/21/2014 21:37:28.615 Attempting to launch process z:\4d38b5017bf687968a61be850b8d\x64\ScenarioEngine.exe
08/21/2014 21:37:36.780 Process returned exit code: 0x00000000
08/21/2014 21:37:36.783 Workflow RUNRULES /RULES=GlobalRules returned exit code: 0x00000000
08/21/2014 21:37:36.785 Attempting to launch component update workflow
08/21/2014 21:37:36.791 Media source: z:\4d38b5017bf687968a61be850b8d\
08/21/2014 21:37:36.794 Install media path: z:\4d38b5017bf687968a61be850b8d\x64\setup\
08/21/2014 21:37:36.796 Media layout: Core
08/21/2014 21:37:36.800 Attempting to get execution timestamp
08/21/2014 21:37:36.803 Timestamp: 20140821_213726
08/21/2014 21:37:36.812 Attempting to run workflow COMPONENTUPDATE
08/21/2014 21:37:36.818 Attempting to launch process z:\4d38b5017bf687968a61be850b8d\x64\ScenarioEngine.exe
08/21/2014 21:43:04.084 Process returned exit code: 0x00000000
08/21/2014 21:43:04.100 Workflow COMPONENTUPDATE returned exit code: 0x00000000
08/21/2014 21:43:04.100 Attempting to launch user requested workflow locally
08/21/2014 21:43:04.115 Attempting to find local setup.exe
08/21/2014 21:43:04.115 Local bootstrap folder path: C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\
08/21/2014 21:43:04.115 Local ScenarioEngine.exe full path: C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\ScenarioEngine.exe
08/21/2014 21:43:04.115 Media source: z:\4d38b5017bf687968a61be850b8d\
08/21/2014 21:43:04.131 Install media path: z:\4d38b5017bf687968a61be850b8d\x64\setup\
08/21/2014 21:43:04.146 Media layout: Core
08/21/2014 21:43:04.146 Attempting to get execution timestamp
08/21/2014 21:43:04.162 Timestamp: 20140821_213726
08/21/2014 21:43:04.162 Attempting to run user requested action from local ScenarioEngine.exe
08/21/2014 21:43:04.162 Attempting to launch process C:\Program Files\Microsoft SQL Server\110\Setup Bootstrap\SQLServer2012\x64\ScenarioEngine.exe
{
"name": "sql_databass",
"description": "",
"json_class": "Chef::Role",
"default_attributes": {
"sql_server": {
"accept_eula": true,
"version": "2012"
}
},
"override_attributes": {
},
"chef_type": "role",
"run_list": [
],
"env_run_lists": {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment