调整网络情况
ip地址需要与ceph集群在同一内网内
使用命令如下:
ifconfig -a #查看网卡情况
使用命令编辑网络配置
vi /etc/sysconfig/network-scripts/ifcfg-eth0
输入内容格式参考如下,ip地址需要与ceph集群在同一内网内:
DEVICE=eth1
HWADDR=00:0C:29:66:6B:7C
TYPE=Ethernet
UUID=af4a45e3-36eb-4bae-a2ec-5d35a988a4ae
ONBOOT=yes
NM_CONTROLLED=yes
BOOTPROTO=static
IPADDR=192.168.199.84
NETMASK=255.255.255.0
GATEWAY=192.168.199.1
esc输入:wq回车保存退出
重启网络使新配置生效
/etc/init.d/network restart
新增用户
一般在服务器我们都不直接使用root来进行操作,所以最好增加一个有sudo权限的其他用户名,例如我这里增加用户zzq。
使用命令如下:
adduser zzq
passwd zzq
输入密码
增加ssh权限
使用命令编辑配置文件
vi /etc/ssh/sshd_config
在最后输入
AllowUsers root@192.168.199.84 zzq
AllowUsers root@192.168.199.84 root
esc输入:wq回车保存退出
增加sudo权限
使用命令进入sudo配置文件
visudo
在root ALL=(ALL) ALL后输入
zzq ALL=(ALL) ALL
esc输入:wq回车保存退出
磁盘空间准备
首先要准备好非系统盘的磁盘空间,磁盘分区可参考:
VMware虚拟机添加新硬盘以及对磁盘进行分区挂载
使用命令查看磁盘情况:
sudo df -h
sudo fdisk -l
关闭防火墙
centOS 7.0版本
sudo systemctl stop firewalld.service #停止firewall
sudo systemctl disable firewalld.service #禁止firewall开机启动
sudo firewall-cmd --state #查看防火墙状态
centOS 6.0版本
sudo service iptables stop #停止firewall
sudo chkconfig iptables off #禁止firewall开机启动
sudo service iptables status #查看防火墙状态
修改同步时区
centOS7
sudo cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
sudo yum -y install ntp
sudo systemctl enable ntpd
sudo systemctl start ntpd
sudo ntpstat
CentOS6
sudo cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
sudo yum -y install ntp
sudo /etc/init.d/ntpd stop
sudo /etc/init.d/ntpd start
sudo ntpstat |