web 報錯500 Internal Server Error解決方案
在安裝使用Cobbler web界面的時候提示HTTP 500錯誤,也就是服務器內部錯誤,檢查防火牆和selinux都是為關閉狀態,后面查看日志發現報錯信息如下:
其實就是python django 的問題。
解決辦法:
1、安裝python2-pip
# yum -y install python2-pip
# pip install ipaddress
2、安裝django
# pip install Django==1.8.9
3、重啟httpd
# systemctl restart httpd
再次刷新頁面訪問http://IP/cobbler_web即可
通過Cobbler 安裝Linux系統報空間不足
錯誤信息:/sbin/dmsquash-live-root:line286:printf:write error:no space left on device
解決辦法:內存不足,增加客戶機內存最少為2G 參考
參考:https://access.redhat.com/solutions/3353961 Issue Provisioning a system via kickstart using Red Hat Satellite fails with the below error: dracut-initqueue[552]: /sbin/dmsquash-live-root: line 273: printf: write error: No space left on device Resolution In the compute profile for the affected Compute Resource, increase the value of the memory to 2048 MB and then provision a system. Root Cause The memory defined for the system is not sufficient hence it is unable to process/download the live image. Minimum of 2GB of memory should be allocated.