写作不易,转载请注明出处:
http://blog.csdn.net/wbin233/article/details/81156068 ,谢谢。
环境
- 机器系统版本:debian9.5 【
more /etc/debian_version
】 - gluster版本:glusterfs 4.1.1【
glusterfs --version
】 - VMware® Workstation 14 Pro: 14.1.1 build-7528167
- 服务端:fk1 192.168.48.160
- 服务端:fk2 192.168.48.161
- 客户端:fk3 192.168.48.162
- 网关:192.168.48.2
- 掩码:255.255.255.0
查看ip
ip addr show
修改ip:
vi /etc/network/interface
auto eth0 #开机自动连接网络
iface lo inet loopback
allow-hotplug eth0
iface eth0 inet static #static表示使用固定ip,dhcp表述使用动态ip
address 192.168.48.160 #设置ip地址
netmask 255.255.255.0 #设置子网掩码
gateway 192.168.48.2 #设置网关
broadcase 192.168.48.255#设置广播地址(也可以不写)service networking restart
ifup eth0
(具体看实际名)
修改host名
vi /etc/hostname
添加host与ip的映射
对所有机器:
vi /etc/hosts
127.0.0.1 localhost
127.0.1.1 fk1
192.168.48.160 fk1
192.168.48.161 fk2
192.168.48.162 fk3