I just installed IIS on Windows Server 2008 (64bit) (after first installing SQL Server 2008 with default name).
I provisioned the SQL 2008 instance using aspnet_regsql.exe using the default name (aspnetdb). (using the 64 bit version in Framework64)
I added a user with 'log on as process' permission (named MyUser)
I added MyUser to the aspnetdb in SQL with max permissions
I modified the connection string for LocalSqlSever so it reads :
Server=localhost;Database=aspnetdb;User ID=MyUser;Password=**** (Entry Type is local)
I modified the authentication for the default site to :Forms Authentication
I get this error when I try to add .NET Users in IIS Manager to the default web site:
A connection was successfully established with the Server, but then an error occurred during the login process. (provider: Shared Memory Provider, error 0 - No Process was on the other end of the pipe.)
What do I need to do to resolve this issue? What am I missing?
P.S.
SQL server 2008 has Shared Memory, Named Pipes and TCP access enabled
the Firewall is disabled.