I have two servers:
Server A: "Website Server" This server is running an ASP.NET 2.0 website on Windows Server 2003 Web Edition with IIS6. I am attempting to use membership roles to allow users to login to my website.
Server B: "Database Server" This server is running a SQL Server 2005 Enterprise Edition database on Windows Server 2003.
Both machines are part of a domain that I created.
The implementation I am hoping to achieve is for the website on the website server to use the sql database on the database server to manage its users.
I ran the aspnet_regsql.exe from
C:\Windows\Microsoft.net\framework\v2.0.50727 on the Website Server to create the sql database schema and the database on the Database Server. The website on the Website Server is using Windows forms authentication as a login mechanism for users. I was able to successfully create an account using the ASP.net website administration tool and the account shows up inside of the users table in the SQL database on the Database Server, but when I attempt to login to the website using this new account I receive the following error message:
Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON'
Any help would be greatly appreciated. Thanks.
Server A: "Website Server" This server is running an ASP.NET 2.0 website on Windows Server 2003 Web Edition with IIS6. I am attempting to use membership roles to allow users to login to my website.
Server B: "Database Server" This server is running a SQL Server 2005 Enterprise Edition database on Windows Server 2003.
Both machines are part of a domain that I created.
The implementation I am hoping to achieve is for the website on the website server to use the sql database on the database server to manage its users.
I ran the aspnet_regsql.exe from
C:\Windows\Microsoft.net\framework\v2.0.50727 on the Website Server to create the sql database schema and the database on the Database Server. The website on the Website Server is using Windows forms authentication as a login mechanism for users. I was able to successfully create an account using the ASP.net website administration tool and the account shows up inside of the users table in the SQL database on the Database Server, but when I attempt to login to the website using this new account I receive the following error message:
Login failed for user 'NT AUTHORITY\ANONYMOUS LOGON'
Any help would be greatly appreciated. Thanks.