這篇文章給大家分享的是有關(guān)如何通過源碼安裝redis-3.0.5的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
讓客戶滿意是我們工作的目標,不斷超越客戶的期望值來自于我們對這個行業(yè)的熱愛。我們立志把好的技術(shù)通過有效、簡單的方式提供給客戶,將通過不懈努力成為客戶在信息化領(lǐng)域值得信任、有價值的長期合作伙伴,公司提供的服務項目有:域名申請、雅安服務器托管、營銷軟件、網(wǎng)站建設(shè)、鐵西網(wǎng)站維護、網(wǎng)站推廣。##### 安裝redis-server #####
# 創(chuàng)建運行用戶
useradd redis -s /sbin/nologin -M# 上傳軟件到指定位置,我的軟件保存位置為
mkdir -p /server/tools/# 解壓,配置,編譯,安裝
cd /server/tools/ tar -zxf redis-3.0.5.tar.gz cd redis-3.0.5 make PREFIX=/usr/local/redis make PREFIX=/usr/local/redis install# 配置redis環(huán)境變量
echo ' ' >> /etc/profile echo 'PATH for redis-server' >> /etc/profile echo 'export PATH=/usr/local/redis/bin/:$PATH' >> /etc/profile tail -3 /etc/profile source /etc/profile echo $PATH# 或者(重啟失效)
export PATH=/usr/local/redis/bin/:$PATH echo $PATH# 創(chuàng)建配置文件,數(shù)據(jù),日志等相關(guān)目錄,并拷貝配置文件
# 創(chuàng)建規(guī)范的目錄結(jié)構(gòu)有助于行成良好習慣,提高效率
mkdir -p /usr/local/redis/conf mkdir -p /usr/local/redis/data mkdir -p /usr/local/redis/logs cp redis.conf /usr/local/redis/conf/ cd /usr/local/redis/conf/ tree /usr/local/redis# 到此redis基本配置便已完成,可以使用redis初始配置進行啟動
# 啟動命令
/usr/local/redis/bin/redis-server /usr/local/redis/conf/redis.conf &# 查看啟動狀態(tài),進程和端口
ps -ef |grep redis netstat -anptl |grep redis# 測試及使用
# 客戶端連接命令為:
/usr/local/redis/bin/redis-cli -p 6379 [root@cache redis]# redis-cli -p 6379 127.0.0.1:6379> set a 1 OK 127.0.0.1:6379> get a "1" 127.0.0.1:6379> set b 2 OK 127.0.0.1:6379> set c 3 OK 127.0.0.1:6379> keys * 1) "c" 2) "a" 3) "b" 127.0.0.1:6379> exit# 以上為簡單測試,驗證安裝正確與否
# 安全關(guān)閉redis
/usr/local/redis/bin/redis-cli shutdown# 關(guān)閉redis時,數(shù)據(jù)默認會保存在啟動redis時候所在的位置,保存為dump.rdb
-------- 簡單優(yōu)化redis ---------
# 以默認配置啟動redis-server會出現(xiàn)以下警告信息:不影響使用,
# 不過以筆者的習慣自然不會容忍此等警告信息的存在:
[root@cache redis]# redis-server /usr/local/redis/conf/redis.conf & [1] 4570 [root@cache redis]# [4570] 07 Dec 03:54:50.938 * Increased maximum number of open files to 10032 (it was originally set to 1024). _._ _.-``__ ''-._ _.-`` `. `_. ''-._ Redis 3.0.5 (00000000/0) 64 bit .-`` .-```. ```\/ _.,_ ''-._ ( ' , .-` | `, ) Running in stand alone mode |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379 | `-._ `._ / _.-' | PID: 4570 `-._ `-._ `-./ _.-' _.-' |`-._`-._ `-.__.-' _.-'_.-'| | `-._`-._ _.-'_.-' | http://redis.io `-._ `-._`-.__.-'_.-' _.-' |`-._`-._ `-.__.-' _.-'_.-'| | `-._`-._ _.-'_.-' | `-._ `-._`-.__.-'_.-' _.-' `-._ `-.__.-' _.-' `-._ _.-' `-.__.-' [4570] 07 Dec 03:54:50.939 # Server started, Redis version 3.0.5 [4570] 07 Dec 03:54:50.939 # WARNING overcommit_memory is set to 0! Background save may fail under low memory condition. To fix this issue add 'vm.overcommit_memory = 1' to /etc/sysctl.conf and then reboot or run the command 'sysctl vm.overcommit_memory=1' for this to take effect. [4570] 07 Dec 03:54:50.939 # WARNING you have Transparent Huge Pages (THP) support enabled in your kernel. This will create latency and memory usage issues with Redis. To fix this issue run the command 'echo never > /sys/kernel/mm/transparent_hugepage/enabled' as root, and add it to your /etc/rc.local in order to retain the setting after a reboot. Redis must be restarted after THP is disabled. [4570] 07 Dec 03:54:50.939 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128. [4570] 07 Dec 03:54:50.939 * The server is now ready to accept connections on port 6379# 根據(jù)啟動日志提示需要優(yōu)化一些內(nèi)核的參數(shù),按提示操作:
echo never > /sys/kernel/mm/transparent_hugepage/enabled cat /sys/kernel/mm/transparent_hugepage/enabled echo 511 > /proc/sys/net/core/somaxconn cat /proc/sys/net/core/somaxconn echo "vm.overcommit_memory = 1" >>/etc/sysctl.conf sysctl -p# 以上操作重啟失效,可以按下操作配置下次開機生效,順便設(shè)置redis開機自啟動
echo " " >> /etc/rc.local echo "# redis-server by zs in $(date +%F)" >> /etc/rc.local echo "echo never > /sys/kernel/mm/transparent_hugepage/enabled" >> /etc/rc.local echo "echo 511 > /proc/sys/net/core/somaxconn" >>/etc/rc.local echo "/usr/local/redis/bin/redis-server /usr/local/redis/conf/redis.conf" >> /etc/rc.local tail -5 /etc/rc.local# 繼續(xù)優(yōu)化配置文件
vim /usr/local/redis/conf/redis.conf# 在配置文件中尋找以下關(guān)鍵字,可以按照以下內(nèi)容修改:
daemonize yes # 是否后臺運行,yes為后臺運行 pidfile /usr/local/redis/logs/redis.pid # redis的pid文件保存位置 port 6379 # redis監(jiān)控端口 bind 0.0.0.0 # redis監(jiān)控的IP timeout 0 # 客戶端連接關(guān)閉時服務端保持連接的時長,超時 # 0為不斷開連接,等待客戶端再次連接 logfile "/usr/local/redis/logs/redis.log" # 日志文件保存位置 dbfilename redis.rdb # redis數(shù)據(jù)文件名 dir /usr/local/redis/data/ # redis數(shù)據(jù)保存位置 appendonly yes # 是否寫日志,類似于mysql的bin-log以上為簡單的redis優(yōu)化配置
感謝各位的閱讀!關(guān)于“如何通過源碼安裝redis-3.0.5”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
另外有需要云服務器可以了解下創(chuàng)新互聯(lián)cdcxhl.cn,海內(nèi)外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。
分享名稱:如何通過源碼安裝redis-3.0.5-創(chuàng)新互聯(lián)
網(wǎng)站鏈接:http://vcdvsql.cn/article20/csipjo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供品牌網(wǎng)站建設(shè)、云服務器、App設(shè)計、網(wǎng)站策劃、ChatGPT、企業(yè)建站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容