• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

Plesk Panel 11.5 and SQL Server with Windows Auth

Andrei C

Regular Pleskian
Dear Support,

How can I configure Plesk Panel 11.5 for using ASP.NET applications with sspi authentication?

P.S. As I see Plesk Panel work only with sql authentication.
 
As far as I know we do not support this sspi authentication. Could you please provide more details, description, business case, etc.? I will submit feature request.
 
As far as I know we do not support this sspi authentication. Could you please provide more details, description, business case, etc.? I will submit feature request.

for sspi needed only Windows Authentication for MS SQL Server, i.e. use "Integrated Security=SSPI;" in ConnectionString

<add name="DefaultConnection" connectionString="Data Source=<servername>;Initial Catalog=<db name>;Integrated Security=SSPI;User Id=<username>;
Password=<password>;" providerName="System.Data.SqlClient"/>

P.S. More popular ASP.NET which use financial function/method need to use sspi auth for security reason.
 
Back
Top