You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The minimal configuration like
RedisServer redisServer = new RedisServer(6379);
redisServer.start();
results in an error Can't start redis server. Check logs for details.
When I debug AbstractRedisInstance.awaitRedisServerReady(), I see the following error is logged:
[22264] 27 Aug 19:10:56.673 # Creating Server TCP listening socket 127.0.0.1:6379: bind: No such file or directory
If I just try to run redis-server-2.8.19.exe from the command line, with the config file that contains only "bind 127.0.0.1", it produces exactly the same error. Without this config file, redis-server-2.8.19.exe starts.
But it seems impossible to build without this config line, because that's the first thing the build() method does, unconditionally.
The text was updated successfully, but these errors were encountered:
The minimal configuration like
RedisServer redisServer = new RedisServer(6379);
redisServer.start();
results in an error Can't start redis server. Check logs for details.
When I debug AbstractRedisInstance.awaitRedisServerReady(), I see the following error is logged:
[22264] 27 Aug 19:10:56.673 # Creating Server TCP listening socket 127.0.0.1:6379: bind: No such file or directory
If I just try to run redis-server-2.8.19.exe from the command line, with the config file that contains only "bind 127.0.0.1", it produces exactly the same error. Without this config file, redis-server-2.8.19.exe starts.
But it seems impossible to build without this config line, because that's the first thing the build() method does, unconditionally.
The text was updated successfully, but these errors were encountered: