采用的系统配置:
centos7.6,腾讯云服务器2核4G
1.安装国内yum源
1.1进入yum配置目录
cd /etc/yum.repos.d/
1.2yum安装vim、wget
yum install -y vim wget
1.3备份云服务器原来的yum源
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
1.4下载阿里云yum源
wget -O /etc/yum.repos.d/CentOS-Base.repo https://mirrors.aliyun.com/repo/Centos-7.repo
注意:因为使用的系统是7.6版本的,所以要下载的是阿里云的Centos-7.repo
1.5清除yum原来的缓存
yum clean all
1.6加载安装好的阿里云的yum源
yum makecache
2.firewalld清理工作,防止后面流量的流入流出出现问题
systemctl stop firewalld
systemctl disable firewalld
查看清理的情况
systemctl status direwalld
3.selinux清理工作
临时关闭:setenforce 0
永久关闭:
vim /etc/selinux/config
将SELINUX=enforcing改为SELINUX=disabled(在云服务器上自动关闭的)
注意:在使用了永久关闭的方法后,最好还是运行一下临时关闭的命令,就能直接生效,不必重启机器
4.给主机修改名称
hostnamectl set-hostname 123(123为你所想修改的名字)
bash
bash是重新开启一个linux界面(相当于改名立即生效)