CentOS/Windows安裝Redis

一、Windows

1.下載安裝包 https://github.com/MicrosoftArchive/redis/releases 這裏寫圖片描述git

2.這裏下載的是zip壓縮包,解壓到你想要安裝的目錄 這裏寫圖片描述github

3.啓動redis

  • 打開cmd命令,進入安裝路徑
  • 執行redis-server.exe
  • 默認端口:6379

這裏寫圖片描述

4.修改基本配置vim

 - 編輯redis.windows.confwindows

################################## SECURITY ###################################
# requirepass foobared
requirepass mypassword

 - 最大內存ui

################################### LIMITS ####################################
# maxmemory <bytes>
maxmemory 1024000000
  • 啓動方式加入配置文件
redis-server.exe redis.windows.conf

5.中止code

ctrl+c就能夠中止

二、CentOS

1.安裝基本配置server

yum install cpp  
yum install binutils
yum install glibc-kernheaders
yum install glibc-common
yum install glibc-devel
yum install gcc
yum install make

2.下載redisblog

$ wget http://download.redis.io/releases/redis-4.0.2.tar.gz
$ tar xzf redis-4.0.2.tar.gz
$ cd redis-4.0.2
$ make

3.修改配置進程

vim redis.conf

修改完畢後按Esc執行   :wq!   保存並退出

4.運行 進入安裝目錄執行

redis-server ./redis.conf

5.中止

  • 兩種方式
//查詢redis進程
ps -ef | grep redis
//結束進程
kill -9 pid
redis-cli SHUTDOWN

========

相關文章
相關標籤/搜索