June 29, 2007 at 11:34 am
In my sql server logs I have several login failures
LOGIN FAILED FOR USER "DOMAIN"/"SERVERNAME".....
Why is this occurring???? When I say several, I mean a whole lot!
June 29, 2007 at 11:53 am
Because they don't have access?
Check to see that the user actually has a Windows Authentication login in SQL Server. ANd that they have access to one or more databases. Lastly, check that their default database actually exists.
-SQLBill
June 29, 2007 at 12:07 pm
Thanks for responding......the user is not listed....it just says
LOGIN FAILED FOR USER ABC/MYSERVERNAME
What user account could it be referring to?
June 30, 2007 at 12:34 am
It would be the default user in the computer account. Did you remove builtin\administrators from your sql server logins.
Cheers,
Sugeshkumar Rajendran
SQL Server MVP
http://sugeshkr.blogspot.com
July 2, 2007 at 11:42 am
If a process runs as the local System account (Windows 2000) or Network Service account (Windows XP / Server 2003), it'll connect across the network as Domain\ServerName$. Typically this is a web application which is connecting via integrated security. Microsoft's CRM 3.0 product is an example of an application which connects in this manner.
If you're seeing hits from Domain\ServerName$, investigate what applications, especially web applications may be running from that server.
K. Brian Kelley
@kbriankelley
July 2, 2007 at 6:18 pm
Thanks so much for the replies and the explanation!
Viewing 6 posts - 1 through 6 (of 6 total)
You must be logged in to reply to this topic. Login to reply