summaryrefslogtreecommitdiffstats
path: root/health/guides/scaleio/scaleio_sdc_mdm_connection_state.md
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 02:57:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 02:57:58 +0000
commitbe1c7e50e1e8809ea56f2c9d472eccd8ffd73a97 (patch)
tree9754ff1ca740f6346cf8483ec915d4054bc5da2d /health/guides/scaleio/scaleio_sdc_mdm_connection_state.md
parentInitial commit. (diff)
downloadnetdata-be1c7e50e1e8809ea56f2c9d472eccd8ffd73a97.tar.xz
netdata-be1c7e50e1e8809ea56f2c9d472eccd8ffd73a97.zip
Adding upstream version 1.44.3.upstream/1.44.3upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'health/guides/scaleio/scaleio_sdc_mdm_connection_state.md')
-rw-r--r--health/guides/scaleio/scaleio_sdc_mdm_connection_state.md43
1 files changed, 43 insertions, 0 deletions
diff --git a/health/guides/scaleio/scaleio_sdc_mdm_connection_state.md b/health/guides/scaleio/scaleio_sdc_mdm_connection_state.md
new file mode 100644
index 00000000..1e09b978
--- /dev/null
+++ b/health/guides/scaleio/scaleio_sdc_mdm_connection_state.md
@@ -0,0 +1,43 @@
+### Understand the alert
+
+The `scaleio_sdc_mdm_connection_state` alert indicates that your ScaleIO Data Client (SDC) is disconnected from the ScaleIO MetaData Manager (MDM). This disconnection can lead to potential performance issues or data unavailability in your storage infrastructure.
+
+### Troubleshoot the alert
+
+1. Check the connectivity between SDC and MDM nodes.
+
+Verify that the SDC and MDM nodes are reachable by performing a `ping` or using `traceroute` from the SDC node to the MDM node and vice versa. Network connectivity issues such as high latency or packet loss may cause the disconnection between SDC and MDM.
+
+2. Examine log files.
+
+Review the SDC and MDM log files to identify any error messages or warnings that can indicate the reason for the disconnection. Common log file locations are:
+
+ - SDC logs: `/opt/emc/scaleio/sdc/logs/sdc.log`
+ - MDM logs: `/opt/emc/scaleio/mdm/logs/mdm.log`
+
+3. Check the status of ScaleIO services.
+
+Verify that the ScaleIO services are running on both the SDC and MDM nodes. You can check the service status with the following commands:
+
+ - SDC service status: `sudo systemctl status scaleio-sdc`
+ - MDM service status: `sudo systemctl status scaleio-mdm`
+
+If any of the services are not running, start them and check the connection state again.
+
+4. Reconnect SDC to MDM.
+
+If the issue still persists after verifying the network connectivity and services' statuses, try to reconnect the SDC to MDM manually. Use the following command on the SDC node:
+
+ ```
+ sudo scli --reconnect_sdc --mdm_ip <MDM_IP_ADDRESS>
+ ```
+
+Replace `<MDM_IP_ADDRESS>` with the IP address of your MDM node.
+
+5. Contact support.
+
+If the disconnection issue persists after trying the above steps, consider contacting technical support for assistance.
+
+### Useful resources
+
+1. [ScaleIO Troubleshooting](https://www.dell.com/support/home/en-us/product-support/product/scaleio)