Updated Ubuntu/Fog
-
@dijsil That’s interesting. We knoe that when updating Ubuntu the PHP versions change but our install scripts should take care of this change. Seems like they didn’t in your case. Run
systemctl stop php7.2-fpm
and then re-run the FOG 1.5.9 installer scripts.Edit: Looking through the scripts I think we missed something. Will look into finxing that.
-
@Sebastian-Roth said in Updated Ubuntu/Fog:
systemctl stop php7.2-fpm
that seemed to have fixed the problems. All working good now thanks a lot and keep up the good work
-
Hi, I have encountered another problem.
When I click deploy image I am getting:
-
@dijsil Please run
tail -f /var/log/apache2/error.log
on your FOG server while trying to task a deploy in the web UI and post which errors you get in the log. -
@Sebastian-Roth said in Updated Ubuntu/Fog:
/var/log/apache2/error.log
There seem to be a lot of errors coming up all the time. I have taken a screenshot of when I click to deploy the image hopefully I got the error.
-
@dijsil Please run the following commands on your FOG server and post output here:
dpkg -l | grep php grep packages /opt/fog/.fogsettings
-
@Sebastian-Roth said in Updated Ubuntu/Fog:
dpkg -l | grep php
grep packages /opt/fog/.fogsettingsp.s. the computer still got imaged. Issue seems to be related to just the web interface giving the error.
-
@dijsil The second command didn’t run. Please try again the second one.
-
ops
-
@dijsil Ok, something has messed up the PHP packages on your install. Make sure you don’t have tasks running anymore, then clean up all packages using this command (as root) :
apt-get purge -yq 'php7*' 'libapache*'
Now re-run the FOG installer to setup things again. This should fix the issues you see with the webinterface.
-
did as you instructed and seems to be working now thanks