bl双性强迫侵犯h_国产在线观看人成激情视频_蜜芽188_被诱拐的少孩全彩啪啪漫画

Redis5.05中單獨(dú)模式安裝及配置的示例分析

這篇文章主要介紹了redis 5.05中單獨(dú)模式安裝及配置的示例分析,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

創(chuàng)新互聯(lián)主營大田網(wǎng)站建設(shè)的網(wǎng)絡(luò)公司,主營網(wǎng)站建設(shè)方案,app軟件開發(fā),大田h5微信小程序搭建,大田網(wǎng)站營銷推廣歡迎大田等地區(qū)企業(yè)咨詢

操作系統(tǒng)Centos7 

1、下載redis 

wget http://download.redis.io/releases/redis-5.0.5.tar.gz
tar xzf redis-5.0.5.tar.gz
cd redis-5.0.5
make

2、啟動服務(wù) 

命令執(zhí)行完成之后,既可以啟動Redis 服務(wù)

[root@zk02 redis]# src/redis-server 
5265:C 23 Oct 2019 16:58:04.682 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo
5265:C 23 Oct 2019 16:58:04.682 # Redis version=5.0.5, bits=64, commit=00000000, modified=0, pid=5265, just started
5265:C 23 Oct 2019 16:58:04.682 # Warning: no config file specified, using the default config. In order to specify a config file use src/redis-server /path/to/redis.conf
5265:M 23 Oct 2019 16:58:04.683 * Increased maximum number of open files to 10032 (it was originally set to 1024).
  _._       
  _.-``__ ''-._      
 _.-`` `. `_. ''-._  Redis 5.0.5 (00000000/0) 64 bit
 .-`` .-```. ```\/ _.,_ ''-._     
 ( ' , .-` | `, ) Running in standalone mode
 |`-._`-...-` __...-.``-._|'` _.-'| Port: 6379
 | `-._ `._ / _.-' | PID: 5265
 `-._ `-._ `-./ _.-' _.-'     
 |`-._`-._ `-.__.-' _.-'_.-'|     
 | `-._`-._ _.-'_.-' |  http://redis.io 
 `-._ `-._`-.__.-'_.-' _.-'     
 |`-._`-._ `-.__.-' _.-'_.-'|     
 | `-._`-._ _.-'_.-' |     
 `-._ `-._`-.__.-'_.-' _.-'     
 `-._ `-.__.-' _.-'     
  `-._ _.-'      
  `-.__.-'      
 
5265:M 23 Oct 2019 16:58:04.684 # WARNING: The TCP backlog setting of 511 cannot be enforced because /proc/sys/net/core/somaxconn is set to the lower value of 128.
5265:M 23 Oct 2019 16:58:04.684 # Server initialized
5265:M 23 Oct 2019 16:58:04.684 # 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.
5265:M 23 Oct 2019 16:58:04.684 # 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.
5265:M 23 Oct 2019 16:58:04.684 * Ready to accept connections

3、通過內(nèi)置的客戶端與redis 交互

[root@zk02 redis]# src/redis-cli 
127.0.0.1:6379> set foo bar 
OK
127.0.0.1:6379> get foo
"bar"
127.0.0.1:6379>

日志的打開文件數(shù),可通過如下命令設(shè)置

ulimit -n 10032

ps:下面看下Redis 5.0.5 單節(jié)點(diǎn) 安裝配置

下載

http://download.redis.io/releases/redis-5.0.5.tar.gz

解壓

tar -C /usr/local -xvf redis-5.0.5.tar.gz

編譯安裝

cd /usr/local/redis-5.0.5
make install

使用make install 安裝,默認(rèn)安裝目錄是/usr/local/bin/

Redis配置文件

將示例配置文件拷貝到/etc/redis/639.conf

mkdir /etc/redis
cp /usr/local/redis-5.0.5/redis.conf /etc/redis/6379.conf

關(guān)閉保護(hù)模式

protected-mode no

開放其他主機(jī)訪問,注釋掉bind 127.0.0.1

bind 127.0.0.1

更改為后臺啟動

daemonize yes

日志記錄,需要先創(chuàng)建目錄/var/applogs/redis

logfile "/var/applogs/redis/redis.log"

數(shù)據(jù)存儲目錄

mkdir -p /var/redis-data/
dir /var/redis-data

設(shè)置密碼

requirepass xxxx

Redis配置開機(jī)啟動服務(wù)

使用Redis自帶的啟動腳本

cp /root/share/deploy-ready/redis-5.0.5/utils/redis_init_script /etc/init.d/redisd

配置開啟自啟動

chkconfig redisd on

設(shè)置開機(jī)自啟動

chkconfig redisd on

防火墻開發(fā)6379端口

firewall-cmd --permanent --add-port=6379/tcp
firewall-cmd --reload

客戶端連接Redis

redis-cli -h 192.168.43.197 -p 6379 -a xxxx

感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“Redis 5.05中單獨(dú)模式安裝及配置的示例分析”這篇文章對大家有幫助,同時也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識等著你來學(xué)習(xí)!

文章題目:Redis5.05中單獨(dú)模式安裝及配置的示例分析
當(dāng)前URL:http://vcdvsql.cn/article46/iigceg.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供虛擬主機(jī)ChatGPT定制網(wǎng)站外貿(mào)網(wǎng)站建設(shè)品牌網(wǎng)站制作

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

成都做網(wǎng)站