https://rdr-it.com/ferme-rds-configuration-service-broker-haute-disponibilite/2/
...
Infrascture RDS
Nom | IP |
---|---|
RDS-BROKER | 192.168.20.10 |
RDS-BROKER2 | 192.168.20.9 |
...
RDS-SQL | 192.168.20.8 |
Télécharger SQL Server :
...
https://download.microsoft.com/download/7519f0ff-997c-4f36-b5aa-9a51d47dd34c/SSMS-Setup-ENU.exe
- Installer le client sql sur chaque broker
Tip |
---|
Ayant SQL EXPRESS 22 , il faut le drive OBDC |
A tester
Code Block |
---|
Driver={ODBC Driver 18 for SQL Server};Server=RDS-BROKER2\SQLEXPRESS;Database=RDSHA;Trusted_Connection=Yes;Encrypt=yes;TrustServerCertificate=Yes;Connection Timeout=30; |
Non tester :
Code Block |
---|
Driver={ODBC Driver 18 for SQL Server};Server=RDS-BROKER2\SQLEXPRESS;Database=RDSHA;Trusted_Connection=Yes;TrustServerCertificate=Yes;Encrypt=yes;Connection Timeout=30;
|
doc officiel
Code Block |
---|
Driver={ODBC Driver 13 for SQL Server};Server=tcp:<YourHost>,<HostPort>;Database=<DatabaseName>;Uid=<UserID>;Pwd=<Password>;Encrypt=yes;TrustServerCertificate=no;Connection Timeout=30; |
Ajouter le serveur sur RDS BROEKR 2 (ajout de serveurs ) sur le 1
puis ajout la fonctionnalité "BROKER " (bureau à distance) et accès web
après sur RDS-BROKER
sur la vue d'ensemble
Ajouter Serveur de base de donnée dédié
Ajouter une règle sur RDS BROKER 2 pour le port 1433
Code Block |
---|
New-NetFirewallRule -DisplayName "SQL Server TCP 1433" -Direction Inbound -Protocol TCP -LocalPort 1433 -Action Allow -Profile Domain,Private
|
DRIVER=SQL Server Native Client 11.0; SERVER=RDS-SQL; Trusted_Connection=Yes; APP=Remote Desktop Services Connection Broker; DATABASE=RDC
------------ OBSELETE --------
Installation de SQL SERVEUR VERSION EVALUATION
...