Hi
On Wed, Nov 12, 2008 at 12:32, Tom Brown tom@ng23.net wrote:
# /etc/init.d/httpd start Starting httpd: /usr/sbin/httpd: symbol lookup error: /usr/lib/libaprutil-0.so.0: undefined symbol: gdbm_errno [FAILED]
I've had a similar problem, and it was a software that had a custom version of gdbm library and set LD_LIBRARY_PATH in profile to make sure that version would be used.
Do you have LD_LIBRARY_PATH set? What does this command say:
# echo $LD_LIBRARY_PATH
If you do, try unsetting it before starting httpd:
# LD_LIBRARY_PATH= service httpd start
HTH, Filipe