温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

cobbler web

发布时间:2020-09-19 17:07:43 来源:网络 阅读:198 作者:USCWIFI 栏目:系统运维

cobber web

1、安装:

yum install -y cobbler-web

2、然后就可以使用了(IP替换):

https://192.168.38.200/cobbler_web

3、错误排查

"Internal Server Error..."

排查参考:https://www.cnblogs.com/wang50902/p/10760404.html

先查看其日志位置:

[root@localhost httpd]# grep log /etc/httpd/conf.d/ssl.conf | grep error
# server does not start, consult the error logs and ensure
ErrorLog logs/ssl_error_log
#   compact non-error SSL logfile on a virtual host basis.

分析日志

[root@localhost httpd]# tail /etc/httpd/logs/ssl_error_log 
[Sun Sep 08 16:16:40.714657 2019] [:error] [pid 8630] [remote 192.168.38.1:244]     self._setup(name)
[Sun Sep 08 16:16:40.714663 2019] [:error] [pid 8630] [remote 192.168.38.1:244]   File "/usr/lib/python2.7/site-packages/django/conf/__init__.py", line 41, in _setup
[Sun Sep 08 16:16:40.714672 2019] [:error] [pid 8630] [remote 192.168.38.1:244]     self._wrapped = Settings(settings_module)
[Sun Sep 08 16:16:40.714677 2019] [:error] [pid 8630] [remote 192.168.38.1:244]   File "/usr/lib/python2.7/site-packages/django/conf/__init__.py", line 110, in __init__
[Sun Sep 08 16:16:40.714686 2019] [:error] [pid 8630] [remote 192.168.38.1:244]     mod = importlib.import_module(self.SETTINGS_MODULE)
[Sun Sep 08 16:16:40.714691 2019] [:error] [pid 8630] [remote 192.168.38.1:244]   File "/usr/lib64/python2.7/importlib/__init__.py", line 37, in import_module
[Sun Sep 08 16:16:40.714703 2019] [:error] [pid 8630] [remote 192.168.38.1:244]     __import__(name)

胡乱分析得到:django版本问题

解决:

yum install python2-pip
pip install --upgrade pip
pip install Django==1.8.17
systemctl restart httpd   

4、cobbler web使用

参考:https://blog.csdn.net/liang_operations/article/details/80640428

创建用户密码:

[root@localhost httpd]# egrep -v "^$|#" /etc/cobbler/users.conf  
[admins]
admin = ""
cobbler = ""
# htdigest + 配置文件 + “描述信息” + 用户
[root@localhost httpd]# htdigest -c /etc/cobbler/users.digest Cobbler test1
[root@localhost httpd]# cat /etc/cobbler/users.digest
test1:Cobbler:aa2cd4010e2c674350c901b969531fd4
3
向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI