资讯专栏INFORMATION COLUMN

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

jcc / 881人阅读

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

1 redis的安装:

1.1 准备工作

安装目录:/export/servers

软件存放目录:/export/software

数据存放目录:/export/data

日志存放目录:/export/logs

</>复制代码

  1. mkdir -p /export/servers/
  2. mkdir -p /export/software/
  3. mkdir -p /export/data/
  4. mkdir -p /export/logs

1.2 安装GCC

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

</>复制代码

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

1.3 下载安装包

</>复制代码

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

1.4 编译Redis

</>复制代码

  1. cd /export/servers/redis-src/
  2. make MALLOC=libc
  3. make PREFIX=/export/servers/redis install

1.5 准备配置文件

</>复制代码

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

配置文件如下:

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

</>复制代码

  1. bind 192.168.72.144
  2. protected-mode yes
  3. port 6379
  4. tcp-backlog 511
  5. timeout 0
  6. tcp-keepalive 300
  7. daemonize yes
  8. supervised no
  9. pidfile /export/data/redis/6379/redis_6379.pid
  10. loglevel notice
  11. logfile "/export/data/redis/6379/log.log"
  12. databases 16
  13. always-show-logo yes
  14. save 900 1
  15. save 300 10
  16. save 60 10000
  17. stop-writes-on-bgsave-error yes
  18. rdbcompression yes
  19. rdbchecksum yes
  20. dbfilename dump.rdb
  21. dir /export/data/redis/6379/
  22. slave-serve-stale-data yes
  23. slave-read-only yes
  24. repl-diskless-sync no
  25. repl-diskless-sync-delay 5
  26. repl-disable-tcp-nodelay no
  27. slave-priority 100
  28. lazyfree-lazy-eviction no
  29. lazyfree-lazy-expire no
  30. lazyfree-lazy-server-del no
  31. slave-lazy-flush no
  32. appendonly yes
  33. appendfilename "appendonly.aof"
  34. appendfsync everysec
  35. no-appendfsync-on-rewrite no
  36. auto-aof-rewrite-percentage 100
  37. auto-aof-rewrite-min-size 64mb
  38. aof-load-truncated yes
  39. aof-use-rdb-preamble no
  40. lua-time-limit 5000
  41. slowlog-log-slower-than 10000
  42. slowlog-max-len 128
  43. latency-monitor-threshold 0
  44. notify-keyspace-events ""
  45. hash-max-ziplist-entries 512
  46. hash-max-ziplist-value 64
  47. list-max-ziplist-size -2
  48. list-compress-depth 0
  49. set-max-intset-entries 512
  50. zset-max-ziplist-entries 128
  51. zset-max-ziplist-value 64
  52. hll-sparse-max-bytes 3000
  53. activerehashing yes
  54. client-output-buffer-limit normal 0 0 0
  55. client-output-buffer-limit slave 256mb 64mb 60
  56. client-output-buffer-limit pubsub 32mb 8mb 60
  57. hz 10
  58. aof-rewrite-incremental-fsync yes

1.6 启动服务

</>复制代码

  1. mkdir -p /export/data/redis/6379/
  2. cd /export/servers/redis/bin/
  3. ./redis-server ../conf/redis_6379.conf
  4. 查看命令
  5. 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 表示成功

客户端退出:

</>复制代码

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

检测是否启动成功

ps -ef | grep redis

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

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

相关文章

  • 服务器配置小记

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

    youkede 评论0 收藏0

发表评论

0条评论

jcc

|高级讲师

TA的文章

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