在centos6 3用yum安裝redis

2021-09-01 23:32:11 字數 1660 閱讀 9566

一、centos預設的安裝源在官方centos.org上,

而redis在第三方的yum源裡,所以

無法安裝,非官方的yum推薦用fedora的epel倉庫。當然也可通過配置

/etc/yum.

repos.d/centos-base.repo檔案增加yum源。

三、yum 安裝redis

/usr/bin/redis-check-dump :用於本地資料庫檢查;檢查file.rdb 檔案

/usr/bin/redis-check-aof :更新日誌檢查;檢查file.aof 檔案

/usr/bin/redis-cli :redis命令列操作工具;也可以用telnet根據其純文字協議來操作

/usr/bin/redis-benchmark :redis效能測試工具,測試redis在你的系統及你的配置下的讀寫效能

/usr/sbin/redis-server :redis伺服器的daemon啟動程式

[root@localhost ~]#redis-benchmark -h localhost -p 6379 -c 100 -n 100000

100個併發連線,100000個請求,檢測host為localhost 埠為6379的redis伺服器效能

[root@localhost ~]#redis-cli -h localhost -p 6379 monitor

dump all the received requests in real time;

監控host為localhost,埠為6380,redis的連線及讀寫操作

[root@localhost ~]#redis-cli -h localhost -p 6379 info

provide information and statistics about the server

提供host為localhost,埠為63

在CentOS6 3上如何用yum安裝nginx

在centos6.3上如何用yum安裝nginx 預設的yum源比較老也不全,在update這的那的之後,還是沒有nginx的身影,別折騰了,標準包是沒有這玩意兒的。sh atomic 安裝 yum check update 更新yum軟體包 2 安裝nginx yum install nginx ...

CentOS 6 3用yum安裝中文輸入法

源自 centos英文系統安裝中文輸入法,簡單說說在centos 6.3下用yum安裝中文輸入法的過程。1.需要root許可權,所以要用root登入 或su root 2.yum install chinese support img 3.exit 4.回到桌面,system preferences...

CentOS6 3下利用yum源安裝nginx。

本文主要介紹在centos6.3下利用yum源安裝nginx。第一步在 etc yum.repos.d 目錄下建立乙個nginx.repo軟體源配置檔案。命令如下 cd etc yum.repos.d vim 然後填寫如下檔案內容 nginx name nginx repo baseurl gpgc...