服务器基本环境配置:
1、安装虚拟机,centos7.9 操作系统;
2、网络配置;
3、机器名FQDN设置;
4、DNS解析设置,本地hosts设置;
5、配置yum源环境;
6、vim安装配置;
7、网络校时;
2、网络配置:
维护的机器比较多的时候,单独配置静态IP是很繁琐的,这里使用NAT,DHCP自动分配IP。
3、FQDN设置(重要)
在集群中配置FQDN,有助于进行区分主机身份。
server01 server01.lnmp.com
1)修改/etc/hosts文件:
192.168.17.107 server01 server01.lnmp.com
2)修改/etc/sysconfig/network
HOSTNAME=server01
或者:
hostnamectl set-hostname server01
关闭防火墙:
systemctl stop firewalld && systemctl disable firewalld
关闭SELINUX:
sed -i "s/SELINUX=enforcing/SELINUX=disabled/" /etc/selinux/config
yum源配置:
local.repo
校时服务:
服务器校时的原因:
1)因为计划任务执行,需要提供准时的时间;
2)服务器之间进行交互通信,主从、分布式集群,都要有时间点。需要有一致的时间。
yum install -y ntp
systemctl start ntpd
systemctl enable ntpd
还有一个yum操作,老师用的是local.repo。