Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 975 Bytes

how-to-configure-the-license-server-on-a-system-where-tls-1.0-is-disabled.md

File metadata and controls

15 lines (12 loc) · 975 Bytes

How to configure the License Server on a system where TLS 1.0 is disabled

1. Install the latest Microsoft® OLE DB Driver 18 for SQL Server

2. Update the connection string in the web.config by setting the Provider value to msoledbsql as shown below (change the values as needed):

{% code overflow="wrap" %}

<connectionStrings>
<add name="QlmWebService.Properties.Settings.qlmConnectionString" connectionString="Provider=msoledbsql;Server=localhost;Database=qlmdemo;User Id=qlmdemo;Password=qlmweb30;"/>
<add name="QlmSvcLib.Properties.Settings.qlmConnectionString" connectionString="Provider=msoledbsql;Server=localhost;Database=qlmdemo;User Id=qlmdemo;Password=qlmweb30;"/>
<add name="aspConnectionString" connectionString="Data Source=localhost;Initial Catalog=qlmdemo;User Id=qlmdemo;Password=qlmweb30;"providerName="System.Data.SqlClient" />
</connectionStrings>

{% endcode %}