Fix: SSIS Installation Error – Rule “Existing clustered or clustered-prepared instance” Failed
Problem
You’re trying to install SQL Server Integration Services to an existing SQL Server failover cluster. You chose to add the shared feature to the existing instance and received the error below and couldn’t proceed:
Cause
You are receiving this error because you chose to add the feature on the existing clustered instance. By default, the cluster check will be part of the rules run during pre-checks for the installation.
Solution
Note that SSIS is not a cluster-aware service and doesn’t really fall under the instance. It’s a shared feature. You can simply install it by choosing Add New Instance/Installation of SQL Server instead of choosing to Add Feature to an Existing Instance. On the feature selection, simply only check SQL Server Integration Services under the shared feature and don’t check the database engine. This will allow you to install the SSIS without any issues.
Workaround
As with any rules for the setup, you can bypass the cluster rule by launching the setup from the command prompt with the command below. This will allow you to add the feature on the existing instance. But as I mentioned, it doesn’t really matter since SSIS is a shared feature anyway. I also don’t recommend skipping rules unless you understand what the rule is for, what you’re doing, and whether it’s safe to bypass or not.
Setup.exe /SkipRules=StandaloneInstall_HasClusteredOrPreparedInstanceCheck /Action=Install
I hope this post useful. Let me know if you have any questions in the comments, and don’t forget to sign up for the next post.
Share this
You May Also Like
These Related Stories
No Comments Yet
Let us know what you think