Guide to Create an Administrator User in SQL Server (Vester) + Enable Mixed Authentication Mode
What is mixed authentication?
SQL Server supports two authentication modes:
Windows Authentication: Uses credentials from the Windows operating system.
SQL Server Authentication: Allows the creation of users managed directly by SQL Server.
To connect from external systems like vNode, SQL Server must be configured in Mixed Authentication Mode.
Part 1: Enable Mixed Authentication Mode in SQL Server
Step 1: Open SSMS and connect as administrator
Launch SQL Server Management Studio (SSMS).
Connect to your SQL Server instance using Windows Authentication with an account that has administrative privileges.
Step 2: Change authentication mode
In the Object Explorer, right-click on the server name and select Properties.
Go to the Security tab.
Select the option:
SQL Server and Windows Authentication mode.Click OK to save the changes.
Step 3: Restart the SQL Server service
To apply the changes:
In the Object Explorer, right-click the server name and select Restart.
Alternatively, open “SQL Server Configuration Manager” and restart the SQL Server service from there.
Restarting the service is mandatory after switching the authentication mode.
Part 2: Create the user Vester
with administrator privileges
Step 4: Create a new login
In the Object Explorer, expand the Security folder.
Right-click on Logins and select New Login...
In the login creation window:
Login name: enter
Vester
.Select SQL Server authentication.
Enter and confirm a secure password.
(Optional) Uncheck Enforce password policy if you prefer to disable expiration or complexity requirements.
Step 5: Assign administrator permissions
In the left menu of the same window, go to the Server Roles section.
Check the box for sysadmin.
This grants the
Vester
user full administrative access to the SQL Server instance.
Click OK to create the login.
Final Step: Test the connection
Log out of your current SSMS session.
Open SSMS again and connect using:
Login:
Vester
Authentication: SQL Server Authentication
Password: the password you configured
If the connection is successful, the Vester
user is ready to use with full administrative privileges.
Recommendation for vNode Integration
The Vester
user can be used in vNode to connect to SQL Server:
As a full administrator (recommended for testing or development environments)
Or with restricted access to a specific database in production environments
Created by JF
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article