在CentOS 7上安装和配置Cobbler

Cobbler是免费的开源Linux安装服务器,可以快速设置网络安装环境。您可以使用Cobbler通过网络在多个系统上自动安装操作系统。Cobbler可以帮助配置,管理DNS和DHCP,软件包更新,电源管理,配置管理编排等等。Cobbler中的操作系统安装基于Kickstart文件,并在客户端或系统上使用开始安装。

部署cobbler实现系统的安装
确保已完成如下工作

  1. 已关闭iptables,firewalld
  2. 已关闭SELinux
  3. 已配置固定的IP地址
  4. 以设置好合理的主机名
  5. 扩展根分区
  6. 使用隔离网络,可以添加两块网卡,一块为nat模式用于上外网,一块隔离模式用于提供安装源

一、配置yum源,装包

首先配置epel源

yum install -y epel-release

在服务器上安装Cobbler之前,您需要安装Apache Web服务器并执行以下命令。

yum -y install httpd

接下来,运行以下命令以安装Cobbler及其所需的依赖包。

yum -y install cobbler cobbler-web dnsmasq syslinux  dhcp tftp-server  xinetd

二、启动服务设置开机自启动

接下来,您需要启动Cobbler和Apache Web服务器并使它们在引导时运行。运行以下命令来执行此操作。

 systemctl start cobblerd
 systemctl enable cobblerd
 systemctl start httpd
 systemctl enable httpd

三、配置Cobbler

我们已经在您的CentOS 7服务器上成功安装了Cobbler,现在让我们配置它。
首先运行cobbler check检测cobbler配置

[root@cobbler ~]# cobbler check   
通过该命令可以查看cobbler的服务是否正常,需要解决哪些问题

The following are potential configuration items that you may want to fix:
1 : The 'server' field in /etc/cobbler/settings must be set to something other than localhost, or kickstarting features will not work. This should be a resolvable hostname or IP for the boot server as reachable by all machines that will use it.
2 : For PXE to be functional, the 'next_server'field in /etc/cobbler/settings must be set to something other than 127.0.0.1, and should match the IP of the boot server on the PXE network.
3 : change 'disable' to 'no' in /etc/xinetd.d/tftp
4 : Some network boot-loaders are missing from /var/lib/cobbler/loaders, you may run 'cobbler get-loaders' to download them, or, if you only want to handle x86/x86_64 netbooting, you may ensure that you have installed a recent version of the syslinux package installed and can ignore this message entirely. Files in this directory, should you want to support all architectures, should include pxelinux.0, menu.c32, elilo.efi, and yaboot. The 'cobbler get-loaders' command is the easiest way to resolve these requirements.
5 : enable and start rsyncd.service with systemctl
6 : debmirror package is not installed, it will be required to manage debian deployments and repositories
7 : ksvalidator was not found, install pykickstart
8 : The default password used by the sample templates for newly installed machines (default_password_crypted in /etc/cobbler/settings) is still set to 'cobbler' and should be changed, try: "openssl passwd -1 -salt 'random-phrase-here' 'your-password-here'"to generate new one
9 : fencing tools were not found, and are required to use the (optional) power management features. install cman or fence-agents to use them
Restart cobblerd and then run 'cobbler sync'to apply changes.

上文加粗的是问题所在根据对应的问题进行解决

如上各问题的解决办法为:
1.修改/etc/cobbler/settings文件的server参数的值为提供cobbler服务的主机对应的ip地址,可以写ip,也可以写主机名,若写主机名要求再hosts文件中做解析
2.修改/etc/cobbler/settings文件的next_server参数的值为提供PXE服务的主机的对应IP地址
3.将/etc/xinetd.d/tftp中的disable改为no
4.如果当前节点可以访问互联网,执行“cobbler get-loaders”命令下载pxelinux.0,menu.c32,elilo.efi, 或yaboot文件,否则,需要安装syslinux程序包,而后复制/usr/share/syslinux/中的 pxelinux.0,menu.c32等文件至/var/lib/cobbler/loaders目录中
5.启动rsyncd.service服务
6.安装debmirror的包
7.安装 pykickstart的包
8.执行“openssl passwd -1 -salt 'random-phrase-here' 'your-password-here'生成密码,并用其替换/etc/cobbler/settings文件中default_password_crypted参数。这个密码是客户端主机装完系统之后管理员的密码。9.安装cman或者是fence-agents来实现电源管理,集群中解决脑裂的软件,centos6装cman,centos7装fence-agents

