Form Based Authentication (FBA) is one of the Authentication Mode supported by SharePoint that allows us to implement our own authentication mechanism and helps to extend a SharePoint Site for Non-Active Directory (AD) Users.
While SharePoint default installation employs Active Directory to query User Profiles and to authenticate the Users using Windows Authentication, FBA uses the custom database hosted in conjunction with an AD to store User’s Credentials and the authentication, in this case, takes place using a database query to the FBA Custom Database for FBA User Profiles.
FBA becomes really important when it comes to the requirements where we need to expose SharePoint to the outer world. For example, Sharing documents with your Clients and Vendors or else.
In this article, we will see all the steps involved in implementing FBA with SharePoint and we can depict the process as per the Process Diagram below-
In order to start with implementing FBA we need a Web Application and Site Collection hosted inside it. I have created both Web Application & a Site Collection using SharePoint UI.
In order to provision Membership Database for storing user credentials, Microsoft has been provided with a utility “aspnet_regsql.exe”.
In order to execute this utility we follow the below steps:
CD \Windows\Microsoft.Net\Framework64\v4.0.30319
.\aspnet_regsql
Once we execute the commands above the Database Configuration wizard come up
You can specify the database name or leave it as default which will create a database by the name “aspnetdb”
This will provision the Membership Database to SQL Server
Now in order to verify if Membership Database has been created successfully or not and to allow requirement permissions for SharePoint Admin account.
In order to grant permissions to the SharePoint Farm Account which is “Prashant\Administrator” in here following the steps below:
With this, we are all done for this demo.
In this article, we have covered Step 1 & 2. We will look for Step 3 & 4 in an upcoming article on Configuring FBA for SharePoint as follows-SHAREPOINT 2016: FORMS BASED AUTHENTICATION – PART 2
Stay tuned.