Centos7常见系统初始化配置记录

这里写目录标题

Centos7常见系统初始化配置记录

1.修改yum源

1.1先备份原来的配置文件

cp -a /etc/yum.repos.d/CentOS-Base.repo/etc/yum.repos.d/CentOS-Base.repo.bak

1.2修改CentOS-Base.repo文件,取消baseurl开头的行的注释,并增加mirrorlist开头的行的注释。将文件中的http://mirror.centos.org替换成https://repo.huaweicloud.com,可以参考如下命令:

sed -i "s/#baseurl/baseurl/g" /etc/yum.repos.d/CentOS-Base.repo
sed -i "s/mirrorlist=http/#mirrorlist=http/g" /etc/yum.repos.d/CentOS-Base.repo
sed -i "s@http://mirror.centos.org@https://repo.huaweicloud.com@g" /etc/yum.repos.d/CentOS-Base.repo

1.3执行yum clean all清除原有yum缓存。
1.4执行yum makecache(刷新缓存)或者yum repolist all(查看所有配置可以使用的文件,会自动刷新缓存)。

参考链接: 华为开源镜像站

2.关闭防火墙

2.1 禁用防火墙

systemctl disable firewalld

2.2 禁用SELinux

sed -i 's/SELINUX=enforcing/SELINUX=disabled/'/etc/selinux/config

查看SELinux状态getenforce

3.设置提示符格式

echo 'PS1="\[\e[1;32m\][\t \[\e[1;33m\]\u\[\e[35m\]@\h\[\e[1;31m\] \w\[\e[1;32m\]]\[\e[0m\]\\$"' > /etc/profile.d/env.sh

Centos7常见系统初始化配置记录

上一篇:Shell 脚本一键部署—— Redis 数据库


下一篇:centos7安装k8s的kubectl、Kubelet、kubeadm等工具