Linux运维:cobbler

简介:

Linux运维:cobbler

矮哥linux运维群:93324526

学习cobbler的话,必须先搞懂kickstart,原理不是,不懂如何排错。
kickstart部署请点击这里

1. Cobbler介绍

Cobbler是一个Linux服务器安装的服务,可以通过网络启动(PXE)的方式来快速安装、重装物理服务器和虚拟机,同时还可以管理DHCPDNS等。

Cobbler可以使用命令行方式管理,也提供了基于Web的界面管理工具(cobbler-web),还提供了API接口,可以方便二次开发使用。

Cobbler是较早前的kickstart的升级版,优点是比较容易配置,还自带web界面比较易于管理。

Cobbler内置了一个轻量级配置管理系统,但它也支持和其它配置管理系统集成,如Puppet,暂时不支持SaltStack
cobbler官网

1.1 Cobbler集成的服务

·        PXE服务支持

·        DHCP服务管理

·        DNS服务管理(可选bind,dnsmasq)

·        电源管理

·        Kickstart服务支持

·        YUM仓库管理

·        TFTP(PXE启动时需要)

·        Apache(提供kickstart的安装源,并提供定制化的kickstart配置)

1.2 系统环境准备

[root@CentOS6 ~]# cat /etc/redhat-release

CentOS release 6.8 (Final)

[root@CentOS6 ~]# uname -r

2.6.32-642.el6.x86_64

[root@CentOS6 ~]# getenforce

Disabled

[root@CentOS6 ~]# /etc/init.d/iptables status

iptables: Firewall is not running.

[root@CentOS6 ~]# ifconfig eth0|awk -F "[ :]+" 'NR==2 {print$4}'

10.0.0.101

[root@CentOS6 ~]# hostname

CentOS6

[root@CentOS6 ~]# wget -O /etc/yum.repos.d/epel.repohttp://mirrors.aliyun.com/repo/epel-6.repo

注意:

·        虚拟机网卡采用NAT模式,不要使用桥接模式,因为稍后我们会搭建DHCP服务器,在同一局域网多个DHCP服务会有冲突。

·        VMwareNAT模式的dhcp服务也关闭,避免干扰。

2.1 安装Cobbler

需要epel

[root@CentOS6 ~]# yum -y install cobbler cobbler-web dhcptftp-server pykickstart httpd vsftpd   syslinux

[root@CentOS6 ~]# rpm -ql cobbler  # 查看安装的文件,下面列出部分。

/etc/cobbler                  配置文件目录

/etc/cobbler/settings         # cobbler主配置文件,这个文件是YAML格式,Cobbler是python写的程序。

/etc/cobbler/dhcp.template    # DHCP服务的配置模板

/etc/cobbler/tftpd.template   # tftp服务的配置模板

/etc/cobbler/rsync.template   # rsync服务的配置模板

/etc/cobbler/iso              # iso模板配置文件目录

/etc/cobbler/pxe              # pxe模板文件目录

/etc/cobbler/power            电源的配置文件目录

/etc/cobbler/users.conf       # Web服务授权配置文件

/etc/cobbler/users.digest     用于web访问的用户名密码配置文件

/etc/cobbler/dnsmasq.template # DNS服务的配置模板

/etc/cobbler/modules.conf     # Cobbler模块配置文件

/var/lib/cobbler              # Cobbler数据目录

/var/lib/cobbler/config       配置文件

/var/lib/cobbler/kickstarts   默认存放kickstart文件

/var/lib/cobbler/loaders      存放的各种引导程序

/var/www/cobbler              系统安装镜像目录

/var/www/cobbler/ks_mirror    导入的系统镜像列表

/var/www/cobbler/images       导入的系统镜像启动文件

/var/www/cobbler/repo_mirror  # yum源存储目录

/var/log/cobbler              日志目录

/var/log/cobbler/install.log  客户端系统安装日志

/var/log/cobbler/cobbler.log  # cobbler日志

2.2 配置Cobbler

cobbler check

[root@CentOS6 ~]#cobbler check

The followingare potentialconfiguration items that you may want to fix:

 

1 : The 'server'fieldin /etc/cobbler/settings must be setto something other than localhost, or kickstartingfeatures will notwork.  Thisshould be a resolvable hostname or IP for the boot serveras reachable byall machines that will use it.

2 : For PXE to be functional, the 'next_server'fieldin /etc/cobbler/settings must be setto something other than127.0.0.1and should match the IP of the boot serveron the PXE network.

3 : change'disable'to'no'in /etc/xinetd.d/tftp

4 : some network boot-loadersaremissingfrom /var/lib/cobbler/loaders,you may run 'cobblerget-loaders'todownload them, orif you only want to handle x86/x86_64 netbooting, you may ensure that youhave installed a *recent* versionof 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 : change'disable'to'no'in /etc/xinetd.d/rsync

