Cobbler自动部署装机
Cobbler自动部署装机
对其进行一个简单的概述
Cobbler是一个使用Python开发的开源项目,通过部署系统所涉及的所有服务集中在一起,来提供一个全自动批量快速建立Linux系统的网络安装环境,Cobbler最初支持Fedora、Redhat和衍生版(如centos和scientific Linux),现在还支持Debian、Ubuntu、SUSE以及FreeBSD、ESXI等
Cobbler提供了DHCP管理、YUM源管理、电源管理等功能,除此之外还支持命令行管理、WEB界面管理、并且提供了API接口,方便进行二次开发
实机操作
实验准备
1.一台Linux服务器
2.一台空白虚拟机
需要连接上互联网,且虚拟机都使用NAT模式
Cobbler自动部署装机服务步骤
进入你打算放置安装包的目录
[root@localhost ~]#cd /etc/yum
将安装包拖进此文件夹
[root@localhost yum]#rz -E
rz waiting to receive.
1.导入epel源
安装依赖包
[root@localhost yum]#rpm -ivh epel-release-latest-7.noarch.rpm
警告:epel-release-latest-7.noarch.rpm: 头V3 RSA/SHA256 Signature, 密钥 ID 352c64e5: NOKEY
准备中... ################################# [100%]
正在升级/安装...
1:epel-release-7-11 ################################# [100%]
2 自动加载在线更新源
[root@localhost yum]#yum list
[root@localhost yum]#yum install -y cobbler dhcp tftp-server pykickstart httpd rsync xinetd
3 修改cobbler主配置文件
[root@localhost yum]#vim /etc/cobbler/settings
......
manage_dhcp: 1 让cobbler管理dhcp服务
manage_tftpd: 1 让cobbler管理tftp服务
manage_rsync: 1 让cobbler管理rsync服务
next_server: 192.168.112.20 指向tftp服务器的IP,即本机IP
server: 192.168.112.129 指向cobbler服务器的IP,即本机IP
4 启动相关服务并关闭防火墙和selinux
4.1 开启http服务
[root@localhost yum]#systemctl start httpd.service
4.2 开启cobbler服务
[root@localhost yum]#systemctl start cobblerd.service
4.3 关闭防火墙
[root@localhost yum]#systemctl stop firewalld
[root@localhost yum]#setenforce 0
5 使用cobbler check 命令对Cobbler做检查设置,查询还需要更改配置的项目
cobbler check
6 开启tftp服务和rsync服务
6.1 修改tftp的配置文件
[root@localhost yum]#vim /etc/xinetd.d/tftp
......
disable = no
6.2 开启服务
[root@localhost yum]#systemctl restart xinetd.service
[root@localhost yum]#systemctl start rsyncd.service
7 下载引导操作系统文件
[root@localhost yum]#cobbler get-loaders
8 设置Cobbler用户初始密码
8.1 使用盐值加密方式生成密钥
[root@localhost yum]#openssl passwd -1 -salt 'asd' 'asd' 第一个’‘任意字符可以随便写 第二个’‘安装完系统后root用户的密码
$1$abc123$9v8z2./E/PZihXrVcy3II0
8.2 将生成的密钥加入Cobbler配置文件中
[root@localhost?yum]#vim /etc/cobbler/settings
......
default_password_crypted: "$1$abc123$9v8z2./E/PZihXrVcy3II0"
9 配置dhcp服务
9.1 修改Cobbler管理dhcp服务的模板文件
[root@localhost yum]#vim /etc/cobbler/dhcp.template
9.2 将配置好的模板文件同步到DHCP服务的配置文件中
[root@localhost yum]#cobbler sync
9.3 重启DHCP服务
[root@localhost yum]#systemctl restart dhcpd.service
10 导入ISO镜像文件
10.1 挂载镜像文件
[root@localhost yum]#mount /dev/sr0 /mnt
mount: /dev/sr0 写保护,将以只读方式挂载
10.2导入iso镜像中的Linux 内核、初始化镜像文件
[root@localhost yum]#cobbler import --path=/mnt/ --name=CentOS-7-x86_64 --arch=x86_64
10.3 查看内核和初始化文件是否在在tftp-server 共享目录中
[root@localhost yum]#yum install -y tree 系统默认没有安装,需手动安装tree
[root@localhost?yum]#tree /var/lib/tftpboot/images 查看文件是否存在
11 重启所有服务
[root@localhost yum]#systemctl restart cobblerd.service
[root@localhost yum]#systemctl restart dhcpd.service
[root@localhost yum]#systemctl restart xinetd.service
[root@localhost yum]#systemctl restart httpd.service
12 再用cobbler check 对Cobbler做检查设置
[root@localhost?yum]#cobbler check