一、redis安裝步驟
[root@localhost ~]# mkdir -p /opt/redis_cluster/reddis_6379
[root@localhost ~]# mkdir -p /opt/redis_cluster/reddis_6379/
[root@localhost ~]# mkdir -p /data/redis_cluster/redis_6379 ###本地資料庫目錄
[root@localhost ~]# mkdir -p /data/soft ###用來放安裝包
[root@localhost ~]# cd /data/soft/
[root@localhost soft]# wget
[root@localhost soft]# tar -zxf tar zxf redis-5.0.5.tar.gz -c /opt/redis_cluster/
[root@localhost soft]# ln -s /opt/redis_cluster/redis-5.0.5/ /opt/redis_cluster/redis
cd /opt/redis_cluster/redis
make malloc=libc ###如果直接執行make會報錯,所以需要指定庫
make install
cd /opt/redis_cluster/redis/utils
執行 ./install_server.sh 接下來一直按回車,完成配置的初始化,之後展示詳細資訊:
selected config:
port : 6379
config file : /etc/redis/6379.conf
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配置檔案
單節點的redis配置很簡單,手動編寫即可.(如果你的配置需求比較多,可以參照/etc/redis/6379.conf,這是官方詳細的配置檔案.)
cd /opt/redis_cluster/redis_6379/conf/
vim redis_6379.conf
### 以守護程序模式啟動
daemonize yes
### 繫結的主機位址
bind 192.168.1.1
### 監聽埠
port 6379
### pid檔案和log檔案的儲存位址
pidfile /opt/redis_cluster/redis_6379/pid/redis_6379.pid
logfile /opt/redis_cluster/redis_6379/logs/redis_6379.log
### 設定資料庫的數量,預設資料庫為0
databases 16
### 制定本地持久化檔案的檔名,預設是dump.rdb
dbfilename redis_6379.rdb
### 本地資料庫的目錄
dir /data/redis_cluster/redis_6379
三、啟動和關閉redis
[root@localhost ~]# redis-server /opt/redis_cluster/redis_6379/conf/redis_6379.conf ###啟動redis服務端
[root@localhost ~]# ps aux | grep redis
root 35003 0.1 0.4 46992 4400 ? ssl 03:57 0:00 redis-server 192.168.1.1:6379
root 35039 0.0 0.1 12320 1076 pts/1 r+ 04:00 0:00 grep --color=auto redis
[root@localhost ~]# redis-cli -h 192.168.1.1 ###登入redis資料庫
192.168.1.1:6379> shutdown ###關閉資料庫
not connected> exit
或者: [root@localhost ~]# redis-cli -h 192.168.146.129 shutdown ###關閉資料庫
redis資料庫的安裝使用
乙個開源,用鍵值對的儲存方式,查詢快 redis會把資料儲存在 記憶體裡 裡,使用磁碟進行持久化 資料型別豐富 hash 用於儲存物件 雜湊表 list 列表的元素為string 按照順序插入頭或者尾 set 無序集合,型別也是string,唯一性,不重複 zset 有序集合,string,唯一性,...
Linux下安裝Redis資料庫
linux下安裝redis 沒有wget命令的話執行yum安裝 yum y install wget 解壓安裝包 tar zvxf redis 4.0.8.tar.gz 進入解壓目錄,編譯和安裝 make,cd src,make install prefix usr local redis 建立et...
Linux安裝Redis資料庫教程
目錄 一 安裝編譯 二 配置啟動 嘗試啟動 wget 不過 redis是由c語言編寫的,它的執行需要c環境,所以編譯前需安裝 gcc yum install gcc c make 成功之後 redis 5.0.0 src 下的 檔案明顯增多 主要就是 redis server 進入src 目錄後 m...