ceph搭建ubuntu20.04案例

三台机器

准备工作

安装依赖

sudo apt-get install openssh-server
sudo apt install vim 
apt install net-tools

设置root密码

##  设置root密码 所有操作在root下进行
sudo passwd root
su
passwd root 
vim /etc/ssh/sshd_config PermitRootLogin yes 设置为yes 
sudo systemctl restart sshd

修改静态IP

假如会自动缩进
在/etc/vim中,修改vimrc,添加 set pastetoggle= 在黏贴代码之前,进入insert模式,按F9,就可以关闭自动缩进。



cd /etc/netplan/
vim 01-network-manager-all.yaml
# 设置内容
network:
    ethernets:
        ens33:
            dhcp4: no
            addresses: [192.168.1.115/24]
            optional: true
            gateway4: 192.168.1.1
            nameservers:
                addresses: [223.5.5.5,223.6.6.6]
    version: 2



sudo netplan apply
重启生效  否则IP会一直跳    可在修改完host再重启

修改主机名

分别去不同的机器设置
机器一
sudo hostnamectl set-hostname ceph_node1
机器二
sudo hostnamectl set-hostname ceph_node2
机器三
sudo hostnamectl set-hostname ceph_node3
需要重启 可以修改完host再重启

修改host

所有机器都要操作
vim /etc/hosts 
	192.168.1.11 ceph_node1
	192.168.1.12 ceph_node2
	192.168.1.13 ceph_node3
	需要重启

关闭防火墙 SELinux [ubuntu貌似默认关闭 可不管]

更新源 【貌似没更新也完成了 三台机器要保持源一致】

备份源
sudo cp /etc/apt/sources.list /etc/apt/sources.list.bak
sudo vim /etc/apt/sources.list
# 阿里源【但是貌似安装ceph失败】 
deb http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse
deb http:

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