1

I have redis-server running fine. I cant run redis-server-stack. The modules don't seem to be loading.

41188:M 21 Oct 2023 16:35:10.184 # Module /usr/local/Caskroom/redis-stack-server/7.2.0-v4/lib/redisearch.so failed to load: dlopen(/usr/local/Caskroom/redis-stack-server/7.2.0-v4/lib/redisearch.so, 6): no suitable image found.  Did find:
    /usr/local/Caskroom/redis-stack-server/7.2.0-v4/lib/redisearch.so: cannot load 'redisearch.so' (load command 0x80000034 is unknown)
    /usr/local/Caskroom/redis-stack-server/7.2.0-v4/lib/redisearch.so: stat() failed with errno=1


go version go1.21.3 darwin/amd64

1 Answer 1

0

MacOSX means at best OS X 10.15 (Catalina) from 2019, on Intel-based CPU (hence the use of darwin/amd64 instead of arm64 for M1 or M2 Apple silicon).
So the OS itself might be a bit old, depending on the version of

As mentioned in the RediSearch README:

The Redis Stack Docker image makes it easy to try RediSearch.

I would first try that image, using Docker, to check if the same feature is easier to use than a local installation.

5
  • Why doesnt redis-server load the modules that are there? I am not a user of docker. I had redis-server-stack working. I upgrade everything broke. Redis standalone works fine.. I just cant load modules after upgrade.. The brew casks for Redis dont show verison to downgrade to previous working setup.
    – Merlin
    Commented Oct 24, 2023 at 18:23
  • @Merlin Not sure, which is why I recommended using a Docker image (inside which every element of the stack is compatible). What MacOS version are you using?
    – VonC
    Commented Oct 24, 2023 at 19:56
  • Mohave.. need 32bit OS for another program.
    – Merlin
    Commented Oct 25, 2023 at 11:46
  • @Merlin You mean Mojave, macOS 10.14 I suppose? I would try, for testing, a VM (VMware Fusion or Parallels Desktop) to see if that work better with a more recent version of macOS, since the crux of my answer is that the error could be the result of a kernel incompatibility (too old).
    – VonC
    Commented Oct 25, 2023 at 12:58
  • I had to rebuild a 2nd Mac box... The server works, but now need a VM for 32bit program.
    – Merlin
    Commented Oct 27, 2023 at 1:26

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .