Reply to Message

View discussion in a popup

Replying to:
cdubz
Enthusiast
Enthusiast

Yeah that looks like the same i was getting with 2.71.  Didnt get it with 2.8 though. 

SQL Questions:

Is your SQL installation a standalone sql server or a clustered sql server?

Is your SQL installation setup for Mixed authentication (SQL and Windows)?

If cluster is it a traditional cluster or Always On cluster?

When creating the DB you used the following code from the reference install documentation?:

           CREATE DATABASE saas

COLLATE Latin1_General_CS_AS;
ALTER DATABASE saas SET READ_COMMITTED_SNAPSHOT ON;
GO
BEGIN
CREATE LOGIN horizon WITH PASSWORD = N'H0rizon!';
END
GO
USE saas;
IF EXISTS (SELECT * FROM sys.database_principals WHERE name = N'horizon')
DROP USER [horizon]
GO
CREATE USER horizon FOR LOGIN horizon
WITH DEFAULT_SCHEMA = saas;
GO
CREATE SCHEMA saas AUTHORIZATION horizon
GRANT ALL ON DATABASE::saas TO horizon;
GO

Appliance Deployment Questions:

When deploying the appliance are you configuring all the networking fields?  Install documentation mentions domain name and domain search path are not needed:

VMware Documentation Library

Are you using multiple DNS servers during deployment and comma separating them or single dns?

Reply
0 Kudos