您好,登錄后才能下訂單哦!
本文小編為大家詳細介紹“怎么用CentOS 7.5源碼包部署安裝Redis 6.2.0”,內容詳細,步驟清晰,細節處理妥當,希望這篇“怎么用CentOS 7.5源碼包部署安裝Redis 6.2.0”文章能幫助大家解決疑惑,下面跟著小編的思路慢慢深入,一起來學習新知識吧。
安裝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
若出現zmalloc.h:50:31: 致命錯誤:jemalloc/jemalloc.h:沒有那個文件或目錄,則運行命令
make MALLOC=libc
cd ../
mkdir /etc/redis
mv redis.conf /etc/redis/
vim /etc/redis/redis.conf
//將daemonize no改成daemonize yes,輸入行數+gg可以快捷跳行。例如跳到第138行,輸入:138gg
//注釋第70行bind
//第90行protected-mode改為no
//取消第502行注釋并修改密碼
將Redis加入到開機啟動
cat >> /etc/rc.local <<EOF
/usr/local/redis/bin/redis-server /etc/redis.conf
EOF
開啟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 //啟動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遠程連接Redis服務器
卸載Redis:
rm -rf /usr/local/redis //刪除安裝目錄
rm -rf /usr/bin/redis-* //刪除所有Redis相關命令腳本
rm -rf /root/download/redis-6.2.0 //刪除Redis解壓文件夾
讀到這里,這篇“怎么用CentOS 7.5源碼包部署安裝Redis 6.2.0”文章已經介紹完畢,想要掌握這篇文章的知識點還需要大家自己動手實踐使用過才能領會,如果想了解更多相關內容的文章,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。