在 CentOS 7 系統中安裝 Redis

2021-10-09 14:45:08 字數 1188 閱讀 7626

作業系統

$ cat /etc/centos-release

centos linux release 7.7.1908 (core)

$ uname --kernel-release

3.10.0-1062.el7.x86_64

gcc 版本

gcc --version

gcc (gcc) 4.8.5 20150623 (red hat 4.8.5-39)

this is free software; see the source

for copying conditions. there is no

warranty; not even for merchantability or fitness for a particular purpose.

臨時使用 gcc 9:

$ yum -y install centos-release-scl

$ yum -y install devtoolset-9-gcc devtoolset-9-gcc-c++ devtoolset-9-binutils

$ scl enable devtoolset-9 bash

注意:編譯 redis 需要高版本 gcc 的支援,否則會報錯!

$ wget
解壓檔案:

tar xzf redis-6.0.8.tar.gz
進入解壓得到的redis-6.0.8資料夾,並編譯:

$ cd redis-6.0.8 &&

make

編譯成功之後,可以執行 redis 伺服器:

$ ./src/redis-server
執行 redis 客戶端:

$ ./src/redis-cli
如果要關閉 redis 伺服器,可以使用 redis 客戶端連線 redis 伺服器,然後發出shutdown命令。

centos 7.7系統安裝redis 6.0.3

為centos 6、7公升級gcc至4.8、4.9、5.2、6.3、7.3等高版本

在CentOS7中安裝TensorFlow

之後,請到 學習安裝centos7 進入centos,開啟終端,切換為管理員模式。輸入 cd 並按下回車鍵,以切換到家目錄。輸入 yum y install epel release 並按下回車鍵,等待安裝完成。輸入 yum install python pip 並按下回車鍵,等待安裝完成。輸入 p...

在Centos 7中安裝 Mysql

一 安裝mysql a 檢視centos發行版本cat etc redhat release b 根據linux發行版本 centos fedora都屬於紅帽系 從mysql官方 獲取yumrepository。輸入命令 wget i c 安裝完 mysql 的yum repository 每次執行...

在centos7中安裝mysql

切換root 去mysql官網 下一步安裝mysql yum install mysql community server y 修改關閉密碼驗證 alter user root localhost identified by 修改 etc my.cnf 在最後新增 開啟 systemctl star...