歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
Linux教程網 >> Linux基礎 >> Linux教程 >> Cobbler2.4+CentOS 6.4 安裝配置

Cobbler2.4+CentOS 6.4 安裝配置

日期:2017/2/28 14:38:29   编辑:Linux教程

Cobbler2.4+CentOS 6.4 安裝配置

一:安裝包
#rpm -Uvh http://mirrors.hustunique.com/epel/6/x86_64/epel-release-6-8.noarch.rpm
#yum install cobbler cobbler-web
#yum install dhcp httpd
#chkconfig cobblerd on
#chkconfig httpd on
#cobbler check
錯誤檢測:看附錄
二:配置環境
# vi /etc/cobbler/settings /修改cobbler配置文件
server: '192.168.200.1' #cobbler服務器地址做修改
next_server: '192.168.200.1' #做修改
manage_dhcp: 1 #cobbler接管dhcp
#vi /etc/cobbler/dhcp.template /cobbler-dhcp設置dhcpd的routers-ip和range段
ddns-update-style interim;
allow booting;
allow bootp;
ignore client-updates;
set vendorclass = option vendor-class-identifier;
option pxe-system-type code 93 = unsigned integer 16;
subnet 192.168.200.0 netmask 255.255.255.0 {
option routers 192.168.200.254;
option domain-name-servers 192.168.200.254;
option subnet-mask 255.255.255.0;
range dynamic-bootp 192.168.200.50 192.168.200.70;
default-lease-time 21600;
max-lease-time 43200;
next-server $next_server;
三:配置web環境
#vi /etc/cobbler/modules.conf
module = authn_configfile /修改認證方式為密碼文件類型
#htdigest /etc/cobbler/users.digest "Cobbler" tech /添加tech用戶,提示輸入2遍密碼確認
# cobbler sync /輸出*** TASK COMPLETE *** 表示配置無錯誤
# /etc/init.d/httpd restart
# /etc/init.d/cobblerd restart
訪問web頁面 https://192.168.200.1/cobbler_web /使用剛才創建的用戶登錄
web頁面管理
1:添加DVD源,
點擊Importer DVD (先掛載鏡像ISO),然後再Importer,點擊run


2:Events觀察日志
Tue Nov 19 08:11:54 2013 Sync complete log /complete表示完成:
3:Distros裡面查看源
CentOS6.4-x86_64
4:Profiles裡添加部署工程
選擇Distros和ks文件位置,然後保存

5:客戶端從網絡啟動後選擇對應的工程文件開始自動部署

更多詳情見請繼續閱讀下一頁的精彩內容: http://www.linuxidc.com/Linux/2013-11/92950p2.htm

Copyright © Linux教程網 All Rights Reserved