Prepare a Mirror Database for Mirroring (SQL Server)
SELECT role_desc, state_desc
FROM sys.database_mirroring_endpoints;
Database Mirroring - Allow Network Access - Windows Authentication
USE master;
GO
CREATE LOGIN [Adomain\Otheruser] FROM WINDOWS;
GO
GRANT CONNECT on ENDPOINT::Mirroring_Endpoint TO [Adomain\Otheruser];
GO