新装centos设置

前端之家收集整理的这篇文章主要介绍了新装centos设置前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1)清空iptables

Centos6系列关闭防火墙方法

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

开机自动关闭防火墙:# chkconfigiptables off

@H_403_36@

Centos7系列关闭防火墙方法

关闭防火墙:# systemctl stop firewalld.service

开机自动关闭防火墙:# systemctl disable firewalld.service

@H_403_36@

2关闭selinux

查看selinux状态# getenforce

Selinux文件位置 /etc/selinux/config

enforcing改成desabled保存即可

wKioL1jU0QigKbb8AABHlTidu9A514.png

@H_403_36@

@H_403_36@

3)配置好静态IP

# vim /etc/sysconfig/network-scripts/ifcfg-eth0

wKioL1jU06vRchwqAAAggoKdtio650.png

@H_403_36@

4)配置主机和ip映射关系

# vim /etc/hosts

新增一行:公网ip 主机名域名 主机名

wKiom1jU23_xjZnTAAAZy-sH0J0314.png

@H_403_36@

5)修改主机名

Centos6系列:# vim /etc/sysconfig/network

NETWORKING=yes

HOSTNAME=主机名

NTPSERVERARGS=iburst

@H_403_36@

Centos7系列:#vim /etc/hostname

新增一行,主机名

@H_403_36@

重启系统即可生效

@H_403_36@

6)配置好yum源

yum存放位置:/etc/yum.repos.d/

备份本地yum源

# cp CentOS-Base.repo ./CentOS-Base.repo.bak

@H_403_36@

配置阿里yum源替换本地yum

Centos6系列

# wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo

Centos7系列

# wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

@H_403_36@安装扩展源epel:

# yum -y install epel-release

@H_403_36@

yum缓存清理:# yum clean all

生成yum缓存:# yum makecache

猜你在找的CentOS相关文章