Close Menu
DPC Virtual Tips
    Read More

    How to Investigate TCP Retransmissions on Linux

    August 11, 2026

    Slurm Node Is DRAINED: How to Find the Exact Reason

    August 10, 2026

    Why Is My Slurm Job Pending? How to Decode Every Common Reason

    August 9, 2026
    • Home
    • About Us
    • Contact
    • Cookie Policy
    • Comment Policy
    • Privacy Policy
    • Terms of Use
    • Disclaimer
    Tuesday, August 11
    DPC Virtual Tips
    • Home
    • Operating Systems
    • PowerFlex
    • HPC
    • Virtualization
    • About the Author
    • About Us
    • Contact
    DPC Virtual Tips
    Home » How to Switch the MDM Cluster Mode
    PowerFlex

    How to Switch the MDM Cluster Mode

    DaniloBy DaniloFebruary 26, 2025Updated:July 31, 2026No Comments3 Mins Read
    Facebook Twitter Pinterest LinkedIn Tumblr Email
    PowerFlex MDM cluster mode
    Share
    Facebook Twitter LinkedIn Pinterest Email

    How to Switch the MDM Cluster Mode shows how to switch from a 3_node PowerFlex MDM cluster to a 5_node MDM cluster. We are running the PowerFlex 4.5.2!

    Currently, our MDM cluster has three nodes, as we can see below:

    scli --query_cluster

    Our goal here is to add two more nodes: pfmp-sds-04 and pfmp-sds-05.

    Both nodes (pfmp-sds-04 and pfmp-sds-05) already have the necessary rpm packages installed:

    pfmp-sds-04:~ # rpm -qa | grep -i EMC
    EMC-ScaleIO-lia-4.5-2100.105.sles15.4.x86_64
    EMC-ScaleIO-activemq-5.18.3-68.noarch
    EMC-ScaleIO-sds-4.5-2100.105.sles15.4.x86_64
    EMC-ScaleIO-mdm-4.5-2100.105.sles15.4.x86_64
    
    pfmp-sds-05:~ # rpm -qa | grep -i EMC
    EMC-ScaleIO-lia-4.5-2100.105.sles15.4.x86_64
    EMC-ScaleIO-activemq-5.18.3-68.noarch
    EMC-ScaleIO-sds-4.5-2100.105.sles15.4.x86_64
    EMC-ScaleIO-mdm-4.5-2100.105.sles15.4.x86_64

    Adding Standby MDM Nodes

    Since our MDM cluster is a three-node cluster (3_node), we need to add both additional MDM nodes first.

    The following command will add the node “pfmp-sds-04” with the “manager” role. The node will be added as a standby node but with the “manager” role:

    scli --add_standby_mdm --new_mdm_ip 192.168.155.74,192.168.156.74 --mdm_role manager --new_mdm_management_ip 192.168.255.74 --new_mdm_virtual_ip_interface eth1,eth2

    After executing the command, we had an error:

    “Error: MDM failed command. Status: MDM role is not a Secondary but a Tie-Breaker”

    In this case, the error means that the MDM node cannot be a manager (Secondary) node.
    So, to fix this error, we need to access the node to be added (pfmp-sds-04) and execute the following steps:

    1. Edit the file “/opt/emc/scaleio/mdm/cfg/conf.txt” and change the following line:

    FROM:
    actor_role_is_manager=0

    TO:
    actor_role_is_manager=1

    2. Delete and recreate the MDM service:

    /opt/emc/scaleio/mdm/bin/delete_service.sh
    /opt/emc/scaleio/mdm/bin/create_service.sh

    3. Check the MDM service status – it must be running:

    systemctl status mdm

    Afterward, try to add the manager node again:

    scli --add_standby_mdm --new_mdm_ip 192.168.155.74,192.168.156.74 --mdm_role manager --new_mdm_management_ip 192.168.255.74 --new_mdm_virtual_ip_interface eth1,eth2 --new_mdm_name pfmp-sds-04 --force_clean --i_am_sure

    As shown, the node has been added successfully with the manager role:

    Checking the cluster, we can now see the added node in the Standby MDM section:

    scli --query_cluster

    The next node will be added with the “Tie-Breaker” role:

    scli --add_standby_mdm --new_mdm_ip 192.168.155.75,192.168.156.75 --mdm_role tb --new_mdm_management_ip 192.168.255.75 --new_mdm_name pfmp-sds-05 --force_clean --i_am_sure

    Switching the MDM Cluster Node to 5_node

    To switch our MDM cluster from 3_node to 5_node, we can use the following command:

    scli --switch_cluster_mode --cluster_mode 5_node --add_secondary_mdm_name pfmp-sds-04 --add_tb_name pfmp-sds-05

    As shown, the switchover process has been executed successfully. Now, our MDM cluster is a five-node cluster:

    This change cannot be replicated in the PowerFlex Manager UI immediately. On the Resources page, we continue to see a three-node cluster:

    To fix it immediately, we can run the inventory for the PowerFlex System resource, as we can see in the following pictures:

    That’s it 🙂

    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email
    Previous ArticleUsing IOmeter on Windows
    Next Article An Introduction to PowerFlex REST API Operations
    Danilo

    Infrastructure Engineer with experience in Virtualization, Linux, Windows Server and learning automation using Python. DPC Virtual Tips was created to share practical tutorials, lab experiences and troubleshooting guides focused on enterprise infrastructure technologies.

    Related Posts

    An Introduction to PowerFlex REST API Operations

    February 27, 2025

    Shutting Down the PowerFlex Manager Cluster

    February 17, 2025

    Creating an SMB File Server with PowerFlex

    February 11, 2025

    Comments are closed.

    Search
    Categories
    • HPC (10)
    • Operating Systems (83)
    • PowerFlex (22)
    • Virtualization (129)
    Read More
    Operating Systems

    How to Investigate TCP Retransmissions on Linux

    By DaniloAugust 11, 20260
    HPC

    Slurm Node Is DRAINED: How to Find the Exact Reason

    By DaniloAugust 10, 20260
    HPC

    Why Is My Slurm Job Pending? How to Decode Every Common Reason

    By DaniloAugust 9, 20260
    Operating Systems

    Linux Process Resource Usage: How to Find Heavy Processes

    By DaniloAugust 6, 20260
    HPC

    Lustre Filesystem Commands: A Practical Admin Guide

    By DaniloAugust 5, 20260
    Latest Posts

    How to Investigate TCP Retransmissions on Linux

    August 11, 2026

    Slurm Node Is DRAINED: How to Find the Exact Reason

    August 10, 2026

    Why Is My Slurm Job Pending? How to Decode Every Common Reason

    August 9, 2026
    Images from Gallery
    hpc main commands
    linux commands
    install rock linux
    lustre fs
    shell scripting
    vSAN Trace Files
    Categories
    • HPC
    • Operating Systems
    • PowerFlex
    • Virtualization
    • Home
    • About Us
    • Contact
    • Cookie Policy
    • Comment Policy
    • Privacy Policy
    • Terms of Use
    • Disclaimer
    Copyright © 2026, DPC Virtual Tips. All rights reserved.

    Type above and press Enter to search. Press Esc to cancel.

    We use cookies to ensure your best experience on our website. If you continue using our website, we'll assume you agree to our cookie policy