Skip to content

SQL Server DBA - Dedicated Blog for all DBA and Developers

SQL DBA blog is dedicated in providing the highest quality and most in-depth SQL Server material to boost your career or to make one more productive.
  • Home
  • SQL Admin
    • SQL Development
    • SQL Server Basics
      • SQL Server Architecture
      • SQL Server Management Studio
      • SQL Server Configuration Manager
    • Using Query Analyser
    • Adding SQL Agent Job
    • Backing up SQL Server Database
    • Restoring Database in SQL Server
    • SQL Server Activity Monitor
    • Using SQL Server Database Tuning Advisor
    • Using SQL Server Profiler
    • SQL Server RPO and RTO
    • SQL Server 2008 HA and DR Solutions
    • SQL Server Encryption
  • High Availability
    • Failover Clustering
    • Database Mirroring
    • Replication
      • Transactional Replication
      • Snapshot Replication
      • Merge Replication
    • Disaster Recovery
      • Backup and Restore
      • Log Shipping
      • Database Mirroring
  • Performance Tuning
    • Operating System Memory Counters
      • OS Memory and Paging Performance Counters
      • OS CPU and Processor Counters
      • OS Disk and Miscellaneous Counters
    • SQL Server Memory
      • Buffer Manager & Memory Performance Counters
      • SQL Server: Memory Manager Counters
      • My Memory Usage– Performance Counters
    • Other Important Performance Counters
      • Data Access Performance Counters
      • User Database Performance Counters
      • SQL Server SQL Statistics Counters
      • Workload Performance Counters
      • Important Perfmon Counters %Processor and Disk monitoring counters
      • SQL Server : Plan Cache Counters
    • Users & Locks Performance Counters
    • Getting Perfmon data from inside of SSMS
  • BI Tools
    • Administration of Reporting Services
    • Administration of Analysis Services
    • Scheduling Integration Services Package
  • Contact Us

SQL Server DBA - Dedicated Blog for all DBA and Developers

SQL DBA blog is dedicated in providing the highest quality and most in-depth SQL Server material to boost your career or to make one more productive.
  • Home
  • SQL Admin
    • SQL Development
    • SQL Server Basics
      • SQL Server Architecture
      • SQL Server Management Studio
      • SQL Server Configuration Manager
    • Using Query Analyser
    • Adding SQL Agent Job
    • Backing up SQL Server Database
    • Restoring Database in SQL Server
    • SQL Server Activity Monitor
    • Using SQL Server Database Tuning Advisor
    • Using SQL Server Profiler
    • SQL Server RPO and RTO
    • SQL Server 2008 HA and DR Solutions
    • SQL Server Encryption
  • High Availability
    • Failover Clustering
    • Database Mirroring
    • Replication
      • Transactional Replication
      • Snapshot Replication
      • Merge Replication
    • Disaster Recovery
      • Backup and Restore
      • Log Shipping
      • Database Mirroring
  • Performance Tuning
    • Operating System Memory Counters
      • OS Memory and Paging Performance Counters
      • OS CPU and Processor Counters
      • OS Disk and Miscellaneous Counters
    • SQL Server Memory
      • Buffer Manager & Memory Performance Counters
      • SQL Server: Memory Manager Counters
      • My Memory Usage– Performance Counters
    • Other Important Performance Counters
      • Data Access Performance Counters
      • User Database Performance Counters
      • SQL Server SQL Statistics Counters
      • Workload Performance Counters
      • Important Perfmon Counters %Processor and Disk monitoring counters
      • SQL Server : Plan Cache Counters
    • Users & Locks Performance Counters
    • Getting Perfmon data from inside of SSMS
  • BI Tools
    • Administration of Reporting Services
    • Administration of Analysis Services
    • Scheduling Integration Services Package
  • Contact Us
Home » SQL Server Error: 1326 Logon failure: unknown user name or bad password.

SQL Server Error: 1326 Logon failure: unknown user name or bad password.

  • Vamshi B Vamshi B
  • November 15, 2021
  • SQL Server

Table of Contents

  • Problem Description:
  • Cause of the issue
  • Explanation:
  • Solution for Resolving The Problem

Problem Description:

Microsoft SQL database: [][State =01000][Error=1326][Microsoft][ODBC SQL Server Driver] [SQL Server]”Logon failure: unknown user name or bad password.

sql server error 1326 windows 10
sql server error 17
named pipes provider: could not open a connection to sql server (53)

Cause of the issue

Error 1326 means “Logon failure: unknown user name or bad password.” This error is raised because the IIS Service does not have any rights to use the named pipe.

Or It’s possible, even likely, that SQL Express is not listening on port 1433. By default, we use dynamic TCP ports, which is why you need SQL Browser to be running in the first place. Check out http://support.microsoft.com/kb/914277 which it a different take on enabling remote connections through the firewall.

Explanation:

A client must be validated by the Windows NT server before being granted access to a Windows NT named pipe. This is usually performed through a

1.Workgroups-style validation in which the client and server produce identical identities and passwords

2. the domain method in which both the client and server are domain members.

IIS produces a Windows NT ID named IUSR machine-name (where machine name is the name of the Windows NT server) and adds that user to the Guest local group during the setup process. This Windows NT account is used to execute the IIS service.

IIS employs the Windows NT account IUSR machine-name if the connection to IIS is anonymous, and any network activity performed by IIS is done under this account ID.

Named pipes connections work and validation is successful if the SQL server and IIS are on the same server.
If SQL is installed on a different server than IIS, the IUSR machine name account must be confirmed on the Windows NT server where SQL is installed.

