1.ifconfig网络相关的命令
1. ifconfig 获得当前服务器的 网卡 和 ip地址的信息
2. ifconfig eth0 ip 用于设置网卡的临时ip
3. 永久的修改网卡的ip地址
vi /etc/sysconfig/network-script/ifcfg-eth0
DEVICE=eth0
TYPE=Ethernet
ONBOOT=yes
NM_CONTROLLED=yes
BOOTPROTO=static
IPADDR=192.168.184.10
NETMASK=255.255.255.0
GATEWAY=192.168.184.1
重启网络服务:
service network restart
4. ifconfig eth0 只看这个网卡的ip地址
5. ifconfig eth0 up|down 网卡激活/失效
2.网络安全相关的命令
1. 防火墙 (iptables)
主动关闭防火墙
service iptables stop|start|status #只能保证本次运行时 防火墙是关闭的
防止服务在从新启动时,被自动开启 #永久关闭服务
chkconfig iptables on|off
2. SElinux
redhat中的一个安全管理套件 关闭
vi /etc/selinux/config
SELINUX=disabled
3.集群相关命令
[用户@主机名 位置]身份
[root@localhost ~]#
1. 主机名
vi /etc/sysconfig/network
HOSTNAME=hadoop.baidu.com
2. 主机的域名解析
ip 与 域名 做对应关系
window:
C:\Windows\System32\drivers\etc\hosts
192.168.184.10 hadoop.baidu.com
linux:
vi /etc/hosts
192.168.184.10 hadoop.baidu.com
4.双网卡
1.
添加新的网络适配器 选择桥接
2.在编辑-->虚拟网络适配器中
3.增加新的网卡
1. 创建这个文件 /etc/sysconfig/network-script/ifcfg-eth1
2. 编辑这个文件
DEVICE=eth1
TYPE=Ethernet
ONBOOT=yes
NM_CONTROLLED=yes
BOOTPROTO=dhcp
3. service network restart
4. ping
5.搭建集群
1. 修改ip地址 eth0
vi /etc/sysconfig/network-scripts/ifcfg-eth0
2. 删除克隆之后的mac地址
rm -rf /etc/udev/rules.d/70-persistent-net.rules
3. 修改主机名 域名解析
vi /etc/hosts
4. scp
作用:用于跨主机传输数据
scp /etc/hosts root@192.168.184.10:/etc
scp -r # 删除目录
6.yum的镜像
163镜像
1. mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
2. 把下载好的文件CentOS6-Base-163.repo 上传到/etc/yum.repos.d目录中
3. yum clean all
yum makecache
阅读(1467) | 评论(0) | 转发(0) |