linux集群部署

	1、关闭防火墙    /etc/init.d/iptables stop

		开机不自启  chkconfig   iptables off

	2、关闭selinux    vi /etc/selinux/config    

		将 SELINUX=enforcing 改为  SELINUX=disabled

	3、设置每个节点的主机名    vi /etc/sysconfig/network

		HOSTNAME=node02

	4、配置hosts文件(主机名与IP的对应关系) vi /etc/hosts

		192.168.100.111         node01
		192.168.100.112         node02
		192.168.100.113         node03

	5、多节点同步

		scp     /etc/hosts       node02:/etc/

		scp     /etc/hosts       root@node02:/etc/

你可能感兴趣的:(linux,集群的部署)