cobbler自动安装操作系统
cobbler介绍
快速网络安装linux操作系统的服务,支持众多的Linux发行版: Red Hat, Fedora,CentOS,Debian,Ubuntu和SuSE 也可以支持网络安装windows
PXE的二次封装,将多种安装参数封装到一个菜单
Python编写
提供了CLI和Web的管理形式
cobbler软件包来源于epel源中的软件包
cobbler 服务集成
cobbler可以和以下服务一起集成来对外提供服务 但是cobbler不能代替以下服务
PXE
DHCP
rsync
Http
DNS
Kickstart
IPMI 电源管理
cobbler 相关术语
发行版 ( distro ):
表示一个操作系统版本,它承载了内核和 initrd 的信息 以及内核参数等其他数据
配置文件(profile):
一个发行版可以提供多个不同的ks文件来进行不同功能的安装
包含一个发行版,一个 kickstart 文件以及可能的存储库,还包含更多特定的内核参 数等其他数据
系统:
表示要配置的主机(需要被安装系统的节点)
存储库:
保存一个yum或者rsync存储库的镜像信息
镜像:
可替换为一个包含不属于此类别的文件的发行版对象
网卡IP设置的最简配置格式
TYPE=Ethernet
BOOTPROTO="static"
IPADDR=192.168.231.8
NETMASK=255.255.255.0
DEVICE="ens33"
ONBOOT="yes"
cobbler安装配置流程
[root@centosmy7 ~]# wget http://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
[root@centosmy7 ~]# rpm -ivh epel-release-latest-.noarch.rpm
[root@centosmy7 ~]# yum repolist
[root@centosmy7 ~]# yum install dhcp
[root@centosmy7 ~]# yum install cobbler
[root@centosmy7 ~]# rpm -ql cobbler | grep service
[root@centosmy7 ~]# systemctl start cobblerd httpd tftp
安装cobbler服务
[root@centosmy7 tftpboot]# setenforce
[root@centosmy7 tftpboot]# cobbler check
#只是告警信息不是必要修改项
: change 'disable' to 'no' in /etc/xinetd.d/tftp
: enable and start rsyncd.service with systemctl
: debmirror package is not installed, it will be required to manage debian deployments and repositories
: fencing tools were not found, and are required to use the (optional) power management features. install cman or fence-agents to use them
[root@centosmy7 tftpboot]# vi /etc/cobbler/settings
server: 127.0.0.1
next_server: 192.168.231.8
default_password_crypted: "$1$mF86/UHC$WvcIcX2t6crBz2onWxyac."
manage_dhcp:
[root@centosmy7 ~]# openssl passwd - #数字1代表md5加密类型
[root@centosmy7 ~]# cobbler get-loaders
task started: --27_190425_get_loaders
task started (id=Download Bootloader Content, time=Sun May :: )
downloading https://cobbler.github.io/loaders/README to /var/lib/cobbler/loaders/README
[root@centosmy7 ~]# cobbler sync
task started: --27_190536_sync
task started (id=Sync, time=Sun May :: )
running pre-sync triggers
cleaning trees
removing: /var/lib/tftpboot/grub/images
copying bootloaders
trying hardlink /var/lib/cobbler/loaders/pxelinux. -> /var/lib/tftpboot/pxelinux.
[root@centosmy7 cobbler]# pwd
/etc/cobbler
[root@centosmy7 cobbler]# vi dhcp.template
subnet 192.168.231.0 netmask 255.255.255.0 [root@centosmy7 cobbler]#systemctl restart cobblerd
配置cobbler
#准备yum源
[root@centosmy7 ~]# mkdir /mnt/centos7
[root@centosmy7 ~]# mount /dev/sr0 /mnt/centos7
#把光盘文件拷贝到/var/www/cobbler目录下
[root@centosmy7 ~]# cobbler import --path=/mnt/centos7 --name=yxhcentos7 --arch=x86_64
#导入系统后cobbler默认会自动生成一个最小化安装的ks文件
#自动生成cobbler启动系统选择菜单
[root@centosmy7 ~]# cobbler distro list
yxhcentos7-x86_64
#上传自己的ks文件,然后通过ks和distro关联生成一个新的cobbler启动菜单(profile)
[root@centosmy7 www]# cp ks7_mini.cfg /var/lib/kickstarts/
[root@centosmy7 pxelinux.cfg]# cobbler profile add --name=yxhcentos7_x86 --distro=yxhcentos7-x86_64 --kickstart=/var/lib/cobbler/kickstarts/ks7_mini.cfg
#自动修改default启动菜单配置文件
导入安装系统源
cobbler的web管理
[root@centosmy7 www]# yum install cobbler-web
[root@centosmy7 www]# systemctl restart httpd
https://192.168.231.8/cobbler_web/
#创建cobbler_web管理员账号
[root@centosmy7 www]# vi /etc/cobbler/modules.conf
authn_configfile -- use /etc/cobbler/users.digest (for basic setups)
[root@centosmy7 www]# vi /etc/cobbler/users.digest
[root@centosmy7 kickstarts]# htdigest -c /etc/cobbler/users.digest Cobbler test1
Adding password for test1 in realm Cobbler.
New password:
Re-type new password: [root@centosmy7 www]# 使用第二种pam登录验证
[authentication]
module = authn_pam
[root@centosmy7 ~]# useradd test2
[root@centosmy7 ~]# echo root | passwd --stdin test2
[root@centosmy7 ~]# vi /etc/cobbler/users.conf
[admins]
admin = "test2"
cobbler = ""
[root@centosmy7 ~]# systemctl restart cobblerd
cobbler的web配置
cobbler命令介绍
cobbler check 核对当前设置是否有问题
cobbler list 列出所有的cobbler元素
cobbler report 列出元素的详细信息
cobbler sync 同步配置到数据目录,更改配置最好都要执行下
cobbler reposync 同步yum仓库
cobbler distro 查看导入的发行版系统信息
cobbler system 查看添加的系统信息
cobbler profile 查看配置信息
联网:cobbler get-loaders
不联网:cp /usr/share/syslinux/{pxelinux.0,menu.c32} /var/lib/tftpboot
htdigest -c /etc/cobbler/users.digest Cobbler admin
注意:添加第一个用户时, 使用“-c”选项,后续添加其他用户时不要再使用 cobbler_web的realm只能为Cobbler
openssl passwd -1 生成密码 用其替换/etc/cobbler/settings 数字1表示使用MD5加密类型
cobbler自动安装操作系统的更多相关文章
- cobbler自动安装系统
一.简介 Cobbler是一个快速网络安装linux的服务,而且在经过调整也可以支持网络安装windows.该工具使用python开发,小巧轻便(才15k行python代码),使用简单的命令即可完成P ...
- 35、cobbler自动化安装操作系统
35.1.cobbler介绍: Cobbler是独立的,不需要先安装Kickstart然后再安装Cobbler: Cobbler是一个Linux服务器安装的服务,可以通过网络启动(PXE)的方式来快速 ...
- Cobbler批量安装操作系统
1,关闭selinux getenforce 查看selinux状态 Disabled 修改/etc/selinux/config 文件 将SELINUX=enforcing改为SELINUX=di ...
- 使用cobbler批量安装操作系统(基于Centos7.x )
1.1 cobbler简介 Cobbler是一个Linux服务器安装的服务,可以通过网络启动(PXE)的方式来快速安装.重装物理服务器和虚拟机,同时还可以管理DHCP,DNS等. Cobbler可以使 ...
- CentOS使用PXE网络启动自动安装操作系统
PXE工作原理简介 PXE (Preboot Excution Environment) 预启动执行环境 工作环境介绍: 要实现PXE自动网络安装CentOS至少需要两台主机 1)PXE服务器PXE ...
- Cobbler 自动安装CentOS7
1. Cobbler介绍 Cobbler是一个Linux服务器安装的服务,可以通过网络启动(PXE)的方式来快速安装.重装物理服务器和虚拟机,同时还可以管理DHCP,DNS等.Cobbler可以使用命 ...
- Cobbler 批量安装操作系统
文章目录 环境准备 部署cobbler cobbler语法检查以及排错 问题1 问题2 问题3 问题4 问题5 问题6 问题7 问题8 修改dhcp模板 重启服务,再次检查 镜像配置 镜像导入 kic ...
- PXE远程自动安装操作系统
一.PXE的工作原理 PXE:基于Client/Server的网络模式,支持远程主机通过网络从远端服务器下载映像,并由此支持通过网络启动操作系统:PXE可以引导和安装Windows,linux等多种操 ...
- cobbler自动安装系统(Centos7.X)
环境: [root@kickstart ~]# cat /etc/redhat-release CentOS Linux release (Core) [root@kickstart ~]# unam ...
随机推荐
- [React] 10 - Tutorial: router
Ref: REACT JS TUTORIAL #6 - React Router & Intro to Single Page Apps with React JS Ref: REACT JS ...
- 【zheng阅读系列】shiro权限管理
一.配置文件 upms-server/springMVC-servlet.xml <?xml version="1.0" encoding="UTF-8" ...
- StrokesPlus 谷歌搜索结果转https
StrokesPlus 谷歌搜索结果转https 亲测ie11可用 --清空剪切板 acSetClipboardText('') acSendKeys("^l") --选中地址栏 ...
- 【CF553E】Kyoya and Train 最短路+cdq分治+FFT
[CF553E]Kyoya and Train 题意:有一张$n$个点到$m$条边的有向图,经过第i条边要花$c_i$元钱,经过第i条边有$p_{i,k}$的概率要耗时k分钟.你想从1走到n,但是如果 ...
- 淘宝 NPM 镜像使用
前言 因为众所周知的原因,使用node,官方NPM仓库安装依赖包是个看人品的事情,不过有万能的淘宝,所以需要部分调整就可以避免这些原因.(以下内容osx, centos下测试通过) 淘宝镜像基本使用 ...
- spring框架的ioc
spring框架,主要思想可以用spring容器来理解 aop是一种对oop进行补充的软件设计思想,将和核心功能不相关代码抽象出来,由其他类完成.比如Singer类,我们可以定义一个Singer ...
- collections模块和os模块
collections模块 在内置数据类型(dict.list.set.tuple)的基础上,collections模块还提供了几个额外的数据类型:Counter.deque.defaultdict. ...
- MSSQL SQL Server代理 作业 设置(调用存储过程)
1.新建作业名 “生成分区文件及文件组“ 2.新建 步骤 名 “CreatePartTable” 步骤名:CreatePartTable 类型:Transact-SQL 脚本(T-SQL) 数据库 ...
- python的代码缩进和冒号
一般语言一样采用{}或者begin...end分隔代码块,而是python中,采用代码缩进和冒号来区分代码之间的层次. 缩进的空白数量是可变的,但是所有代码块语句必须包含相同的缩进空白数量,这个必须严 ...
- IO 流小记录
File类 构造函数: FIle file = new File(path); 常用函数: 是否存在: file.exists() 文件名: file.getName() 父目录: file.ge ...