美文网首页
七.使用cobbler批量安装系统

七.使用cobbler批量安装系统

作者: 妄语莫言 | 来源:发表于2019-02-23 03:25 被阅读0次

    一.cobbler_web页面无法访问

    安装cobbler_web组件后访问web页面,URL:https://192.168.28.90/cobbler_web
    页面报错信息如下:
    Internal Server Error
    The server encountered an internal error or misconfiguration and was unable to complete your request.
    
    Please contact the server administrator at root@localhost to inform them of the time this error occurred, and the actions you performed just before this error.
    
    More information about this error may be available in the server error log.
    
    查询最新的ssl报错日志如下:
    [root@cobbler ~]# tail -f /var/log/httpd/ssl_error_log
    [Fri Feb 22 17:47:58.090381 2019] [:error] [pid 10646] [remote 192.168.28.107:112]     self._setup(name)
    [Fri Feb 22 17:47:58.090389 2019] [:error] [pid 10646] [remote 192.168.28.107:112]   File "/usr/lib/python2.7/site-packages/django/conf/__init__.py", line 41, in _setup
    [Fri Feb 22 17:47:58.090403 2019] [:error] [pid 10646] [remote 192.168.28.107:112]     self._wrapped = Settings(settings_module)
    [Fri Feb 22 17:47:58.090411 2019] [:error] [pid 10646] [remote 192.168.28.107:112]   File "/usr/lib/python2.7/site-packages/django/conf/__init__.py", line 110, in __init__
    [Fri Feb 22 17:47:58.090425 2019] [:error] [pid 10646] [remote 192.168.28.107:112]     mod = importlib.import_module(self.SETTINGS_MODULE)
    [Fri Feb 22 17:47:58.090433 2019] [:error] [pid 10646] [remote 192.168.28.107:112]   File "/usr/lib64/python2.7/importlib/__init__.py", line 37, in import_module
    [Fri Feb 22 17:47:58.090449 2019] [:error] [pid 10646] [remote 192.168.28.107:112]     __import__(name)
    [Fri Feb 22 17:47:58.090456 2019] [:error] [pid 10646] [remote 192.168.28.107:112]   File "/usr/share/cobbler/web/settings.py", line 89, in <module>
    [Fri Feb 22 17:47:58.090471 2019] [:error] [pid 10646] [remote 192.168.28.107:112]     from django.conf.global_settings import TEMPLATE_CONTEXT_PROCESSORS
    [Fri Feb 22 17:47:58.090487 2019] [:error] [pid 10646] [remote 192.168.28.107:112] ImportError: cannot import name TEMPLATE_CONTEXT_PROCESSORS
    
    查看cobbler_web配置文件
    [root@cobbler ~]# vim /usr/share/cobbler/web/settings.py
     38 if django.VERSION[0] == 1 and django.VERSION[1] < 4:
     39     ADMIN_MEDIA_PREFIX = '/media/'
     40 else:
     41     STATIC_URL = '/media/'
     89 from django.conf.global_settings import TEMPLATE_CONTEXT_PROCESSORS
    [root@cobbler ~]# sed -n '38,41p' /usr/share/cobbler/web/settings.py
    if django.VERSION[0] == 1 and django.VERSION[1] < 4:
        ADMIN_MEDIA_PREFIX = '/media/'
    else:
        STATIC_URL = '/media/'
    
    [root@cobbler ~]#  sed -n '89p' /usr/share/cobbler/web/settings.py
    from django.conf.global_settings import TEMPLATE_CONTEXT_PROCESSORS
    
    #初步判断应该是pythone-django版本问题
    解决办法:
    #下载pip.py
    [root@cobbler ~]# cd /home/downloads/
    [root@cobbler downloads]# wget https://bootstrap.pypa.io/get-pip.py
    #调用本地python运行pip.py脚本
    [root@cobbler downloads]# python get-pip.py
    DEPRECATION: Python 2.7 will reach the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 won't be maintained after that date. A future version of pip will drop support for Python 2.7.
    Collecting pip
      Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.VerifiedHTTPSConnection object at 0x7fb20f0fb050>: Failed to establish a new connection: [Errno 101] Network is unreachable',)': /packages/d8/f3/413bab4ff08e1fc4828dfc59996d721917df8e8583ea85385d51125dceff/pip-19.0.3-py2.py3-none-any.whl
      Downloading https://files.pythonhosted.org/packages/d8/f3/413bab4ff08e1fc4828dfc59996d721917df8e8583ea85385d51125dceff/pip-19.0.3-py2.py3-none-any.whl (1.4MB)
        100% |████████████████████████████████| 1.4MB 12.3MB/s 
    Collecting wheel
      Downloading https://files.pythonhosted.org/packages/96/ba/a4702cbb6a3a485239fbe9525443446203f00771af9ac000fa3ef2788201/wheel-0.33.1-py2.py3-none-any.whl
    Installing collected packages: pip, wheel
    Successfully installed pip-19.0.3 wheel-0.33.1
    
    #pip安装Django1.8.9
    [root@cobbler downloads]# pip install Django==1.8.9
    DEPRECATION: Python 2.7 will reach the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 won't be maintained after that date. A future version of pip will drop support for Python 2.7.
    Collecting Django==1.8.9
      Downloading https://files.pythonhosted.org/packages/a7/a2/f4e7926062f5c61d98e87b9d0365ca1a0fab6be599dbea90ce2fab27f395/Django-1.8.9-py2.py3-none-any.whl (6.2MB)
        100% |████████████████████████████████| 6.2MB 880kB/s 
    Installing collected packages: Django
      Found existing installation: Django 1.11.18
        Uninstalling Django-1.11.18:
          Successfully uninstalled Django-1.11.18
    Successfully installed Django-1.8.9
    
    #查看版本号
    [root@cobbler downloads]# python -c "import django; print(django.get_version())"
    1.8.9
    #重启httpd
    [root@cobbler downloads]# systemctl restart httpd
    

    问题解决!!!!!

    设置cobbler登录用户名密码

    cobbler的web操作页面初始账号密码都是cobbler
    #为已存在的用户重置密码:
    htdigest /etc/cobbler/users.digest "Cobbler" cobbler
    #添加新用户:
    htdigest /etc/cobbler/users.digest "Cobbler" yourname
    [root@cobbler ~]# htdigest /etc/cobbler/users.digest "Cobbler" hexu
    Adding user hexu in realm Cobbler
    New password: 
    Re-type new password: 
    

    二.cobbler命令相关操作

    cobbler check    核对当前设置是否有问题
    cobbler list     列出所有的cobbler元素
    cobbler report   列出元素的详细信息
    cobbler sync     同步配置到数据目录,更改配置最好都要执行下
    cobbler reposync 同步yum仓库
    cobbler distro   查看导入的发行版系统信息
    cobbler system   查看添加的系统信息
    cobbler profile  查看配置信息
    
    

    三、RPM仓库管理

    相关阅读:https://fedorahosted.org/cobbler/wiki/ManageYumRepos

    我们可以为cobbler添加RPM仓库:
    cobbler repo add --name=CentOS-5-i386 --mirror=http://mirrors.163.com/centos/5/os/i386/
    cobbler repo add --name=EPEL-5-i386 --mirror=http://download.fedoraproject.org/pub/epel/5/i386/

    同步仓库到本地:
    cobbler reposync

    也可以通过设置--mirror-locally=0不下载到本地,而通过kickstart server去仓库下载rpm包。

    添加计划任务,每天凌晨两点进行一次同步:
    crontab -e
    0 2 * * * cobbler reposync --tries=3 --no-fail


    作者:cui98
    来源:CSDN
    原文:https://blog.csdn.net/cui98/article/details/40542919/
    版权声明:本文为博主原创文章,转载请附上博文链接!

    相关文章

      网友评论

          本文标题:七.使用cobbler批量安装系统

          本文链接:https://www.haomeiwen.com/subject/bdoeyqtx.html