您好,登錄后才能下訂單哦!
這篇文章主要介紹“centos7怎么安裝單機(jī)環(huán)境redis3.2”的相關(guān)知識(shí),小編通過實(shí)際案例向大家展示操作過程,操作方法簡(jiǎn)單快捷,實(shí)用性強(qiáng),希望這篇“centos7怎么安裝單機(jī)環(huán)境redis3.2”文章能幫助大家解決問題。
本次安裝的系統(tǒng)版本如下:
[root@zhangqinglei ~]# cat /etc/redhat-release
CentOS Linux release 7.5.1804 (Core)
[root@zhangqinglei ~]# lsb_release -a
LSB Version: :core-4.1-amd64:core-4.1-noarch:cxx-4.1-amd64:cxx-4.1-noarch:desktop-4.1-amd64:desktop-4.1-
noarch:languages-4.1-amd64:languages-4.1-noarch:printing-4.1-amd64:printing-4.1-noarchDistributor ID: CentOS
Description: CentOS Linux release 7.5.1804 (Core)
Release: 7.5.1804
Codename: Core
因不同的系統(tǒng)版本會(huì)存在一些差異,因此記錄比對(duì)。后續(xù)針對(duì)centos其他版本測(cè)試安裝說明。
本次安裝的redis版本如下
redis-3.2.13.tar.gz
安裝在一臺(tái)服務(wù)器,并且分別提供不同的端口。以及針對(duì)redis的卸載進(jìn)行說明。
目錄:
安裝目錄:/home/soft
工具目錄:/home/tools
rz上傳到工具目錄,redis-3.2.13.tar.gz
解壓到soft目錄
tar -zxvf redis-3.2.13.tar.gz -C /home/soft/
cd /home/soft/
改名
mv redis-3.2.13 redis3-6379
表示為redis3版本,開放端口為6379
進(jìn)入目錄開始安裝
cd redis3-6379
make && make install
等待1分鐘左右后執(zhí)行完成無報(bào)錯(cuò)
進(jìn)入到utils目錄下,執(zhí)行redis初始化腳本install_server.sh
cd utils/
./install_server.sh
執(zhí)行如下步驟
填寫端口號(hào),以及其他的路徑,如果默認(rèn)則直接回車
從安裝過程來看,創(chuàng)建了一個(gè)文件在
/etc/init.d/redis_6379
查看該文件內(nèi)容
#!/bin/sh#Configurations injected by install_server below.... EXEC=/usr/local/bin/redis-server CLIEXEC=/usr/local/bin/redis-cli PIDFILE=/var/run/redis_6379.pid CONF="/etc/redis/6379.conf"REDISPORT="6379"############### # SysV Init Information # chkconfig: - 58 74# description: redis_6379 is the redis daemon. ### BEGIN INIT INFO # Provides: redis_6379 # Required-Start: $network $local_fs $remote_fs # Required-Stop: $network $local_fs $remote_fs # Default-Start: 2 3 4 5# Default-Stop: 0 1 6# Should-Start: $syslog $named # Should-Stop: $syslog $named # Short-Description: start and stop redis_6379 # Description: Redis daemon ### END INIT INFOcase "$1" instart)if [ -f $PIDFILE ]thenecho "$PIDFILE exists, process is already running or crashed"elseecho "Starting Redis server..."$EXEC $CONFfi;; stop)if [ ! -f $PIDFILE ]thenecho "$PIDFILE does not exist, process is not running"elsePID=$(cat $PIDFILE)echo "Stopping ..."$CLIEXEC -p $REDISPORT shutdownwhile [ -x /proc/${PID} ]doecho "Waiting for Redis to shutdown ..."sleep 1doneecho "Redis stopped"fi;; status) PID=$(cat $PIDFILE)if [ ! -x /proc/${PID} ]thenecho 'Redis is not running'elseecho "Redis is running ($PID)"fi;; restart) $0 stop $0 start ;;*)echo "Please use start, stop, restart or status as first argument";;esac
可以得知,
啟動(dòng)為/etc/init.d/redis_6379 start
停止為/etc/init.d/redis_6379 stop
查看狀態(tài)為/etc/init.d/redis_6379 status
redis.config默認(rèn)綁定的IP為127.0.0.1,密碼沒有設(shè)置
安裝即啟動(dòng)了,查看狀態(tài)
[root@zhangqinglei redis3-6379]# /etc/init.d/redis_6379 status
Redis is running (8236)
當(dāng)前正在運(yùn)行中,進(jìn)程ID為8236
進(jìn)入到src目錄下,使用redis-cli進(jìn)行連接測(cè)試
[root@zhangqinglei src]# ./redis-cli -h 127.0.0.1 -p 6379
127.0.0.1:6379> set first 1
OK
127.0.0.1:6379> get first
“1”
127.0.0.1:6379> keys *
1) “first”
使用exit退出。至此成功安裝。
關(guān)于“centos7怎么安裝單機(jī)環(huán)境redis3.2”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí),可以關(guān)注億速云行業(yè)資訊頻道,小編每天都會(huì)為大家更新不同的知識(shí)點(diǎn)。
免責(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)容。