脚本一键部署ceph单节点集群(用于测试)

前提是先安装好ceph环境
打开虚拟机前先增加20G磁盘,一般第一次添加的磁盘在centos中会命名为/dev/sda3,如果不符合,自己改下↓

 #关闭selinux和iptables
 systemctl stop firewalld
 systemctl disable firewalld
 setenforce 0
 sed -i '/SELINUX/s/enforcing/disabled/' /etc/selinux/config
 setenforce 0
 #设置时间同步
 yum -y install ntp
systemctl enable ntpd
systemctl start ntpd
ntpdate -u cn.pool.ntp.org
hwclock --systohc
timedatectl set

你可能感兴趣的:(ceph部署)