Ver Mensaje Individual
  #4 (permalink)  
Antiguo 03/09/2013, 17:19
Avatar de vrenzo
vrenzo
 
Fecha de Ingreso: febrero-2007
Mensajes: 289
Antigüedad: 17 años, 2 meses
Puntos: 15
Respuesta: Error en conexion a SQL Server 2012

El SQL permite conexiones remotas?

Puede que este ell Firewall de Windows impidiendo la conexión..

Código SQL:
Ver original
  1. @echo =========  SQL Server Ports  ===================
  2. @echo Enabling SQLServer DEFAULT instance port 1433
  3. netsh firewall SET portopening TCP 1433 "SQLServer"
  4. @echo Enabling Dedicated Admin Connection port 1434
  5. netsh firewall SET portopening TCP 1434 "SQL Admin Connection"
  6. @echo Enabling conventional SQL Server Service Broker port 4022
  7. netsh firewall SET portopening TCP 4022 "SQL Service Broker"
  8. @echo Enabling Transact-SQL Debugger/RPC port 135
  9. netsh firewall SET portopening TCP 135 "SQL Debugger/RPC"
  10. @echo =========  Analysis Services Ports  ==============
  11. @echo Enabling SSAS DEFAULT Instance port 2383
  12. netsh firewall SET portopening TCP 2383 "Analysis Services"
  13. @echo Enabling SQL Server Browser Service port 2382
  14. netsh firewall SET portopening TCP 2382 "SQL Browser"
  15. @echo =========  Misc Applications  ==============
  16. @echo Enabling HTTP port 80
  17. netsh firewall SET portopening TCP 80 "HTTP"
  18. @echo Enabling SSL port 443
  19. netsh firewall SET portopening TCP 443 "SSL"
  20. --@echo Enabling port for SQL Server Browser Service's 'Browse' Button
  21. netsh firewall SET portopening UDP 1434 "SQL Browser"
  22. @echo Allowing multicast broadcast response ON UDP (Browser Service Enumerations OK)
  23. netsh firewall SET multicastbroadcastresponse ENABLE
__________________
***
Saludos.

Última edición por vrenzo; 03/09/2013 a las 17:20 Razón: :)