linux的基础配置命令
1、更换主机名:[root@db01 ~]# hostnamectl set-hostname db01
2、更改网卡名称:
a、cd /etc/sysconfig/network-scripts/
b、编辑文件: vi ifcfg-ens33
c、按一下i 修改为如下内容
d、 按一下esc 输入:wq 回车,同理将ifcfg-ens34中的NAME、DEVICE修改为eth1
e、修改文件名称 与内容对应 : mv ifcfg-ens33 ifcfg-eth0
f、第五步:修改内核参数 vi /etc/sysconfig/grub quiet 前加入 net.ifnames=0 biosdevname=0
g、第六步 更新参数 grub2-mkconfig -o /boot/grub2/grub.cfg
h、重启 reboot
3、关闭防火墙
[root@db02 ~]# systemctl stop firewalld
[root@db02 ~]# systemctl disable firewalld
4、修改提示符高亮颜色
[root@ZZ network-scripts]# vim ~/.bashrc
在文件末尾添加上
[root@ZZ network-scripts]# source ~/.bashrc # 应用
5、关闭selinux
a、[root@db01 mysql-5.6.40]# getenforce 此命令为查看selinux是否开启 如果是enforcing 则为开启状态
[root@db01 mysql-5.6.40]# setenforce 0 暂时关闭seliunx 虚拟机重启后优惠开启
b、[root@db01 mysql-5.6.40]# sed -i 's#SELINUX=enforcing#SELINUX=disabled#g' /etc/sysconfig/selinux
修改配置文件,关闭seliunx 重启后生效
二、更换yum源
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo