CentOS7下部署Cobbler实现PXE+Kickstart自动化安装

简介: CentOS7下部署Cobbler实现PXE+Kickstart自动化安装

CentOS7下部署Cobbler实现PXE+Kickstart自动化安装的操作步骤


1、使用腾讯软件源站点https://mirrors.cloud.tencent.com/640.jpg

下载epel镜像源配置文件

640.png

wget -O /etc/yum.repos.d/epel.repo http://mirrors.cloud.tencent.com/repo/epel-7.repo

640.png

2、 yum install cobbler cobbler-web

640.png

3、安装cobbler会用到的一些组件包


yum install dhcp tftp-server pykickstart httpd rsync xinetd


640.png

4、启动cobblerd和httpd服务

systemctl start cobblerd.service
systemctl start httpd.service

cobbler check检查配置


640.png


5、根据上面cobbler check检查配置给出的提示,一一进行配置

1)cd /etc/cobbler/
cp settings settings_default_bak

image.png


2)278行net_server:127.0.0.1改成192.168.31.200

640.png

390行server: 127.0.0.1改成192.168.31.200

640.png

3)vi /etc/xinetd.d/tftp

改disable=yes为disable= no

640.png

然后

systemctl enable xinetd  
systemctl enable tftp
systemctl start xinetd  
systemctl start tftp

image.png


4)cobbler get-loaders


下载操作系统引导文件

640.png

5)启动rsyncd服务,并设为开机自启动

systemctl enable rsyncd
systemctl start rsyncd

640.png

6)vi /etc/cobbler/dhcp.template

640.png

7)vi /etc/cobbler/settings  


manage_dhcp: 0改为manage_dhcp: 1

640.png

8)重启服务,同步配置文件

systemctl restart cobblerd
cobbler sync

640.png

9)cobbler check检查配置


640.png640.png

10)openssl passwd -1 -salt 'root' 'admin@2020'

vi /etc/cobbler/settings

default_password_crypted: "$1$root$afc2RZysD6SOx07LLBnwB0"

640.png


这时再重启cobblerd服务

systemctl restart cobblerd

cobbler sync同步配置


640.png

cobbler check 这时只有一个无关紧要的提示项

640.png


6、配置基本完成后,挂载CentOS7.7.1908版本的官方ISO镜像包

640.png

7、导入镜像


1)cobbler import --path=/mnt/cdrom --name=CentOS_7.7.1908

640.png


2)cobbler list

640.png

3)systemctl restart cobblerd.service  

cobbler sync

640.jpg


8、验证Web是否可以正常访问


http://192.168.31.200/cobbler/ks_mirror/

640.png

9、新建一台虚拟机,测试PXE安装

640.png

640.png

640.png


10、关于定制Kickstart实现一键安装的操作步骤

1)cd /var/lib/cobbler/kickstarts/  
vi CentOS7.ks

关于ks文件可以参考之前的文章


CentOS系统下PXE服务器的搭建与部署


PXE+Kickstart实现无人值守自动化安装CentOS系统


CentOS6.9下制作一键安装的ISO系统镜像


kickstart配置文件如下,


#platform=x86, AMD64, or Intel EM64T
#version=DEVEL
# Install OS instead of upgrade
install
# Keyboard layouts
keyboard 'us'
# Root password
rootpw --iscrypted $1$.V2f7Wsz$0EdykaW/HEQoy./Zs3Tfu.
# System language
lang en_US
# System authorization information
auth  --useshadow  --passalgo=sha512
# Use network installation 
url --url="http://192.168.31.200/cobbler/ks_mirror/CentOS_7.7.1908"
# Use graphical install
graphical
# SELinux configuration
selinux --disabled
# Do not configure the X Window System
skipx
# Firewall configuration
firewall --disabled
# Network information
network  --bootproto=dhcp --device=ens33 --onboot=on
# Reboot after installation
reboot
# System timezone
timezone Asia/Shanghai --isUtc
# System bootloader configuration
bootloader --location=mbr
# Clear the Master Boot Record
zerombr
# Partition clearing information
clearpart --all --initlabel
# Disk partitioning information
part /boot --fstype=ext4 --asprimary --size=1024
part / --fstype=ext4 --asprimary --size=20480
part swap --asprimary --size=16384
part pv.008006 --grow --size=200
volgroup vg_centos --pesize=4096 pv.008006
logvol /opt --fstype=ext4 --name=lv_opt --vgname=vg_centos --grow --size=200
%packages
@^infrastructure-server-environment
@base
@core
@debugging
@development
@file-server
@ftp-server
@ha
chrony
kexec-tools
%end

640.png

关于profile默认使用的ks是/var/lib/cobbler/kickstarts/sample_end.ks


640.png

使用cobbler profile edit 进行编辑

cobbler profile edit --name=CentOS_7.7.1908-x86_64 --kickstart=/var/lib/cobbler/kickstarts/CentOS7.ks

640.png

3)

mount -t iso9660 /CentOS_ISO/CentOS-7-x86_64-DVD-1908.iso /temp_cdrom/
 cd /temp_cdrom/
cp -r * /mnt/cdrom/

640.png

4)先删除前面的cobbler profile 和distro


640.png

5)cobbler import --path=/mnt/cdrom --name=CentOS_7.7.1908


