资讯专栏INFORMATION COLUMN

centos下安装JAVA开发工具(4)------Redis

jcc / 603人阅读

摘要:的安装准备工作安装目录软件存放目录数据存放目录日志存放目录安装编译语言的环境,是写的。

1 redis的安装:

1.1 准备工作

安装目录:/export/servers

软件存放目录:/export/software

数据存放目录:/export/data

日志存放目录:/export/logs

mkdir -p /export/servers/
mkdir -p /export/software/
mkdir -p /export/data/
mkdir -p /export/logs

1.2 安装GCC

编译C语言的环境,redis是C写的。

yum -y install gcc gcc-c++ libstdc++-devel tcl -y

1.3 下载安装包

cd /export/software/
wget http://download.redis.io/releases/redis-4.0.2.tar.gz
tar -zxvf redis-4.0.2.tar.gz  -C ../servers
cd /export/servers/
mv redis-4.0.2 redis-src

1.4 编译Redis

cd /export/servers/redis-src/
make MALLOC=libc
make PREFIX=/export/servers/redis install

1.5 准备配置文件

mkdir -p /export/servers/redis/conf
cd /export/servers/redis/conf
vi redis_6379.conf

配置文件如下:

bind 这个属性配置redis的绑定的ip地址,一般不设置为127.0.0.1, 将其录入的配置文件中, 保存退出即可

bind 192.168.72.144
protected-mode yes
port 6379
tcp-backlog 511
timeout 0
tcp-keepalive 300
daemonize yes
supervised no
pidfile /export/data/redis/6379/redis_6379.pid
loglevel notice
logfile "/export/data/redis/6379/log.log"
databases 16
always-show-logo yes
save 900 1
save 300 10
save 60 10000
stop-writes-on-bgsave-error yes
rdbcompression yes
rdbchecksum yes
dbfilename dump.rdb
dir /export/data/redis/6379/
slave-serve-stale-data yes
slave-read-only yes
repl-diskless-sync no
repl-diskless-sync-delay 5
repl-disable-tcp-nodelay no
slave-priority 100
lazyfree-lazy-eviction no
lazyfree-lazy-expire no
lazyfree-lazy-server-del no
slave-lazy-flush no
appendonly yes
appendfilename "appendonly.aof"
appendfsync everysec
no-appendfsync-on-rewrite no
auto-aof-rewrite-percentage 100
auto-aof-rewrite-min-size 64mb
aof-load-truncated yes
aof-use-rdb-preamble no
lua-time-limit 5000
slowlog-log-slower-than 10000
slowlog-max-len 128
latency-monitor-threshold 0
notify-keyspace-events ""
hash-max-ziplist-entries 512
hash-max-ziplist-value 64
list-max-ziplist-size -2
list-compress-depth 0
set-max-intset-entries 512
zset-max-ziplist-entries 128
zset-max-ziplist-value 64
hll-sparse-max-bytes 3000
activerehashing yes
client-output-buffer-limit normal 0 0 0
client-output-buffer-limit slave 256mb 64mb 60
client-output-buffer-limit pubsub 32mb 8mb 60
hz 10
aof-rewrite-incremental-fsync yes

1.6 启动服务

mkdir -p /export/data/redis/6379/
cd /export/servers/redis/bin/
./redis-server ../conf/redis_6379.conf

查看命令
ps -ef|grep redis

redis 的服务端启动(此操作已在上面执行):

[root@localhost bin]# cd /usr/local/redis/bin/
[root@localhost bin]# ./redis-server ../conf/redis_6379.conf

redis客户端连接

说明 -h 后面跟的是配置文件中 bind 设置的ip地址值

[root@localhost bin]# cd /usr/local/redis/bin/
[root@localhost bin]# ./redis-cli -h 192.168.72.144
以下命令为检测命令:
输入: ping 返回 pong 表示成功

客户端退出:

第一种:强制退出 Ctrl+c
第二种: quit

检测是否启动成功

ps -ef | grep redis

文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。

转载请注明本文地址:https://www.ucloud.cn/yun/71342.html

相关文章

  • 服务器配置小记

    摘要:最近一个项目要上线了需要搭服务器本来是交给同学搭的结果遇到了大坑还得自己来今天把这些坑记一下服务器有好几台都是两台一台项目需要的环境是在上的折腾关于的折腾我通过官网下载的源安装的在的系统上执行没有遇到任何依赖错误于是顺利安装然后启动服务 最近一个项目要上线了,需要搭服务器,本来是交给同学搭的,结果遇到了大坑,还得自己来,今天把这些坑记一下. 服务器有好几台,都是CentOS6.X,两台...

    youkede 评论0 收藏0

发表评论

0条评论

jcc

|高级讲师

TA的文章

阅读更多
最新活动
阅读需要支付1元查看
<