Preparations for the PeopleSync Frontend
The PeopleSync Frontend needs a SQL Server login to connect to the PeopleSync database. The following steps will guide you through the process of creating the login and granting the necessary permissions.
Please write down the login and password you created in the following steps, as those will be needed during further setup.
Configure SQL Server for mixed authentication mode:
-
Open SQL Server Management Studio.
-
In SQL Server Management Studio Object Explorer, right-click the server, and then click Properties.
-
On the Security page, under Server authentication, select SQL Server and Windows authentication mode, and then click OK.
-
In the SQL Server Management Studio dialog box, click OK to acknowledge the requirement to restart SQL Server.
-
In Object Explorer, right-click your server, and then click Restart. If SQL Server Agent is running, it must also be restarted.
Create a SQL Server login:
-
Open SQL Server Management Studio.
-
Open a new query window.
-
Type in the following command, set a password and hit Enter:
CREATE LOGIN psweb
WITH PASSWORD = '<enterStrongPasswordHere>',
CHECK_POLICY = OFF;
GO
Grant permission to access the PeopleSync Database:
-
Open SQL Server Management Studio.
-
In Object Explorer, expand the Databases folder.
-
Expand the PeopleSync database.
-
Right-click the Security folder, point to New, and select User….
-
In the Database User – New dialog box, on the General page, select SQL user with login.
-
In the User name box, enter the name psweb.
-
In the Login name box, enter the name psweb.
-
In the Default schema box, enter dbo.
-
In the Membership tab, select db_datareader and db_datawriter.
-
Click OK.