0
0
SCADA systemsdevops~10 mins

Cloud SCADA platforms in SCADA systems - Interactive Code Practice

Choose your learning style9 modes available
Practice - 5 Tasks
Answer the questions below
1fill in blank
easy

Complete the code to deploy a SCADA platform on a cloud service using the correct command.

SCADA systems
cloud-cli deploy scada-platform --name [1]
Drag options to blanks, or click blank then click option'
AstartSCADA
BdeploySCADA
CmySCADA
DcloudSCADA
Attempts:
3 left
💡 Hint
Common Mistakes
Using command verbs as the platform name, which causes deployment errors.
2fill in blank
medium

Complete the code to check the status of the SCADA platform in the cloud.

SCADA systems
cloud-cli scada-platform status --id [1]
Drag options to blanks, or click blank then click option'
Astatus
B12345
Cplatform
Dcheck
Attempts:
3 left
💡 Hint
Common Mistakes
Using command keywords instead of the platform ID, causing errors.
3fill in blank
hard

Fix the error in the command to scale the SCADA platform instances.

SCADA systems
cloud-cli scada-platform scale --instances [1]
Drag options to blanks, or click blank then click option'
A10
B-10
Cten
Dzero
Attempts:
3 left
💡 Hint
Common Mistakes
Using words instead of digits, or negative numbers, which cause command failure.
4fill in blank
hard

Fill both blanks to create a monitoring alert rule for CPU usage above a threshold.

SCADA systems
cloud-cli alert create --metric [1] --threshold [2]
Drag options to blanks, or click blank then click option'
Acpu_usage
Bmemory_usage
C80
D50
Attempts:
3 left
💡 Hint
Common Mistakes
Confusing CPU with memory metrics or setting too low thresholds.
5fill in blank
hard

Fill all three blanks to configure a secure connection to the SCADA cloud platform.

SCADA systems
cloud-cli connect --host [1] --port [2] --use-ssl [3]
Drag options to blanks, or click blank then click option'
Ascada.example.com
B443
Ctrue
D80
Attempts:
3 left
💡 Hint
Common Mistakes
Using wrong ports like 80 for SSL or disabling SSL by setting false.