Hi, I have recently started a contract position where they have a Active Active cluster with all the instances listening on 1433. Is this recommended??? I personally didnt think this could be done. Thanks
Are you sure they are using default port, see http://sql-server-performance.com/Community/forums/p/30234/158715.aspx. In any case they are inviting trouble, that too using the default port without chaning the port number. Fyi see http://download.microsoft.com/downl...426-97d0-7f7151b2011c/SQL2005SecBestPract.doc on best practices, if required let me know if I can educate the relevant manager at your place [] happy to help.
For Security reason you will not use the default port and use 1 port for 1 instance,you can change with the help of SQL Server Configuration Tools
Ports are allocated per IP address. In a cluster (Active/Active has nothing to do with it), a SQL virtual machine (a cluster resource) has its own IP address. Since it has its own IP address (not the same as the cluster node IP address or the cluster IP address), it can listen on port 1433 no problem. Having the instances listen on port 1433 is not a big concern to me. It is still far too easy to find out what port SQL is listening on, even without the SQL Browser service running.
True, but still as a best practice it is always better to change the default settings to some other value.