Gluster ubuntu安装

除了安装包外,其他操作与centos一致

环境

gluster版本9

安装服务端

安装 software-properties-common:

apt install -y software-properties-common

然后添加社区 GlusterFS PPA:

add-apt-repository -y ppa:gluster/glusterfs-9
apt update

可以搜索是否源加上gluster9版本

apt search gluster

 安装

apt install -y glusterfs-server

 查看状态,没有启动则手动启动

systemctl status glusterd
systemctl start glusterd

安装客户端

add-apt-repository -y ppa:gluster/glusterfs-9
apt update
apt install -y glusterfs-client glusterfs-common

其余操作和centos一样,参考Gluster安装_glusterd安装-CSDN博客

你可能感兴趣的:(ubuntu,linux,运维)