Home Operation and Maintenance Linux Operation and Maintenance How to configure a highly available cluster file system on Linux

How to configure a highly available cluster file system on Linux

Jul 07, 2023 pm 01:18 PM
high availability cluster file system

How to configure a highly available cluster file system on Linux

Introduction:
In the computer field, high availability (high availability) is a technology that aims to improve the reliability and availability of the system. . In a cluster environment, a highly available file system is one of the important components to ensure continuous operation of the system. This article will introduce how to configure a highly available cluster file system on Linux and give corresponding code examples.

  1. Installing software packages
    First, make sure that the necessary software packages are installed on the system. In most Linux distributions, these packages can be installed using package management tools. The following are common software packages:
  • Pacemaker: Cluster management tool for managing the status and resources of the file system.
  • Corosync: Communication tool for building and maintaining cluster environments.
  • DRBD: Distributed replicated block device, used to implement disk mirroring.
  • GFS2 or OCFS2: used to provide a highly available cluster file system.

On Ubuntu, you can use the following command to install the package:

sudo apt-get install pacemaker corosync drbd8-utils gfs2-utils
  1. Configure the cluster environment
    First, you need to configure the cluster environment, including communication between nodes and resource management. The following is a simple configuration example with two nodes (node1 and node2):
  • Modify the /etc/hosts file and add the node’s IP address and host name so that the nodes can can access each other.
sudo nano /etc/hosts

Add the following content:

192.168.1.100    node1
192.168.1.101    node2
  • Configure Corosync communication.

Create Corosync configuration file.

sudo nano /etc/corosync/corosync.conf

Add the following:

totem {
    version: 2
    secauth: off
    cluster_name: mycluster
    transport: udpu
}

nodelist {
    node {
        ring0_addr: node1
        nodeid: 1
    }
    node {
        ring0_addr: node2
        nodeid: 2
    }
}

quorum {
    provider: corosync_votequorum
}

logging {
    to_syslog: yes
    to_logfile: yes
    logfile: /var/log/corosync.log
    debug: off
    timestamp: on
}
  • Enable Corosync and Pacemaker services.
sudo systemctl enable corosync
sudo systemctl enable pacemaker

Start the service.

sudo systemctl start corosync
sudo systemctl start pacemaker
  1. Configuring DRBD
    DRBD is a distributed replicated block device that is used to implement disk mirroring between multiple nodes. The following is an example configuration of DRBD with two nodes (node1 and node2) and using /dev/sdb as the shared block device:
  • Configuring DRBD.

Create DRBD configuration file.

sudo nano /etc/drbd.d/myresource.res

Add the following:

resource myresource {
    protocol C;

    on node1 {
        device /dev/drbd0;
        disk   /dev/sdb;
        address 192.168.1.100:7789;
        meta-disk internal;
    }

    on node2 {
        device /dev/drbd0;
        disk   /dev/sdb;
        address 192.168.1.101:7789;
        meta-disk internal;
    }

    net {
        allow-two-primaries;
    }

    startup {
        wfc-timeout     15;
        degr-wfc-timeout 60;
    }

    syncer {
        rate    100M;
        al-extents 257;
    }

    on-node-upgraded {
        # promote node1 to primary after a successful upgrade
        if [ "$(cat /proc/sys/kernel/osrelease)" != "$TW_AFTER_MAJOR.$TW_AFTER_MINOR.$TW_AFTER_UP" ] && 
           [ "$(cat /proc/mounts | grep $DRBD_DEVICE)" = "" ] ; then
            /usr/bin/logger "DRBD on-node-upgraded handler: Promoting to primary after upgrade.";
            /usr/sbin/drbdsetup $DRBD_DEVICE primary;
        fi;
    }
}
  • Initialize DRBD.
sudo drbdadm create-md myresource

Start DRBD.

sudo systemctl start drbd
  1. Configuring the cluster file system
    There are a variety of cluster file systems to choose from, such as GFS2 and OCFS2. The following is a configuration example using GFS2 as an example.
  • Create a file system.
sudo mkfs.gfs2 -p lock_gulmd -t mycluster:myresource /dev/drbd0
  • Mount the file system.
sudo mkdir /mnt/mycluster
sudo mount -t gfs2 /dev/drbd0 /mnt/mycluster
  • Add file system resources.
sudo pcs resource create myresource Filesystem device="/dev/drbd0" directory="/mnt/mycluster" fstype="gfs2"  op start  timeout="60s"  op stop  timeout="60s"  op monitor interval="10s"  op monitor timeout="20s"  op monitor start-delay="5s"  op monitor stop-delay="0s"
  • Enable and start resources.
sudo pcs constraint order myresource-clone then start myresource
sudo pcs constraint colocation add myresource with myresource-clone
  1. Test high availability
    After completing the above configuration, you can test high availability. The following are the steps for testing:
  • Stop the master node.
sudo pcs cluster stop node1
  • Check if the file system is running properly on the standby node.
sudo mount | grep "/mnt/mycluster"

The output should be the address and mount point of the standby node.

  • Restore the master node.
sudo pcs cluster start node1
  • Check whether the file system is restored to the primary node.
sudo mount | grep "/mnt/mycluster"

The output should be the address and mount point of the master node.

