溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

怎么用CentOS 7.5源碼包部署安裝Redis 6.2.0

發(fā)布時(shí)間:2022-04-07 16:38:15 來(lái)源:億速云 閱讀:123 作者:iii 欄目:編程語(yǔ)言

本文小編為大家詳細(xì)介紹“怎么用CentOS 7.5源碼包部署安裝Redis 6.2.0”,內(nèi)容詳細(xì),步驟清晰,細(xì)節(jié)處理妥當(dāng),希望這篇“怎么用CentOS 7.5源碼包部署安裝Redis 6.2.0”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來(lái)學(xué)習(xí)新知識(shí)吧。

安裝Redis 6.2.0
wget http://download.redis.io/releases/redis-6.2.0.tar.gz
yum -y install gcc automake autoconf libtool make
tar -xzvf redis-6.2.0.tar.gz && redis-6.2.0.tar.gz
cd redis-6.2.0
make
cd src
make install PREFIX=/usr/local/redis
若出現(xiàn)zmalloc.h:50:31: 致命錯(cuò)誤:jemalloc/jemalloc.h:沒(méi)有那個(gè)文件或目錄,則運(yùn)行命令
make MALLOC=libc
cd ../
mkdir /etc/redis
mv redis.conf /etc/redis/
vim /etc/redis/redis.conf
//將daemonize no改成daemonize yes,輸入行數(shù)+gg可以快捷跳行。例如跳到第138行,輸入:138gg
//注釋第70行bind
//第90行protected-mode改為no
//取消第502行注釋并修改密碼

將Redis加入到開(kāi)機(jī)啟動(dòng)
cat >> /etc/rc.local <<EOF
/usr/local/redis/bin/redis-server /etc/redis.conf
EOF

開(kāi)啟Redis
/usr/local/redis/bin/redis-server /etc/redis/redis.conf

cat >> /etc/profile <<EOF
export PATH=/usr/local/redis/bin:$PATH
EOF
source /etc/profile

常用命令  
redis-server /etc/redis.conf  //啟動(dòng)Redis
pkill redis                   //停止Redis

重啟Redis:
#首先查詢到Redis的pid后,kill掉,然后重啟
[root@localhost bin]# ps -elf | grep -v grep | grep redis
root 20940 1 0 12:12 ? 00:00:18 ./redis-server *:6379
[root@localhost bin]# kill 20940
[root@localhost bin]# redis-server redis.conf
采用Redis Desktop Manager遠(yuǎn)程連接Redis服務(wù)器

卸載Redis:
rm -rf /usr/local/redis              //刪除安裝目錄
rm -rf /usr/bin/redis-*              //刪除所有Redis相關(guān)命令腳本
rm -rf /root/download/redis-6.2.0    //刪除Redis解壓文件夾

讀到這里,這篇“怎么用CentOS 7.5源碼包部署安裝Redis 6.2.0”文章已經(jīng)介紹完畢,想要掌握這篇文章的知識(shí)點(diǎn)還需要大家自己動(dòng)手實(shí)踐使用過(guò)才能領(lǐng)會(huì),如果想了解更多相關(guān)內(nèi)容的文章,歡迎關(guān)注億速云行業(yè)資訊頻道。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI