宝剑锋从磨砺出,梅花香自苦寒来。这篇文章主要讲述CentOS7 最小化安装完配置相关的知识,希望能为你提供帮助。
防火墙
yum install -y net-tools
systemctl stop firewalld
systemctl disable firewalld.service
yum install -y iptables-services
systemctl restart iptables.service
#设置防火墙开机启动
systemctl enable iptables.service
vi /etc/selinux/config
关闭SELINUX
#注释掉下面两行
#SELINUX=enforcing
#SELINUXTYPE=targeted
#增加一行
SELINUX=disabled
setenforce 0
shutdown -r now
wget及yum源
yum install -y wget
#先进入源的目录
cd /etc/yum.repos.d
#备份一下官方源
mv CentOS-Base.repo CentOS-Base.repo.bak
#将阿里源文件下载下来
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
#重建源数据缓存
yum makecache
yum install -y vim-enhanced
固定IP地址
vi /etc/sysconfig/network-scripts/ifcfg-eth0
BOOTPROTO="static"
BROADCAST=192.168.0.255
IPADDR=12.168.0.33#如果设置网卡获得 ip地址的方式为静态指定,此字段就指定了网卡对应的ip地址
GATEWAY=192.168.0.1
NETMASK=255.255.255.0 #网卡对应的网络掩码
DNS1=192.168.0.1#DNS 配置
#重启网络
service network restart或/etc/init.d/network restart
【CentOS7 最小化安装完配置】
推荐阅读
- CentOS7 tcpdump安装与使用
- ZooKeeper学习笔记一 一致性协议
- #云原生征文# 在 Google Kubernetes Cluster 上使用 HANA Expression Database Service
- Ionic3 使用摄像头
- 创建Deployment后,无法创建Pod问题处理
- CentOS下 Nginx+PHP配置Session+Redis
- Netty学习笔记15 Netty Attribute使用
- CentOS7 防火墙
- WPF 新建项目与Application 类