Home > front end >  "Symbol not Found" Error on starting httpd (mac)
"Symbol not Found" Error on starting httpd (mac)

Time:12-11

I am using Homebrew installed apache.

After installing and linking this, I am getting getting this error message when trying to run apachectl start:

Symbol not found: _apr_bucket_alloc_aligned_floor
  Referenced from: /usr/local/Cellar/httpd/2.4.51/bin/httpd
  Expected in: /usr/lib/libaprutil-1.0.dylib
/usr/local/bin/apachectl: line 79:  4894 Abort trap: 6 

I tried uninstalling and re-installing several times with Homebrew. This did not help.

What has gone wrong and how can I fix it?

CodePudding user response:

I found the answer (https://github.com/Homebrew/discussions/discussions/2482)

brew reinstall apr-util
  • Related