Solution for Resolving The Problem

This account must be verified by the server hosting Microsoft SQL Server in order for the connection to occur properly. If this account is not verified, then the connection fails and provides only the line number in the script file of the attempted connection opening.

To resolve this problem, you can use one of the following options:

  1. Enable the Windows NT ID Guest.
  2. Make the Windows NT user, IUSR_Machine-Name, a member of the domain where SQL server resides.
  3. Use the account information from Internet Service Manager to set up a local user account on the Windows NT Server that hosts SQL Server.
  4. Make sure named pipes provider is enabled for error relating to “named pipes provider: could not open a connection to sql server”
  5. Make sure firewall exceptions are added for sql server for remote access if ” a network-related or instance-specific error in sql server 2014 error 26 ” or ” microsoft sql server error 53 “

 

Try below if above does not resolve if 2005 version

  1. Using the SQL Server 2005 Surface Area Configuration tool, enable remote connections to accept both local and remote connections.
  2. Using SQL Server Configuration Manager, configure the same TCP for both SQLSERVER(EXPRESS) and SQL Native Client port protocols. Use the default port (1433) if possible, but it must be the same for both the Server and Client components. Remember to re-initialize both the SQL Server and SQL Browser services.
  3. Add sqlservr.exe and sqlbrowser.exe as exceptions to your firewall (which was the source of the problem). In SQL Server 2005, you don’t need to use the netsh command.

Before installing the SQL Native Client, I was able to login remotely using the SQL Compact Edition that came with the LAP. The only thing I didn’t like about it was that I couldn’t utilize a Trusted Connection and had to rely on the SQL sa user and password instead.

Tags:microsoft sql server error 1326 windows 2012microsoft sql server error 1326 windows 7sql server 2000 error 1326sql server 2019 error 1326sql server error 1326sql server error 1326 and 17sql server error 1326 logon failuresql server error 1326 named pipesql server error 1326 windows 10sql server error 1326 windows 7sql server login error 1326sql server os error 1326

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Categories

  • Backup and Restore
  • Concurrency Control
  • Connectivity Issues
  • CTE
  • Database Mail
  • Database Maintenance
  • Database Mirrroring
  • Dealocks
  • Disaster Recovery
  • Disk I/O
  • Error Log
  • Extended Events
  • FTP
  • High Availability
  • In-Memory OLTP
  • Indexes
  • Log Shipping
  • MDW
  • Memory Configurations
  • New Features
  • Performance issues
  • Performance Tuning
  • Plan Cache
  • Policy Based Management
  • PRINCE2
  • Project Management
  • Replication
  • Reporting Services
  • Resource Database
  • Resource Governor
  • Revolution Analytics
  • rto rpo
  • SQL Server
  • SQL Server Admin
  • SQL Server Administration
  • SQL Server Alerts and Notifications
  • SQL Server Architecture
  • SQL Server Errors
  • SQL Server Extended Events
  • SQL Server Indexes
  • SQL Server Locks
  • SQL Server on Linux
  • SQL Server Security
  • SSRS
  • Storage Internals
  • Stored Procedures
  • System Databases
  • Table Variable
  • TDE
  • Temporary Database
  • Temporary Tables
  • Temporary Variables
  • Transaction Log
  • Transaction Log Shipping
  • Transactional Replication
  • TSQL
  • Uncategorized
  • Wait Stats

Please follow & like us :)

RSS
Follow by Email
Facebook
fb-share-icon

My Cool Posts…

  • SQL Server Error : 10033, Severity: 16. The specified index does not exist or th
  • SQL Server Error : 10032, Severity: 16. Cannot return multiple result sets (not
  • SQL Server Error : 16389, Communication link failure
  • SQL Server Error : 1003, Severity: 15. Line %d: %ls clause allowed only for %ls
  • SQL Server Error : 10035, Severity: 16. No value was given for one or more of th
  • SQL Server Error : 10034, Severity: 16. The specified table or view does not exi
  • SQL Server Error : 16943, Severity: 16. Could not complete cursor operation beca
  • SQL Server Error : 16915, Severity: 16. A cursor with the name ‘%.*ls’ already e
  • SQL Server Error : 1639 The eror occurs during installation of SQL Server
  • SQL Server Error : 15404, Severity: 16. Could not obtain information about Windo

DBA

SQL Server DBA

Google site link is https://sites.google.com/view/sqlserver-dba

For list of all URL's https://docs.google.com/spreadsheets/d/1Pmt8rt4TOvvf8IXjudtqz_c-sLQQilRALQStYyVMK3I/edit?usp=sharing

Twitter Account is https://twitter.com/VamshidharBokka

Facebook page is www.facebook.com/SQLServerDBABlog

SQLServerDBA | Copyright by SQLServerDBA

We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept All”, you consent to the use of ALL the cookies. However, you may visit "Cookie Settings" to provide a controlled consent.
Cookie SettingsAccept All
Manage consent

Privacy Overview

This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Necessary
Always Enabled
Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously.
CookieDurationDescription
cookielawinfo-checkbox-analytics11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics".
cookielawinfo-checkbox-functional11 monthsThe cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".
cookielawinfo-checkbox-necessary11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary".
cookielawinfo-checkbox-others11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other.
cookielawinfo-checkbox-performance11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance".
viewed_cookie_policy11 monthsThe cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data.
Functional
Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features.
Performance
Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.
Analytics
Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc.
Advertisement
Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads.
Others
Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet.
SAVE & ACCEPT