文件系统XFS与Ext4
systemctl stop firewalld
#开放端口
firewall-cmd --zone=public --add-port=80/tcp --permanent
firewall-cmd --zone=public --add-port=10051/tcp --permanent
#更新防火墙规则
firewall-cmd --reload
systemctl restart firewalld.service
2.更改主机名
(centos6) vim /etc/sysconfig/network, 需要重启
(centos 7) 命令hostnamectl --static set-hostname cetnos201,/etc/hostname 将被自动更新,注销不需要重启。
#配置 Docker 加速器daocloud,需要docker版本1.8以上
curl -sSL https://get.daocloud.io/daotools/set_mirror.sh | sh -s http://38e3d745.m.daocloud.io
systemctl restart docker
#安装netstat 和 ifconfig
yum install net-tools
原文地址:http://blog.51cto.com/yanjiu/2128862