sqlserver2008 installation

1.

2.

If the virtual machine is set up, you need to turn off the firewall warning

3.

4.

5.

6.

7.

8. Example installation directory

9. Specify server account

10.

11. Database engine authentication security mode

Note that data files and backups are not recommended to be stored in C drive

 

12. Designate an Analysis Services administrator

SQLServer configuration file

C:\Program Files\Microsoft SQL Server\100\Setup Bootstrap\Log\20191223_113931\ConfigurationFile.ini

Configuration file content:

;SQLSERVER2008 Configuration File
[SQLSERVER2008]

; Specify the instance ID for the SQL Server function you have specified. The SQL Server directory structure, registry structure, and service name will reflect the instance ID of the SQL Server instance. 

INSTANCEID="MSSQLSERVER"

; Specify the workflow of the installer, such as INSTALL, UNINSTALL or UPGRADE. This is a required parameter. 

ACTION="Install"

; Specify the function to be installed, uninstalled or upgraded. The list of top features includes 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,FULLTEXT,AS,RS,BIDS,CONN,IS,BC,SDK,BOL,SSMS,ADV_SSMS,SNAC_SDK,OCS

; Show command line parameter usage 

HELP="False"

; Specify that detailed installer logs should be sent to the console. 

INDICATEPROGRESS="False"

; The installer will not display any user interface. 

QUIET="False"

; The installer will only display the progress, without any user interaction. 

QUIETSIMPLE="False"

; Specifies that the installer should be installed in WOW64. IA64 or 32-bit systems do not support this command line parameter. 

X86="False"

; The detailed help of the command line parameter ENU has not been defined. 

ENU="False"

; Parameters used to control the behavior of the user interface. The valid value is Normal for the complete UI and AutoAdvance for the simplified UI. 

UIMODE="Normal"

; Specify whether errors can be reported to Microsoft to improve future versions of SQL Server. Specify 1 or True to enable this feature, and specify 0 or False to disable this feature. 

ERRORREPORTING="False"

; Specify the installation root directory of the local shared components. 

INSTALLSHAREDDIR="C:\Program Files\Microsoft SQL Server"

; Specify the installation root directory of 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 function usage data can be collected and sent to Microsoft. Specify 1 or True to enable this feature, and specify 0 or False to disable this feature. 

SQMREPORTING="False"

; Specify the default instance or named instance. MSSQLSERVER is the default instance of the non-Express version, and SQLExpress is the default instance of the Express version. This parameter is required when installing SQL Server Database Engine (SQL), Analysis Services (AS) or Reporting Services (RS). 

INSTANCENAME="MSSQLSERVER"

; Agent account name 

AGTSVCACCOUNT="NT AUTHORITY\NETWORK SERVICE"

; Automatically start the service after installation.  

AGTSVCSTARTUPTYPE="Manual"

; The startup type of Integration Services. 

ISSVCSTARTUPTYPE="Automatic"

; Integration Services account: domain\user or system account. 

ISSVCACCOUNT="NT AUTHORITY\NETWORK SERVICE"

; The name of the account used to run the Analysis Services service. 

ASSVCACCOUNT="NT AUTHORITY\NETWORK SERVICE"

; Control the service startup type setting after creating the service. 

ASSVCSTARTUPTYPE="Automatic"

; The collation to be used by Analysis Services. 

ASCOLLATION="Chinese_PRC_CI_AS"

; Location of Analysis Services data files. 

ASDATADIR="E:\SQL Server\MSAS10_50.MSSQLSERVER\OLAP\Data"

; Location of Analysis Services log files. 

ASLOGDIR="E:\SQL Server\MSAS10_50.MSSQLSERVER\OLAP\Log"

; Location of Analysis Services backup files. 

ASBACKUPDIR="E:\SQL Server\MSAS10_50.MSSQLSERVER\OLAP\Backup"

; Location of Analysis Services temporary files. 

ASTEMPDIR="E:\SQL Server\MSAS10_50.MSSQLSERVER\OLAP\Temp"

; Location of Analysis Services configuration files. 

ASCONFIGDIR="C:\Program Files\Microsoft SQL Server\MSAS10_50.MSSQLSERVER\OLAP\Config"

; Specify whether to allow the MSOLAP access interface to run in the process. 

ASPROVIDERMSOLAP="1"

; Specify the list of administrator accounts that need to be set. 

ASSYSADMINACCOUNTS="WIN-25H2IOU7019\Administrator"

; The port number used to connect to the SharePoint Management Center Web application. 

FARMADMINPORT="0"

; The startup type of the SQL Server service. 

SQLSVCSTARTUPTYPE="Automatic"

; Enable the level (0, 1, 2 or 3) of the FILESTREAM function. 

FILESTREAMLEVEL="0"

; Set to "1" to enable RANU for SQL Server Express. 

ENABLERANU="False"

; Specify the Windows collation or SQL collation to be used for the database engine. 

SQLCOLLATION="Chinese_PRC_CI_AS"

; SQL Server service account: domain\user or system account. 

SQLSVCACCOUNT="NT AUTHORITY\NETWORK SERVICE"

; To be set as the Windows account of the SQL Server system administrator. 

SQLSYSADMINACCOUNTS="WIN-25H2IOU7019\Administrator"

; The default value is Windows authentication. Use "SQL" to indicate mixed mode authentication. 

SECURITYMODE="SQL"

; The root data directory of the database engine. 

INSTALLSQLDATADIR="E:\SQL Server"

; Set the current user as the database engine system administrator of SQL Server 2008 R2 Express. 

ADDCURRENTUSERASSQLADMIN="False"

; Specify 0 to disable the TCP/IP protocol, specify 1 to enable the protocol. 

TCPENABLED="1"

; Specify 0 to disable the Named Pipes protocol, and specify 1 to enable the protocol. 

NPENABLED="0"

; The startup type of the Browser service. 

BROWSERSVCSTARTUPTYPE="Disabled"

; Specify the account that the report server NT service should use when executing. If this value is omitted or the value is an empty string, the default built-in account of the current operating system will be used.
; The maximum length of the user name part of RSSVCACCOUNT is 20 characters
; the maximum length of the domain part of RSSVCACCOUNT is 254 characters. 

RSSVCACCOUNT="NT AUTHORITY\NETWORK SERVICE"

; Specify the startup mode of the report server NT service.
; Manual-Start the service in manual mode (default).
; Automatic-start the service in automatic mode.
; Disabled-service is disabled 

RSSVCSTARTUPTYPE="Automatic"

; Specify the installation mode of the report server.
; Default value: "FilesOnly"  

RSINSTALLMODE="DefaultNativeMode"

; Add description of input parameter FTSVCACCOUNT 

FTSVCACCOUNT="NT AUTHORITY\LOCAL SERVICE"
 

Guess you like

Origin blog.csdn.net/weixin_41086692/article/details/103661622