linux下批量部署(pxe\kickstart实现及应用)
有时公司同时上线几十甚至上百台服务器,而且需要我们在短时间内完成系统安装,常规的办法由哪些?这样做有什么缺点?
PXE
是Preboot Execution Environment的缩写,预启动执行环境
PXE适用需要以下几点:客户端的网卡必须要支持PXE功能,并开机选择从网卡启动,进入
*PXE程序
*PXE服务器必须要提供至少含有DHCP以及TFTP的服务,DHCP服务提供客户端网络,并告知TFTP所在的位置
TFTP提供客户端boot loader 及kernel file 下载路径
PXE工作流程:
1.Client向PXE Server上的DHCP发送IP地址请求消息,返回Client的IP地址,同时将PXE环境下的boot loader文件Pxelinux.0的位置信息传送给Client
2.Client向PXE Srever上的TFTP请求PXElinux.0
3.Client执行接收到的pxelinux.0文件
4.Client向TFTP请求pxelinux.cfg文件(grub的配置文件)
5.Client 向TFTP发送linux内核请求信息
6.Client 向TFTP发送根文件请求信息
7.Client加载linux内核
8.Client通过nfs/ftp/http 下载系统安装文件进行安装
详细配置步骤:
1.关闭防火墙和SELinux
systemctl stop firewalld
setenforce 0
2.DHCP
#DHCP主要是提供客户端网络参数与TFTP的位置,以及boot loader的文件名
yum install dhcp -y
vi /etc/dhcp/dhcpd.conf
subnet 192.168.5.0 netmask 255.255.255.0 { #设置网段
option routers 192.168.5.2; #设置网关(查看route -n)
option subnet-mask 255.255.255.0; #设置子网掩码
option domain-name-servers 192.168.5.2; #设置dns服务器地址
range dynamic-bootp 192.168.5.200 192.168.5.205; #IP地址租用的范围
default-lease-time 21600; #默认租约时间
max-lease-time 43200; #最大租约时间
next-server 192.168.5.184; #tftp服务器地址
filename "pxelinux.0"; #tftp服务器根目录下面的文件名
}
systemctl start dhcpd
systemctl enable dhcpd
3.TFTP
#boot loader文件pxelinux.0以及内核相关的配置文件(目录pxelinux.cfg下)主要都是由TFTP来提供的!
yum install tftp-server xinetd -y
vim /etc/xinetd.d/tftp
disable = no #此项修改,其它不变;保存退出
systemctl restart xinetd
systemctl enable xinetd
4.PXE的bootloader和相关配置文件
#syslinux是一个功能强大的引导加载程序,而且兼容各种介质。更加确切地说:SYSLINUX是一个小型的Linux操作系统,它的目的是简化首次安装Linux的时间,并建立修护或其它特殊用途的启动盘
yum install syslinux -y
cd /var/lib/tftpboot
cp /usr/share/syslinux/pxelinux.0 .
cp /mnt/images/pxeboot/{vmlinuz,initrd.img} .
cp /mnt/isolinux/{vesamenu.c32,boot.msg} .
mkdir pxelinux.cfg
cp /mnt/isolinux/isolinux.cfg pxelinux.cfg/default
vi pxelinux.cfg/default #删除60行之后的,在文件末尾添加以下内容;也可自己编写
label linux
menu label ^Install CentOS 74
kernel vmlinuz
append initrd=initrd.img ks=http://192.168.5.184/config/ks.cfg biosdevname=0 net.ifnames=0
5.HTTP
#通过HTTP协议把光盘镜像内容传给客户端
yum install httpd -y
cp -rf /mnt/* /var/www/html/
mkdir -p /var/www/html/config #新建目录,把自定义的文件、脚本等放置于此
6.Kickstart配置文件
vi /var/www/html/config/ks.cfg
#platform=x86, AMD64 或 Intel EM64T
#version=
# Firewall configuration
firewall --disabled
# Install OS instead of upgrade
install
# Use network installation
url --url="http://服务器地址/"
#!!!
# Use CDROM installation media
repo --name="yum" --baseurl=http://服务器地址/
#!!!
# Root password
rootpw --iscrypted $1$mi4lP.ZY$j5UDGX34knfGuSYPwd82u/ #redhat用户密码
# openssl passwd -1
# Use graphical install graphical or text
text
# Run the Setup Agent on first boot
firstboot --disable
# System keyboard
keyboard us
# System language
lang en_US.UTF-8
# SELinux configuration
selinux --disabled
# Reboot after installation
reboot
# System timezone
timezone --isUtc Asia/Shanghai
# Network information
network --bootproto=dhcp --device=eth0 --noipv6 --activate
network --hostname=web
#!!!
# System bootloader configuration
bootloader --location=mbr
# Clear the Master Boot Record
zerombr
# Partition clearing information
clearpart --all --initlabel
#!!!
# Disk partitioning information #划分磁盘
part /boot --asprimary --fstype="ext4" --ondisk=sda --size=200
part swap --fstype="swap" --ondisk=sda --size=4096
part / --fstype="ext4" --ondisk=sda --size=20480
#!!!
%packages
@core
wget
%end
%post
#yum_client
cd /etc/yum.repos.d/
rm -rf *
wget http://服务器地址/config/client.repo
yum install httpd -y
cd /var/www/html
echo "hellow 123" >> /var/www/html/index.html
systemctl restart httpd
systemctl stop firewalld
setenforce 0
%end
%addon com_redhat_kdump --disable --reserve-mb='auto'
%end
7.测试(客户端启动方式应更改为PXE网络启动!)