问题1和2: 配置 让客户端主机寻找的ip地址
[root@server cobbler]# cd /etc/cobbler
[root@server cobbler]# vim settings 
next_server: 10.10.10.1        
server: 10.10.10.1
问题3.设置xinetd
[root@pxe cobbler]# vim /etc/xinetd.d/tftp
disabled = no
问题4.下载文件
[root@pxe loaders]# cobbler get-loaders
[root@pxe loaders]# ls /var/lib/cobbler/loaders
COPYING.elilo     COPYING.yaboot  grub-x86_64.efi  menu.c32    README
COPYING.syslinux  elilo-ia64.efi  grub-x86.efi     pxelinux.0  yaboot
问题5.启动服务设置开机自启动
[root@pxe ~]# systemctl  restart rsyncd.service
[root@pxe loaders]# systemctl enable rsyncd.service
问题6.安装debmirror包,但是我们用不到,不用装,如果是debian系统需要装这个包
问题7.安装pykickstart包
[root@pxe ~]# yum -y install pykickstart
问题8.生成密码
[root@pxe loaders]# openssl passwd -1 -salt 'qwer1234!@#$.' 'uplooking'
$1$qwer1234$eW8Yzsiu2SpULLBwFAnbT/
-1:使用md5的加密算法
salt:是一个函数,后面加一段随机的字符串,通过这段随机字符串生成最终的密码
[root@pxe loaders]# vim /etc/cobbler/settings
default_password_crypted: "$1$qwer1234$eW8Yzsiu2SpULLBwFAnbT/"
问题9.安装缺失的软件包
[root@pxe loaders]# yum -y install fence-agents
按照上述提示进行cobbler的配置,重启cobblerd服务,并使用cobbler sync保存配置
[root@pxe 7]# systemctl restart cobblerd
[root@pxe 7]# cobbler sync

四、配置DHCP服务给客户端分配ip

设置cobbler的模板,由cobbler来修改dhcp的配置文件,启动服务。

[root@pxe ~]# vim /etc/cobbler/settings         //将0改为1,允许配置dhcp
    manage_dhcp: 1
[root@pxe ~]# vim /etc/cobbler/dhcp.template    //修改subnet一段,网关和dns可删掉,其余不要动
subnet 192.168.87.0 netmask 255.255.255.0 {
     range dynamic-bootp        192.168.87.10 192.168.87.20;

[root@pxe ~]# systemctl restart cobblerd
[root@pxe ~]# cobbler sync
[root@pxe ~]# ss -anup |grep :67
UNCONN     0      0            *:67                       *:*                   users:(("dhcpd",pid=11679,fd=7))
UNCONN     0      0      *%virbr0:67                       *:*                   users:(("dnsmasq",pid=1499,fd=3))    

五、启动tftp服务 让客户端能都找到 pxelinux.0文件

[root@pxe ~]# systemctl restart xinetd
[root@pxe ~]# systemctl enable xinetd

[root@pxe ~]# ss -anup | grep :69
UNCONN     0      0            *:69                       *:*                   users:(("xinetd",pid=6032,fd=5))

六、接下来,您需要创建一个目录并复制CentOS 7的ISO文件并运行以下命令将ISO导入Cobbler。

[root@pxe ~]# mkdir /mnt/centos7
[root@pxe ~]# mount CentOS-7.3-x86_64-DVD-1611.iso /mnt/centos7/
mount: /dev/loop0 写保护,将以只读方式挂载
[root@pxe ~]# cobbler import --path=/mnt/centos7 --name=centos7.3 --arch=x86_64 
--path:指定光盘的挂载点
--name:自定义的一个名字
--arch:指定操作系统的平台
您也可以导入其他Linux风格的ISO文件。如果您在导入时遇到签名错误,请运行以下命令来解决问题。
cobbler signature update
接下来,您需要验证Distro列表并运行以下命令以查看Distro列表。
[root@pxe ~]# cobbler list
distros:               分发板,就是刚才导入镜像文件生成的分发板,存放的centos7的光盘
   centos7.3-x86_64   
profiles:            生成的配置文件(菜单),名字和分发板相同
   centos7.3-x86_64
配置cobbler使用自定义的ks文件
[root@cobbler kickstarts]# pwd
/var/lib/cobbler/kickstarts
默认使用的sample_end.ks文件是最小化的方式安装系统
准备自定义ks文件
[root@cobbler kickstarts]# cp sample_end.ks centos7.ks
[root@cobbler kickstarts]# vim centos7.ks       //文件中使用了setting中设置的一些变量,不要动
手动添加装系统的时候需要额外装什么包
%packages
$SNIPPET('func_install_if_enabled')
httpd
mariadb-server
bash-completion
vim*
%end
修改菜单关联的模板
[root@cobbler kickstarts]# cobbler profile edit --name=centos7.3-x86_64 --kickstart=/var/lib/cobbler/kickstarts/centos7.ks 
查看菜单关联的模板
[root@pxe kickstarts]# cobbler profile report |grep Kickstart |grep 7
Kickstart                      : /var/lib/cobbler/kickstarts/centos7.ks

Web界面

打开您喜欢的Web浏览器并访问http:// YourServerIP / cobbler_web /使用Cobbler作为用户名和密码。

使用PXE引导客户端

Cobbler的基本配置现已完成,现在使用pxe启动系统,您要在其上执行自动操作系统安装。

最后选择CentOS 7作为操作系统并按回车键,您将看到操作系统安装已启动。

你可能感兴趣的:(在CentOS 7上安装和配置Cobbler)