重新导入镜像并修改profile

640.png


6)重新启动cobblerd服务,并同步配置

systemctl restart cobblerd.service
cobbler sync

640.jpg

7)测试一键PXE+Kickstart自动安装,如下图所示全程无需操作可以直接实现一键安装

640.jpg


本次实验实现过程参考如下文章完成


1)《Linux就该这么学》公众号:实用帖:搭建Cobbler无人值守安装服务器

2)https://www.cnblogs.com/zhangxingeng/p/9702625.html

相关文章
|
14天前
|
SQL 存储 Linux
从配置源到数据库初始化一步步教你在CentOS 7.9上安装SQL Server 2019
【11月更文挑战第8天】本文介绍了在 CentOS 7.9 上安装 SQL Server 2019 的详细步骤,包括系统准备、配置安装源、安装 SQL Server 软件包、运行安装程序、初始化数据库以及配置远程连接。通过这些步骤,您可以顺利地在 CentOS 系统上部署和使用 SQL Server 2019。
|
15天前
|
SQL 存储 Linux
从配置源到数据库初始化一步步教你在CentOS 7.9上安装SQL Server 2019
【11月更文挑战第7天】本文介绍了在 CentOS 7.9 上安装 SQL Server 2019 的详细步骤,包括系统要求检查与准备、配置安装源、安装 SQL Server 2019、配置 SQL Server 以及数据库初始化(可选)。通过这些步骤,你可以成功安装并初步配置 SQL Server 2019,进行简单的数据库操作。
|
22天前
|
关系型数据库 MySQL Linux
在 CentOS 7 中通过编译源码方式安装 MySQL 数据库的详细步骤,并与使用 RPM 包安装进行了对比
本文介绍了在 CentOS 7 中通过编译源码方式安装 MySQL 数据库的详细步骤,并与使用 RPM 包安装进行了对比。通过具体案例,读者可以了解如何准备环境、下载源码、编译安装、配置服务及登录 MySQL。编译源码安装虽然复杂,但提供了更高的定制性和灵活性,适用于需要高度定制的场景。
63 3
|
23天前
|
关系型数据库 MySQL Linux
在 CentOS 7 中通过编译源码安装 MySQL 数据库的详细步骤,并与使用 RPM 包安装进行了对比。
本文介绍了在 CentOS 7 中通过编译源码安装 MySQL 数据库的详细步骤,并与使用 RPM 包安装进行了对比。内容涵盖准备工作、下载源码、编译安装、配置服务、登录设置及实践心得,帮助读者根据需求选择最适合的安装方法。
42 2
|
11天前
|
存储 安全 Linux
VMware安装CentOS7
【11月更文挑战第11天】本文详细介绍了在 VMware 中安装 CentOS 7 的步骤,包括准备工作、创建虚拟机、配置虚拟机硬件和安装 CentOS 7。具体步骤涵盖下载 CentOS 7 镜像文件、安装 VMware 软件、创建和配置虚拟机硬件、启动虚拟机并进行安装设置,最终完成 CentOS 7 的安装。在安装过程中,需注意合理设置磁盘分区、软件选择和网络配置,以确保系统的性能和功能满足需求。
|
Linux 网络安全 开发工具
centos7部署l2tp ipsec
1、查询操作系统版本 #cat /etc/redhat-release CentOS Linux release 7.5.1804 (Core) 2、查询系统是否支持ppp,返回yes代表通过。 #modprobe ppp-compress-18 && echo yes 3、查询系统是否开启了tun,返回File descriptor in bad state代表通过。
8022 0
|
1月前
|
存储 安全 Linux
CentOS安装SeaweedFS
通过上述步骤,您应该能够在CentOS系统上成功安装并启动SeaweedFS。记住,根据实际部署规模和需求,可能还需要进一步调整配置参数和优化网络布局。SeaweedFS的灵活性和扩展性意味着随着使用深入,您可能需要探索更多高级配置和管理策略。
107 64
|
1月前
|
存储 安全 Linux
CentOS安装SeaweedFS
通过上述步骤,您应该能够在CentOS系统上成功安装并启动SeaweedFS。记住,根据实际部署规模和需求,可能还需要进一步调整配置参数和优化网络布局。SeaweedFS的灵活性和扩展性意味着随着使用深入,您可能需要探索更多高级配置和管理策略。
115 61
|
1月前
|
Linux 网络安全 数据安全/隐私保护
Linux系统之Centos7安装cockpit图形管理界面
【10月更文挑战第12天】Linux系统之Centos7安装cockpit图形管理界面
91 1
Linux系统之Centos7安装cockpit图形管理界面
|
1月前
|
NoSQL 数据可视化 Linux
redis学习四、可视化操作工具链接 centos redis,付费Redis Desktop Manager和免费Another Redis DeskTop Manager下载、安装
本文介绍了Redis的两个可视化管理工具:付费的Redis Desktop Manager和免费的Another Redis DeskTop Manager,包括它们的下载、安装和使用方法,以及在使用Another Redis DeskTop Manager连接Redis时可能遇到的问题和解决方案。
126 1
redis学习四、可视化操作工具链接 centos redis,付费Redis Desktop Manager和免费Another Redis DeskTop Manager下载、安装
下一篇
无影云桌面