Appendix B: Cluster Installation and Configuration
Cluster Overview
Deploying Plant Applications in a clustered environment with Microsoft server failover cluster technology ensures the highest availability of the Plant Applications Server. For example, if the primary Plant Applications node in the cluster experiences difficulties, Plant Applications automatically starts on another node to take over. SQL Server, a historian, and the Plant Applications Web (Report) Server can also run as part of a cluster. Refer to Microsoft documentation for information to implement clustering for your particular environment.
System Requirements
To deploy Plant Applications in a clustered environment, you will need at least two cluster nodes. All the cluster nodes must be assigned to the same domain name, and must contain the following components:
- Windows 2012 r2 server with the same service pack versions installed on them.
- Feature Failover Clustering
- An active Proficy license
- Proficy Workflow
- Plant Applications
- iSCSI Target Server, serving as a remote drive for Plant Applications Buffer Files and Log Files
Deploy Plant Applications in a Clustered Environment
Before You Begin
- Access the iSCSI Initiator Properties window, and provide the address of an iSCSI target.
- Create a storage for iSCSI by performing the following steps:
- Access the Failover Cluster Manager window, and then select the cluster node.
- Select .
- Select iSCSI.
- Create a Plant Applications role by performing the following steps:
- Access the Failover Cluster Manager window, and then select the cluster node.
- Select .
- Set the NetBios name of the Plant Applications server.
- Right-click the shared drive, and then select .
- Configure Workflow in a clustered environment by performing the steps provided in the following article: https://digitalsupport.ge.com/communities/en_US/Article/To-Build-Proficy-Workflow-Cluster
- Configure the Proficy Certificate service by performing the following steps:
- Access the Proficy Certificate Properties window.
- Select General.
- From the services of type Generic Service, select Proficy Ceritificate.
Procedure
Results
What To Do Next
- For each cluster node, ensure that the following registry key is set to the Plant Applications Cluster NetBios name: Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Proficy\Plant Applications\Proficy Server\LicenseMgrNode
- Change the Plant Applications server name in the Microsoft SQL database to the Plant Applications cluster node name by running the following command:
spSupport_UpdatePAServerReferences_Split <old server name> <Cluster NetBios name>
- Change the path of the Plant Applications log files and buffer files to that of the cluster nodes shared drive by running the following commands:
Select * from dbo.Site_Parameters where parm_id in (101, 102) Select * from dbo.User_Parameters where parm_id in (101, 102) Select * from dbo.Site_Parameters where parm_id in (101, 102) Select * from dbo.User_Parameters where parm_id in (101, 102) UPDATE Site_Parameters SET Value = '<cluster node shared drive path to log files>' WHERE parm_id = 101 UPDATE Site_Parameters SET Value = '<cluster node shared drive path to buffer files>' WHERE parm_id = 102 UPDATE User_Parameters SET Value = '<cluster node shared drive path to log files>' WHERE parm_id = 101 UPDATE User_Parameters SET Value = '<cluster node shared drive path to buffer files>' WHERE parm_id = 102
- Ensure that Plant Applications Manager does not control the Plant Applications services by running the following command:
Update dbo.CXS_Service Set Auto_Start = 0, Auto_Stop = 0, Restart_Non_Responding = 0 where Service_Id between 2 and 25
- Modify the following files to adjust route group and domain name to the cluster name and to adjust log files and buffer files path to a shared drive:
- cmRtr.ini
- PlantAppsMessaging.ini
- cmConfigMgr.ini
- Message.ini
- Set the site parameter ClusteredSystem to true by running the following command:
Select * from dbo.Parameters where Parm_Name like '%Cluster%' Select * from Site_Parameters where Parm_Id = 131 Update Site_Parameters Set Value = 1 Where Parm_Id = 131