6 : file /etc/xinetd.d/rsync does not exist

7 : debmirror packageisnot installed, it will be requiredto manage debiandeployments and repositories

8 : The defaultpassword used by the sample templates for newly installedmachines (default_password_crypted in /etc/cobbler/settingsis still setto'cobbler'and should be changed, try: "openssl passwd -1 -salt 'random-phrase-here''your-password-here'"to generate new one

9 : fencing tools were notfoundandarerequiredtouse the (optional) powermanagement features. install cman or fence-agents touse them

 

Restart cobblerd andthen run 'cobbler sync'toapply changes.

解释一下9条内容

1.改变server的主机名

2.第二是DHCP的next_server改成192.168.10.25

3.改xined的tftpdisable等于no

4.

5./etc/xinetd.d/rsync  也改成no

6.bug,已经存在

7.debin系统的源

8.生成密码并设置openssl passwd -1 -salt

9.fencing tools 高可用的硬件设备。

修改配置文件
命令直接复制粘贴即可

cp /etc/cobbler/settings{,.ori}                   #备份

sed -i 's/server: 127.0.0.1/server: 192.168.10.25/' /etc/cobbler/settings   #服务端IP

sed -i 's/next_server: 127.0.0.1/next_server: 192.168.10.25/'/etc/cobbler/settings           #服务端IP

sed -i 's/manage_dhcp: 0/manage_dhcp: 1/' /etc/cobbler/settings            #dhcp只获取一次

sed -i 's/pxe_just_once: 0/pxe_just_once: 1/' /etc/cobbler/settings            #cobbler只执行一遍

sed -ri "/default_password_crypted/s#(.*:).*#\1\"`openssl passwd -1 -salt 'oldboy' '123456'`\"#"/etc/cobbler/settings  #设置密码为123456

sed -i 's#yes#no#' /etc/xinetd.d/rsync             #xinet 管理rsync

sed -i 's#yes#no#' /etc/xinetd.d/tftp              #xinet 管理tftp

cobbler get-loaders    (可以不做,安装syslinux软件即可)     #下载

cp  -v  /root/loaders/*    /var/lib/cobbler/loaders/        #准备PXE启动引导文件

sed -i 's#192.168.1#192.168.10#g;22d;23d' /etc/cobbler/dhcp.template     修改dhcp配置文件

cobbler sync                                       #写入磁盘

echo 'ServerName  webserver' >/etc/httpd/conf.d/srv.conf

/etc/init.d/xinetd  restart                    #启动必须启动的服务。详情请看kickstart

/etc/init.d/cobblerd  restart

/etc/init.d/httpd  restart

/etc/init.d/vsftpd  restart

/etc/init.d/dhcpd  restart

cobbler  sync      #  修改配置文件等,没事就来一次。保证没事

cobbler  check     #  检查配置是否正确

 

设置服务为开机启动:

chkconfig   xinetd on

chkconfig  cobblerd on

chkconfig  httpd on

chkconfig  vsftpd on

chkconfig  dhcpd on

CentOS-6.8-x86_64.cfg

# Cobbler for Kickstart Configurator forCentOS 6.8 by yao zhang

install

url --url=$tree

text

lang en_US.UTF-8

keyboard us

zerombr

bootloader--location=mbr --driveorder=sda --append="crashkernel=auto rhgb quiet"

$SNIPPET('network_config')

timezone --utcAsia/Shanghai

authconfig--enableshadow --passalgo=sha512

rootpw  --iscrypted $default_password_crypted

clearpart --all--initlabel

part /boot--fstype=ext4 --asprimary --size=200

part swap --size=1024

part / --fstype=ext4--grow --asprimary --size=200

firstboot --disable

selinux --disabled

firewall --disabled

logging --level=info

reboot

 

%pre

$SNIPPET('log_ks_pre')

$SNIPPET('kickstart_start')

$SNIPPET('pre_install_network_config')

# Enable installation monitoring

$SNIPPET('pre_anamon')

%end

 

%packages

@base

@compat-libraries

@debugging

@development

tree

nmap

sysstat

lrzsz

dos2unix

telnet

%end

 

%post --nochroot

$SNIPPET('log_ks_post_nochroot')

%end

 

%post

$SNIPPET('log_ks_post')

# Start yum configuration

$yum_config_stanza

# End yum configuration

$SNIPPET('post_install_kernel_options')

$SNIPPET('post_install_network_config')

$SNIPPET('func_register_if_enabled')

$SNIPPET('download_config_files')

$SNIPPET('koan_environment')

$SNIPPET('redhat_register')

$SNIPPET('cobbler_register')

# Enable post-install boot notification

$SNIPPET('post_anamon')

# Start final steps

$SNIPPET('kickstart_done')

# End final steps

%end

图片详解,ks配置文件请看上方

1.登录界面

wKioL1mUKj_S9B3jAACRA7wt0Zc895.png

2.导入镜像,记得挂载光盘或者镜像文件

镜像位置/var/www/cobbler/ks_mirror/
wKioL1mUKk-BqMOpAACs_uwCEoQ942.png

3.自定义KS配置文件。请看上方

wKioL1mUKmCgHCpjAAECMn5BhEw895.png

4.创建一个全局变量

wKioL1mUKrmxYCUBAABju6t40H0882.png

5.制作yum仓库

wKioL1mUKseiz29MAACNxDz2Gi8078.png

6.导入yum仓库并创建全局变量

wKioL1mUKtbjfMTeAAB1XTuIngk428.png

7.创建system

wKioL1mUKunT4SyKAAB0m80flgs628.pngwKioL1mUKwbA4aiZAACNj0ReYwE416.png

7.1.global

wKioL1mUKx6jXuqXAABL7NlGJ0I474.png

7.2.创建网卡

wKioL1mUKzWBYYgqAACfdn_JXlg978.png

7.3.制作第二张网卡

wKioL1mUK2DSpxQyAACFeObllM8421.png

7.4.拷贝和查看ks配置文件

wKioL1mUK3DDRoacAAApKpr_be8474.png

8.注意事项

wKioL1mUK4PRk-A4AACqRXHPse0097.png

 




      本文转自rshare 51CTO博客,原文链接:http://blog.51cto.com/1364952/1956874,如需转载请自行联系原作者


相关文章
|
17天前
|
Prometheus 运维 监控
Prometheus+Grafana+NodeExporter:构建出色的Linux监控解决方案,让你的运维更轻松
本文介绍如何使用 Prometheus + Grafana + Node Exporter 搭建 Linux 主机监控系统。Prometheus 负责收集和存储指标数据,Grafana 用于可视化展示,Node Exporter 则采集主机的性能数据。通过 Docker 容器化部署,简化安装配置过程。完成安装后,配置 Prometheus 抓取节点数据,并在 Grafana 中添加数据源及导入仪表盘模板,实现对 Linux 主机的全面监控。整个过程简单易行,帮助运维人员轻松掌握系统状态。
126 3
|
2月前
|
运维 监控 网络协议
运维工程师日常工作中最常用的20个Linux命令,涵盖文件操作、目录管理、权限设置、系统监控等方面
本文介绍了运维工程师日常工作中最常用的20个Linux命令,涵盖文件操作、目录管理、权限设置、系统监控等方面,旨在帮助读者提高工作效率。从基本的文件查看与编辑,到高级的网络配置与安全管理,这些命令是运维工作中的必备工具。
183 3
|
3月前
|
运维 监控 网络协议
|
2月前
|
运维 监控 安全
盘点Linux服务器运维管理面板
随着云计算和大数据技术的迅猛发展,Linux服务器在运维管理中扮演着越来越重要的角色。传统的Linux服务器管理方式已经无法满足现代企业的需求,因此,高效、安全、易用的运维管理面板应运而生。
|
2月前
|
缓存 运维 监控
【运维必备知识】Linux系统平均负载与top、uptime命令详解
系统平均负载是衡量Linux服务器性能的关键指标之一。通过使用 `top`和 `uptime`命令,可以实时监控系统的负载情况,帮助运维人员及时发现并解决潜在问题。理解这些工具的输出和意义是确保系统稳定运行的基础。希望本文对Linux系统平均负载及相关命令的详细解析能帮助您更好地进行系统运维和性能优化。
72 3
|
3月前
|
存储 运维 搜索推荐
|
3月前
|
运维 Java Linux
【运维基础知识】Linux服务器下手写启停Java程序脚本start.sh stop.sh及详细说明
### 启动Java程序脚本 `start.sh` 此脚本用于启动一个Java程序,设置JVM字符集为GBK,最大堆内存为3000M,并将程序的日志输出到`output.log`文件中,同时在后台运行。 ### 停止Java程序脚本 `stop.sh` 此脚本用于停止指定名称的服务(如`QuoteServer`),通过查找并终止该服务的Java进程,输出操作结果以确认是否成功。
97 1
|
3月前
|
运维 网络协议 安全
Linux安全运维--一篇文章全部搞懂iptables
Linux安全运维--一篇文章全部搞懂iptables
62 1
|
4月前
|
运维 监控 Linux
深入理解Linux系统运维:命令行工具的力量
【9月更文挑战第14天】在Linux的世界里,命令行工具是系统管理员的瑞士军刀。本文将带你领略命令行的魅力,从基础操作到高级技巧,让你的运维工作更加高效和精准。准备好了吗?让我们一起开启这段探索之旅!
|
3月前
|
Web App开发 运维 安全
1Panel:一个现代化、开源的 Linux 服务器运维管理面板
1Panel:一个现代化、开源的 Linux 服务器运维管理面板
122 0