Conclusion:
Configuring a highly available cluster file system can improve the reliability and availability of the system. This article describes how to configure a highly available cluster file system on Linux and provides corresponding code examples. Readers can configure and adjust appropriately according to their own needs to achieve higher availability.

The above is the detailed content of How to configure a highly available cluster file system on Linux. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undress AI Tool

Undress AI Tool

Undress images for free

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

PHP Tutorial
1488
72
How to troubleshoot Docker issues How to troubleshoot Docker issues Jul 07, 2025 am 12:29 AM

When encountering Docker problems, you should first locate the problem, which is problems such as image construction, container operation or network configuration, and then follow the steps to check. 1. Check the container log (dockerlogs or docker-composelogs) to obtain error information; 2. Check the container status (dockerps) and resource usage (dockerstats) to determine whether there is an exception due to insufficient memory or port problems; 3. Enter the inside of the container (dockerexec) to verify the path, permissions and dependencies; 4. Review whether there are configuration errors in the Dockerfile and compose files, such as environment variable spelling or volume mount path problems, and recommend that cleanbuild avoid cache dryness

How to manage groups on Linux How to manage groups on Linux Jul 06, 2025 am 12:02 AM

To manage Linux user groups, you need to master the operation of viewing, creating, deleting, modifying, and user attribute adjustment. To view user group information, you can use cat/etc/group or getentgroup, use groups [username] or id [username] to view the group to which the user belongs; use groupadd to create a group, and use groupdel to specify the GID; use groupdel to delete empty groups; use usermod-aG to add users to the group, and use usermod-g to modify the main group; use usermod-g to remove users from the group by editing /etc/group or using the vigr command; use groupmod-n (change name) or groupmod-g (change GID) to modify group properties, and remember to update the permissions of relevant files.

How to install Docker on Linux How to install Docker on Linux Jul 09, 2025 am 12:09 AM

The steps to install Docker include updating the system and installing dependencies, adding GPG keys and repositories, installing the Docker engine, configuring user permissions, and testing the run. 1. First execute sudoaptupdate and sudoaptupgrade to update the system; 2. Install apt-transport-https, ca-certificates and other dependency packages; 3. Add the official GPG key and configure the warehouse source; 4. Run sudoaptinstall to install docker-ce, docker-ce-cli and containerd.io; 5. Add the user to the docker group to avoid using sudo; 6. Finally, dock

How to optimize kernel parameters sysctl How to optimize kernel parameters sysctl Jul 08, 2025 am 12:25 AM

Adjusting kernel parameters (sysctl) can effectively optimize system performance, improve network throughput, and enhance security. 1. Network connection: Turn on net.ipv4.tcp_tw_reuse to reuse TIME-WAIT connection to avoid enabling tcp_tw_recycle in NAT environment; appropriately lower net.ipv4.tcp_fin_timeout to 15 to 30 seconds to speed up resource release; adjust net.core.somaxconn and net.ipv4.tcp_max_syn_backlog according to the load to cope with the problem of full connection queue. 2. Memory management: reduce vm.swappiness to about 10 to reduce

How to restart a service using systemctl How to restart a service using systemctl Jul 12, 2025 am 12:38 AM

To restart the service managed by systemctl in Linux, 1. First use the systemctlstatus service name to check the status and confirm whether it is necessary to restart; 2. Use the sudosystemctlrestart service name command to restart the service, and ensure that there is administrator privileges; 3. If the restart fails, you can check whether the service name is correct, whether the configuration file is wrong, or whether the service is installed successfully; 4. Further troubleshooting can be solved by viewing the log journalctl-u service name, stopping and starting the service first, or trying to reload the configuration.

How to process command line arguments in bash How to process command line arguments in bash Jul 13, 2025 am 12:02 AM

Bash scripts handle command line parameters through special variables. Use $1, $2, etc. to get positional parameters, where $0 represents the script name; iterates through "$@" or "$*", the former retains space separation, and the latter is merged into a single string; use getopts to parse options with parameters (such as -a, -b:value), where the option is added to indicate the parameter value; at the same time, pay attention to referring to variables, using shift to move the parameter list, and obtaining the total number of parameters through $#.

How to use Chef for system management How to use Chef for system management Jul 05, 2025 am 12:02 AM

Managing server configuration is actually quite annoying, especially when there are more machines, it becomes unrealistic to manually modify configurations one by one. Chef is a tool that can help you handle these things automatically. With it, you can manage the state of different servers uniformly and make sure they all run the way you want. The key point is: write code to manage configuration, rather than typing commands by hand. 1. Don’t skip the installation and basic settings. The first step is to install the environment. You need to deploy ChefServer on a server, then install ChefClient on the managed node and complete the registration. This process is a bit like connecting a management center with its "little brother". The installation steps are roughly as follows: Install the ChefServer unit on the main control server

How to use RAID configurations software raid How to use RAID configurations software raid Jul 08, 2025 am 12:07 AM

Software RAID can realize disk arrays through the operating system's own tools to improve performance or fault tolerance. 1. Use mdadm tools to create and manage RAID arrays under Linux, including installing, viewing hard disks, creating arrays, formatting, mounting and configuration saving; 2. Windows can realize the basic functions of RAID0 and RAID1 through "disk management", such as creating new strip volumes or mirrored volumes and formatting; 3. Notes include adding hot spare disks, monitoring the status regularly, high data recovery risks require backup, and the performance impacts that may be caused by certain levels.

See all articles