Last active
December 28, 2015 12:49
-
-
Save russmckendrick/7503329 to your computer and use it in GitHub Desktop.
Install Cobbler
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
yum install http://ftp.linux.ncsu.edu/pub/epel/6/i386/epel-release-6-8.noarch.rpm | |
yum install cobbler cobbler-web pykickstart | |
chkconfig cobblerd on | |
chkconfig xinetd on | |
service httpd restart | |
service xinetd start | |
service cobblerd start | |
service cobblerd status | |
cobbler get-loaders | |
vim /etc/cobbler/modules.conf | |
# Make the following changes .... | |
[dns] | |
module = manage_dnsmasq | |
[dhcp] | |
module = manage_dnsmasq | |
[authentication] | |
module = authn_configfile | |
[authorization] | |
module = authz_allowall | |
# once done save and run the following .... | |
cobbler check | |
cobbler sync | |
# cobbler sets the username and password for the web interface to cobbler / cobbler, change that by running .... | |
htdigest /etc/cobbler/users.digest "Cobbler" cobbler |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment