设为首页 加入收藏

TOP

cobbler(二)
2023-07-23 13:34:36 】 浏览:72
Tags:cobbler
ler check 核对当前设置是否有问题 [root@localhost ~]# cobbler check The following are potential configuration items that you may want to fix: 1: some network boot-loaders are missing from /var/lib/cobbler/loaders. 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, and yaboot. 2: reposync is not installed, install yum-utils or dnf-plugins-core 3: yumdownloader is not installed, install yum-utils or dnf-plugins-core 4: debmirror package is not installed, it will be required to manage debian deployments and repositories 5: 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解决办法: [root@localhost ~]# yum -y install syslinux* [root@localhost ~]# cp /usr/share/syslinux/pxelinux.0 /var/lib/cobbler/loaders/ [root@localhost ~]# cp /usr/share/syslinux/menu.c32 /var/lib/cobbler/loaders/ [root@localhost ~]# ls /var/lib/cobbler/loaders/ menu.c32 pxelinux.0 #问题2和问题三的解决办法: [root@localhost ~]# yum -y install yum-utils #问题4和问题5可以忽略, 因为是debian系统才需要解决,显示使用的是centos8 Debian系统解决办法安装fence-agents #配置DHCP模板文件 [root@localhost ~]# vim /etc/cobbler/dhcp.template 23 subnet 192.168.111.0 netmask 255.255.255.0 { 24 option routers 192.168.111.255; 25 option domain-name-servers 8.8.8.8; 26 option subnet-mask 255.255.255.0; 27 range dynamic-bootp 192.168.111.100 192.168.111.110; 28 default-lease-time 21600; 29 max-lease-time 43200; 30 next-server $next_server; #同步cobbler配置 [root@localhost ~]# systemctl restart httpd cobblerd [root@localhost ~]# cobbler sync task started: 2022-09-24_163754_sync task started (id=Sync, time=Sat Sep 24 16:37:54 2022) running python triggers from /var/lib/cobbler/triggers/task/sync/pre/* running shell triggers from /var/lib/cobbler/triggers/task/sync/pre/* shell triggers finished successfully running pre-sync triggers cleaning trees removing: /var/lib/tftpboot/grub/system removing: /var/lib/tftpboot/grub/system_link removing: /var/lib/tftpboot/grub/images copying bootloaders running: ['rsync', '-rpt', '--copy-links', '--exclude=.cobbler_postun_cleanup', '/var/lib/cobbler/loaders/', '/var/lib/tftpboot'] received on stdout: received on stderr: running: ['rsync', '-rpt', '--copy-links', '--exclude=README.grubconfig', '/var/lib/cobbler/grub_config/', '/var/lib/tftpboot'] received on stdout: received on stderr: copying distros to tftpboot copying images generating PXE configuration files generating PXE menu structure rendering DHCP files generating /etc/dhcp/dhcpd.conf cleaning link caches running post-sync triggers running python triggers from /var/lib/cobbler/triggers/sync/post/* running python trigger cobbler.modules.sync_post_restart_services running: dhcpd -t -q received on stdout: received on stderr: running: service dhcpd restart received on stdout: received on stderr: Redirecting to /bin/systemctl restart dhcpd.service running shell triggers from /var/lib/cobbler/triggers/sync/post/* shell triggers finished successfully running python triggers from /var/
首页 上一页 1 2 3 4 5 下一页 尾页 2/5/5
】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
上一篇Git:国内用命令行访问GitHub的方.. 下一篇进程间通信(IPC)

最新文章

热门文章

Hot 文章

Python

C 语言

C++基础

大数据基础

linux编程基础

C/C++面试题目