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

Merlin
  • 131

1 Answers1

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.

VonC
  • 14,588