forked from pool/redis
Marcus Rueckert
a5d4d5f938
Redis 2.6 is mostly a strict subset of 2.8. However there are a few things that you should be aware of: The following commands changed behavior: * SORT with ALPHA now sorts according to local collation locale if no STORE option is used. * ZADD/ZINCRBY are now able to accept a bigger range of values as valid scores, that is, all the values you may end having as a result of calling ZINCRBY multiple times. * Many errors are now prefixed by a more specific error code instead of the generic -ERR, for example -WRONGTYPE, -NOAUTH, ... * PUBLISH called inside Lua scripts is now correctly propagated to slaves. The following redis.conf and CONFIG GET / SET parameters changed: * logfile now uses the empty string in order to log to standard output, so 'logfile stdout' is now invalid, use 'logfile ""' instead. The following INFO fields changed format in a non-backward compatible way: * The list of slaves in INFO is now in field=value format. Replication: Redis 2.8 can be used as slave for Redis 2.6, but doing this is only a good idea for the short amount of time needed to upgrade your servers. We suggest to update both master and slaves at about the same time. For all the details see /usr/share/doc/packages/redis/00-RELEASENOTES - updated redis-conf.patch to apply cleanly again OBS-URL: https://build.opensuse.org/package/show/server:database/redis?expand=0&rev=50
46 lines
1.6 KiB
Diff
46 lines
1.6 KiB
Diff
Index: redis.conf
|
|
===================================================================
|
|
--- redis.conf.orig
|
|
+++ redis.conf
|
|
@@ -34,11 +34,11 @@
|
|
|
|
# By default Redis does not run as a daemon. Use 'yes' if you need it.
|
|
# Note that Redis will write a pid file in /var/run/redis.pid when daemonized.
|
|
-daemonize no
|
|
+daemonize yes
|
|
|
|
# When running daemonized, Redis writes a pid file in /var/run/redis.pid by
|
|
# default. You can specify a custom pid file location here.
|
|
-pidfile /var/run/redis.pid
|
|
+pidfile /var/run/redis/default.pid
|
|
|
|
# Accept connections on the specified port, default is 6379.
|
|
# If port 0 is specified Redis will not listen on a TCP socket.
|
|
@@ -62,6 +62,7 @@ tcp-backlog 511
|
|
#
|
|
# bind 192.168.1.100 10.0.0.1
|
|
# bind 127.0.0.1
|
|
+bind 127.0.0.1
|
|
|
|
# Specify the path for the Unix socket that will be used to listen for
|
|
# incoming connections. There is no default, so Redis will not listen
|
|
@@ -100,7 +101,8 @@ loglevel notice
|
|
# Specify the log file name. Also the empty string can be used to force
|
|
# Redis to log on the standard output. Note that if you use standard
|
|
# output for logging but daemonize, logs will be sent to /dev/null
|
|
-logfile ""
|
|
+# logfile ""
|
|
+logfile /var/log/redis/default.log
|
|
|
|
# To enable logging to the system logger, just set 'syslog-enabled' to yes,
|
|
# and optionally update the other syslog parameters to suit your needs.
|
|
@@ -184,7 +186,7 @@ dbfilename dump.rdb
|
|
# The Append Only File will also be created inside this directory.
|
|
#
|
|
# Note that you must specify a directory here, not a file name.
|
|
-dir ./
|
|
+dir /var/lib/redis/default/
|
|
|
|
################################# REPLICATION #################################
|
|
|