AVEVA Community
Site
Search
User
Site
Search
User
State
Verified Answer
+1
person also asked this
people also asked this
Replies
4 replies
Subscribers
583 subscribers
Views
1462 views
Users
0 members are here
Plant SCADA
Options
Share
More
Cancel
Related
Plant SCADA 2023 R2: In a redundant system, how do you setup the events not to duplicate on both server but to only show on the primary server when it is active and to only show on the secondary server when the primary is offline.
Jimmy Ndubani
11 months ago
How to configure Redundant Event servers
Top Replies
Bas van Diepen
11 months ago
+3
verified
On the redundant Alarm and Report servers you can use: IF StrToInt(ServerInfo("ALARM",0)) = 1 THEN or IF StrToInt(ServerInfo("REPORT",0)) = 1 THEN The Cicode below will then be executed on the active…
Olivier
11 months ago
+3
verified
There is also the option to use redundant Report Servers in your project as the event engine. You simply create a basic report and define the Cicode to run. The Report Server redundancy will then handle…
Eric Black
11 months ago
+1
verified
You could use IODeviceInfo() to check the status of a redundant I/O device and only run the event if that returns that the device is active on the desired server. Another option is to create a Report and…