Guest User

Untitled

a guest
Jan 18th, 2019
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.38 KB | None | 0 0
  1. 3693:C 01 Dec 03:34:22.056 # Error moving temp DB file on the final destination: Operation not permitted
  2. 7089:M 01 Dec 03:34:22.155 # Background saving error
  3. 7089:M 01 Dec 03:34:28.067 * 1 changes in 900 seconds. Saving...
  4. 7089:M 01 Dec 03:34:28.068 * Background saving started by pid 3699
  5. 3699:C 01 Dec 03:34:28.069 # Error moving temp DB file on the final destination: Operation not permitted
  6. 7089:M 01 Dec 03:34:28.168 # Background saving error
  7. 7089:M 01 Dec 03:34:34.080 * 1 changes in 900 seconds. Saving...
  8. 7089:M 01 Dec 03:34:34.081 * Background saving started by pid 3700
  9. 3700:C 01 Dec 03:34:34.083 # Error moving temp DB file on the final destination: Operation not permitted
  10. 7089:M 01 Dec 03:34:34.181 # Background saving error
  11.  
  12. tar xzf redis-3.0.x.tar.gz
  13. cd redis-3.0.1
  14. make
  15. make test
  16. make install
  17. cd utils
  18. chmod +x install_server.sh
  19. ./install_server.sh
  20.  
  21. # The filename where to dump the DB
  22. dbfilename dump.rdb
  23.  
  24. # The working directory.
  25. #
  26. # The DB will be written inside this directory, with the filename specified
  27. # above using the 'dbfilename' configuration directive.
  28. #
  29. # The Append Only File will also be created inside this directory.
  30. #
  31. # Note that you must specify a directory here, not a file name.
  32. dir /var/lib/redis/6379
  33.  
  34. daemonize yes
  35.  
  36. pidfile /var/run/redis_6379.pid
  37.  
  38. port 6379
  39.  
  40. tcp-backlog 511
  41.  
  42. timeout 0
  43.  
  44. tcp-keepalive 0
  45.  
  46. loglevel notice
  47.  
  48. logfile /var/log/redis_6379.log
  49.  
  50.  
  51. databases 16
  52.  
  53. save 900 1
  54. save 300 10
  55. save 60 10000
  56.  
  57. stop-writes-on-bgsave-error yes
  58.  
  59. rdbcompression yes
  60.  
  61. rdbchecksum yes
  62.  
  63. dbfilename dump.rdb
  64.  
  65. dir /var/lib/redis/6379
  66.  
  67.  
  68. slave-serve-stale-data yes
  69.  
  70. slave-read-only yes
  71.  
  72. repl-diskless-sync no
  73.  
  74. repl-diskless-sync-delay 5
  75.  
  76. repl-disable-tcp-nodelay no
  77.  
  78. slave-priority 100
  79.  
  80.  
  81. appendonly no
  82.  
  83.  
  84. appendfilename "appendonly.aof"
  85.  
  86.  
  87. appendfsync everysec
  88.  
  89.  
  90. no-appendfsync-on-rewrite no
  91.  
  92.  
  93. auto-aof-rewrite-percentage 100
  94. auto-aof-rewrite-min-size 64mb
  95.  
  96. aof-load-truncated yes
  97.  
  98.  
  99. lua-time-limit 5000
  100.  
  101.  
  102. slowlog-log-slower-than 10000
  103.  
  104. slowlog-max-len 128
  105.  
  106. latency-monitor-threshold 0
  107.  
  108. notify-keyspace-events ""
  109.  
  110. hash-max-ziplist-entries 512
  111. hash-max-ziplist-value 64
  112.  
  113. list-max-ziplist-entries 512
  114. list-max-ziplist-value 64
  115.  
  116. set-max-intset-entries 512
  117.  
  118. zset-max-ziplist-entries 128
  119. zset-max-ziplist-value 64
  120.  
  121. hll-sparse-max-bytes 3000
  122.  
  123. activerehashing yes
  124.  
  125. client-output-buffer-limit normal 0 0 0
  126. client-output-buffer-limit slave 256mb 64mb 60
  127. client-output-buffer-limit pubsub 32mb 8mb 60
  128.  
  129. hz 10
Add Comment
Please, Sign In to add comment