准备工作(初始化)

一、关闭防火墙:
        查看:systemctl status firewalld
        关闭:systemctl stop firewalld    //临时关闭
        开机不自启:systemctl disable firewalld --now  //永久关闭
        
二、关闭SELINUX:
    查看:getenforce
    临时关闭:setenforce 0
    永久关闭:[root@localhost ~]#sed -i 's/^SELINUX=.*/SELINUX=disabled/g' /etc/selinux/config
        或者
        [root@localhost ~]# vim /etc/selinux/config
        SELINUX=enforcing|disabled
三、网卡开机自启动:
    1、安装vim
        yum -y install vim
    2、修改网卡配置文件:
        2.1:vim /etc/sysconfig/network-scripts/ifcfg-ens33;
        2.2:将光标移动至最后一个字符上;
        2.3:输入键盘上的字母a;
        2.4:将ONBOOT=no这一行的no改为yes;
        2.5:输入键盘上的字母Esc;
        2.6:输入英文冒号:
        2.7:输入英文wq
        2.8:回车
    3、重启网卡
        systemctl restart network

四、修改主机名

[root@localhost ~]# hostnamectl set-hostname ***

五、配置阿里云yum源

 http://mirrors.aliyun.com

六、重启服务器

[root@localhost ~]# reboot

你可能感兴趣的:(linux,centos)