centos7下redis的安裝和使用
please select the redis port for this instance: [6379]
selecting default: 6379
please select the redis config file name [/etc/redis/6379.conf]
selected default - /etc/redis/6379.conf
please select the redis log file name [/var/log/redis_6379.log]
selected default - /var/log/redis_6379.log
please select the data directory for this instance [/var/lib/redis/6379]
selected default - /var/lib/redis/6379
please select the redis executable path [/usr/local/bin/redis-server]
selected config:
port : 6379
config file : /etc/redis/6379.conf #並且要對這個配置檔案中的bind 127.0.0.1 改為0.0.0.0,否則外部無法訪問。
log file : /var/log/redis_6379.log
data dir : /var/lib/redis/6379
executable : /usr/local/bin/redis-server
cli executable : /usr/local/bin/redis-cli
is this ok? then press enter to go on or ctrl-c to abort.
copied /tmp/6379.conf => /etc/init.d/redis_6379
installing service...
successfully added to chkconfig!
successfully added to runlevels 345!
starting redis server...
installation successful!
redis服務檢視、開啟、關閉:
a.通過ps -ef|grep redis命令檢視redis程序
b.開啟redis服務操作通過/etc/init.d/redis_6379 start命令,也可通過(service redis_6379 start)
c.關閉redis服務操作通過/etc/init.d/redis_6379 stop命令,也可通過(service redis_6379 stop)
redis的安裝小記
2 解壓原始碼並進入目錄 3 make 4 可選操作 make test 可能出現need tcl 8.4,yum install tcl 5 安裝到指定目錄,如 usr local redis make prefix usr local redis install 拷貝之前2 的解壓目錄中的red...
Redis小記(一)簡介
redis是一款開源的 高效能的鍵 值儲存 key value store 它常被稱作是一款資料結構伺服器 data structure server redis的鍵值可以包括字串 strings 雜湊 hashes 列表 lists 集合 sets 和 有序集合 sorted sets 等資料型別...
Redis集群部署小記。
第一步 使用yum install gcc c 安裝gcc環境 wget tar zxvf redis 3.0.7.tar.gz cd redis 3.0.7 make make prefix usr local redis install cp redis.conf usr local redis...