CCED problems
We experienced some little problems with CCED. Actually what happened was that one day we could not restart HTTPD with the command line
/etc/init.d/httpd restartIt seemed that Apache could not start in any case.
The problem is identificable with the functionalities due to SSL integration with CCED, the engine of Bluequartz.
You can do the following:
/etc/init.d/cced.init stop/etc/init.d/admserv stop
then you must check that CCED has no processes defunct
ps aux | grep ccedIf you find any please kill them with -9 signal
kill -9 PIDThen you can type
/etc/init.d/cced.init startThis will take a while... but then you can type
/etc/init.d/httpd start/etc/init.d/admserv start
Personally, i have commented out the line
/usr/sausalito/handlers/base/network/change_route.pl -c 2>/dev/nullbecause this gave much problems.
Also, if you need to start APACHE in any case and don't want to wait until the problem is really solved you can type:
mv /etc/httpd/conf.d/ssl.conf /etc/httpd/conf.d/ssl.conf_bckmv /etc/httpd/conf.d/ssl_perl.conf /etc/httpd/conf.d/ssl_perl.conf_bck
/etc/init.d/httpd restart
mv /etc/httpd/conf.d/ssl.conf_bck /etc/httpd/conf.d/ssl.conf
mv /etc/httpd/conf.d/ssl_perl.conf_bck /etc/httpd/conf.d/ssl_perl.conf