I can see in httpd.conf that this line belongs to "sysinfo" contribs, I did comment it out and rebooted.
Now the problem moved to line 684, which belongs to "gallery2" contribs. I then commented this out.
Do not start hacking at your configuration files, they are templates and problems will come back as they most likely are in template fragments.
Now the server boot up, but it looks very strange, it no longer has its hostname, at no connection on eth1 interface.
It looks like it is in some intermediate installation state !!
That is most likely because of the actions you took before.
Just bare with me and take it step by step... do not start off on your own.
Do you still have the gallery2 and the sysinfo contrib installed?
Check by:
rpm -q smeserver-gallery2
rpm -q smeserver-sysinfo
They both should output a version number when installed. If they do please run the following commands:
expand-template /etc/httpd/conf/httpd.conf
httpd -t
If the output of the last command is
Syntax OK
then your problems might be solved. If so you'd be wise to run:
signal-event post-upgrade
signal-event reboot
If not we have to digg something further.
Please post the output of the commands using the code-tags (to improve readability) as well as the output of this command:
Could you please also run this command to see what repositories you have enabled:
for r in `db yum_repositories show |\
grep repository |\
grep -vi name | \
sed -e 's/=repository//g'`; \
do echo $r: `db yum_repositories getprop $r status`; \
done