redis安装和配置_动力节点Java学院整理
程序员文章站
2022-06-24 19:13:00
在ubuntu上安装redis
要安装redis在ubuntu上,打开终端,然后键入以下命令:
$sudo apt-get update
$sudo...
在ubuntu上安装redis
要安装redis在ubuntu上,打开终端,然后键入以下命令:
$sudo apt-get update $sudo apt-get install redis-server
这将在您的计算机上安装redis。
启动redis
$redis-server
检查redis是否在工作?
$redis-cli
这将打开一个redis提示,如下图所示:
redis 127.0.0.1:6379>
在上面的提示127.0.0.1是本机的ip地址,6379是redis服务器运行的端口。现在输入ping命令,如下图所示。
redis 127.0.0.1:6379> ping pong
这说明你已经成功地在您的机器上安装redis。
在ubuntu上安装redis桌面管理器
在ubuntu上安装redis桌面管理,只要从 下载的软件包并安装它。
redis桌面管理器会给出用户界面来管理redis的键和数据。
配置
redis配置
在redis有配置文件(redis.conf)可在redis的根目录下找到。可以通过redis的config命令设置所有redis的配置。
语法
redis的config命令的基本语法如下所示:
redis 127.0.0.1:6379> config get config_setting_name
例如
redis 127.0.0.1:6379> config get loglevel 1) "loglevel" 2) "notice"
让所有的配置使用*代替config_setting_name
例子
redis 127.0.0.1:6379> config get * 1) "dbfilename" 2) "dump.rdb" 3) "requirepass" 4) "" 5) "masterauth" 6) "" 7) "unixsocket" 8) "" 9) "logfile" 10) "" 11) "pidfile" 12) "/var/run/redis.pid" 13) "maxmemory" 14) "0" 15) "maxmemory-samples" 16) "3" 17) "timeout" 18) "0" 19) "tcp-keepalive" 20) "0" 21) "auto-aof-rewrite-percentage" 22) "100" 23) "auto-aof-rewrite-min-size" 24) "67108864" 25) "hash-max-ziplist-entries" 26) "512" 27) "hash-max-ziplist-value" 28) "64" 29) "list-max-ziplist-entries" 30) "512" 31) "list-max-ziplist-value" 32) "64" 33) "set-max-intset-entries" 34) "512" 35) "zset-max-ziplist-entries" 36) "128" 37) "zset-max-ziplist-value" 38) "64" 39) "hll-sparse-max-bytes" 40) "3000" 41) "lua-time-limit" 42) "5000" 43) "slowlog-log-slower-than" 44) "10000" 45) "latency-monitor-threshold" 46) "0" 47) "slowlog-max-len" 48) "128" 49) "port" 50) "6379" 51) "tcp-backlog" 52) "511" 53) "databases" 54) "16" 55) "repl-ping-slave-period" 56) "10" 57) "repl-timeout" 58) "60" 59) "repl-backlog-size" 60) "1048576" 61) "repl-backlog-ttl" 62) "3600" 63) "maxclients" 64) "4064" 65) "watchdog-period" 66) "0" 67) "slave-priority" 68) "100" 69) "min-slaves-to-write" 70) "0" 71) "min-slaves-max-lag" 72) "10" 73) "hz" 74) "10" 75) "no-appendfsync-on-rewrite" 76) "no" 77) "slave-serve-stale-data" 78) "yes" 79) "slave-read-only" 80) "yes" 81) "stop-writes-on-bgsave-error" 82) "yes" 83) "daemonize" 84) "no" 85) "rdbcompression" 86) "yes" 87) "rdbchecksum" 88) "yes" 89) "activerehashing" 90) "yes" 91) "repl-disable-tcp-nodelay" 92) "no" 93) "aof-rewrite-incremental-fsync" 94) "yes" 95) "appendonly" 96) "no" 97) "dir" 98) "/home/deepak/downloads/redis-2.8.13/src" 99) "maxmemory-policy" 100) "volatile-lru" 101) "appendfsync" 102) "everysec" 103) "save" 104) "3600 1 300 100 60 10000" 105) "loglevel" 106) "notice" 107) "client-output-buffer-limit" 108) "normal 0 0 0 slave 268435456 67108864 60 pubsub 33554432 8388608 60" 109) "unixsocketperm" 110) "0" 111) "slaveof" 112) "" 113) "notify-keyspace-events" 114) "" 115) "bind" 116) ""
编辑配置
要更新配置,可以直接编辑redis.conf文件或更新配置,通过config set命令
语法
config set命令的基本语法如下所示:
redis 127.0.0.1:6379> config set config_setting_name new_config_value
例子
redis 127.0.0.1:6379> config set loglevel "notice" ok redis 127.0.0.1:6379> config get loglevel 1) "loglevel" 2) "notice"
推荐阅读