I'm struggling to understand how exactly I should configure the XML-file for an unattended install and configuration of NCM.
This is the article I have been reading:
https://support.solarwinds.com/SuccessCenter/s/article/Run-the-SolarWinds-Orion-Installer-in-the-silent-mode?language=en_US&r=99&ui-knowledge-components-aura-actions.KnowledgeArticleVersionCreateDraftFromOnlineAction.createDraftFromOnlineArticle=1
I think the "Example B: Standard fresh installation with an existing database" is the option best suited as I already have a running setup. But I'm not sure of the environment-specific values. I have attached screenshots of how it looks like when I successfully complete the configuration using the Configuration Wizard.
Based on my Configuration Wizard screenshots can someone verify if this the correct XML-configuration?
<?xml version="1.0" encoding="utf-8"?><SilentConfig> <InstallerConfiguration> <ProductsToInstall>NCM</ProductsToInstall> <AdvancedInstallMode>True</AdvancedInstallMode> <SkipConfigurationWizardRun>False</SkipConfigurationWizardRun> </InstallerConfiguration> <Host> <Info> <ReconfigureDatabase>true</ReconfigureDatabase> <ReconfigureWebsite>true</ReconfigureWebsite> <ReconfigureServices>true</ReconfigureServices> <ReconfigurePermissions>true</ReconfigurePermissions> <Database> <CreateNewDatabase>true</CreateNewDatabase> <!--(Sets flag to create new database during CW)--> <UseSQLSecurity>true</UseSQLSecurity> <!--(Enables SQL Server authentication)--> <DatabaseName>SolarWindsOrionNPM</DatabaseName> <!--(Orion database name)--> <DatabasePath/> <ServerName>SECMLMSQL01\INST2</ServerName> <!--(SQL server name for silent config wizard, e.g.: localhost)--> <InstanceName/> <!--(SQL instance name for silent config wizard)--> <UserPassword>*****</UserPassword> <!--(SQL account password, when you enabled UseSqlAuthentication)--> <User>SolarWindsOrionDatabaseUser</User> <!--(SQL account username, when you enabled UseSqlAuthentication)--> <AccountType>NewSql</AccountType> <!--(Orion database account access type. Other possible values: ExistingSql, ExistingWindows)--> <Account>SolarWindsOrionDatabaseUser</Account> <!--(Name of Orion database account, e.g.: SolarwindsOrionDatabaseUser)--> <AccountPassword>*****</AccountPassword> <!--(Password to Orion database account)--> <NeedSQLServerSecurity>false</NeedSQLServerSecurity> <NeedToChangeSAPassword>false</NeedToChangeSAPassword> <SAPassword>*****</SAPassword> <AddServiceDependencies>false</AddServiceDependencies> <RemoveServiceDependencies>false</RemoveServiceDependencies> <FailureInfo/> </Database> <Website> <Folder>C:\InetPub\SolarWinds</Folder> <Address>(All Unassigned)</Address> <Port>80</Port> <ApplicationName>SolarWinds NetPerfMon</ApplicationName> <LaunchWebConsole>false</LaunchWebConsole> <ConfigurationSkipped_IISNotInstalled>false</ConfigurationSkipped_IISNotInstalled> <EnableWindowsLogin>true</EnableWindowsLogin> </Website> </Info> </Host> <Plugins/></SilentConfig>