我的编程空间,编程开发者的网络收藏夹
学习永远不晚

redis的搭建过程

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

redis的搭建过程

本篇内容介绍了“redis的搭建过程”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!

redis官网:http://download.redis.io/releases

redis 安装包    redis-3.2.13.tar.gz

解压:tar -xvf redis-3.2.13.tar.gz

把解压的redis放在你准备的目录下面,我放在根/ 下面。

cd redis-3.2.13 make

编译好了,进入class="lazy" data-src文件下面;

[root@localhost class="lazy" data-src]# make install Hint: It's a good idea to run 'make test' ;)    INSTALL install    INSTALL install    INSTALL install    INSTALL install    INSTALL install [root@localhost class="lazy" data-src]#

返回上一层,

[root@localhost redis-3.2.13]# pwd

/redis-3.2.13

[root@localhost redis-3.2.13]# vim redis.conf

bind 0.0.0.0   如果别人要访问修改成0.0.0.0,默认是本机连接

daemonize yes   默认不是后台启动,我们修改成yes

requirepass 123  去掉#号,修改密码,重启生效,

timeout 10

现在启动redis,我们设置了后台启动的,所以不会显示什么:

[root@localhost redis-3.2.13]# ./class="lazy" data-src/redis-server /redis-3.2.13/redis.conf

查看进程:

[root@localhost redis-3.2.13]# ps -ef|grep redis root      4434     1  0 10:54 ?        00:00:00 ./class="lazy" data-src/redis-server 127.0.0.1:6379 root      4506   818  0 10:55 pts/2    00:00:00 grep --color=auto redis

进入redis:

[root@localhost redis-3.2.13]# redis-cli -a 123 127.0.0.1:6379> 127.0.0.1:6379> config get dir 1) "dir" 2) "/redis-3.2.13" 127.0.0.1:6379>

下面可做可不做,方便后面维护而已:

进入redis安装目录:

[root@localhost ~]# cd /redis-3.2.13/utils/ [root@localhost utils]# ll total 52 -rw-rw-r--. 1 root root  593 Mar 19 00:25 build-static-symbols.tcl -rw-rw-r--. 1 root root 1303 Mar 19 00:25 cluster_fail_time.tcl -rw-rw-r--. 1 root root 1070 Mar 19 00:25 corrupt_rdb.c drwxrwxr-x. 2 root root   60 Mar 19 00:25 create-cluster -rwxrwxr-x. 1 root root 2137 Mar 19 00:25 generate-command-help.rb drwxrwxr-x. 2 root root   39 Mar 19 00:25 hashtable drwxrwxr-x. 2 root root   70 Mar 19 00:25 hyperloglog -rwxrwxr-x. 1 root root 8529 Mar 19 00:25 install_server.sh drwxrwxr-x. 2 root root   39 Mar 19 00:25 lru -rw-rw-r--. 1 root root 1277 Mar 19 00:25 redis-copy.rb -rwxrwxr-x. 1 root root 1098 Mar 19 00:25 redis_init_script -rwxrwxr-x. 1 root root 1047 Mar 19 00:25 redis_init_script.tpl -rw-rw-r--. 1 root root 1762 Mar 19 00:25 redis-sha1.rb drwxrwxr-x. 2 root root  114 Mar 19 00:25 releasetools -rwxrwxr-x. 1 root root 3787 Mar 19 00:25 speed-regression.tcl -rwxrwxr-x. 1 root root  693 Mar 19 00:25 whatisdoing.sh [root@localhost utils]# vim redis_init_script REDISPORT=6379 EXEC=/usr/local/bin/redis-server    --找到redis-server,我的在/redis-3.2.13/class="lazy" data-src CLIEXEC=/usr/local/bin/redis-cli    --找到redis-server,我的在/redis-3.2.13/class="lazy" data-src PIDFILE=/var/run/redis_${REDISPORT}.pid CONF="/etc/redis/${REDISPORT}.conf"     ---配置文件在安装目录下面/redis-3.2.13,注意redis.confg名字 case "$1" in    start)        if [ -f $PIDFILE ]        then                echo "$PIDFILE exists, process is already running or crashed"        else                echo "Starting Redis server..."                $EXEC $CONF        fi        ;;    stop)        if [ ! -f $PIDFILE ]        then                echo "$PIDFILE does not exist, process is not running"        else                PID=$(cat $PIDFILE)                echo "Stopping ..."                $CLIEXEC -p $REDISPORT shutdown    ----注意密码问题 -a password                while [ -x /proc/${PID} ]                do                    echo "Waiting for Redis to shutdown ..."                    sleep 1                done                echo "Redis stopped"        fi        ;;    *)        echo "Please use start or stop as first argument"        ;; esac

修改好了,就把这个文件/etc/init.d下面,改名redis

[root@localhost utils]# mv redis_init_script /etc/init.d/redis [root@localhost utils]# chmod +x /etc/init.d/redis

修改好了,停一下报错,发现还没有配置好:

[root@localhost utils]# service redis stop Stopping ... (error) NOAUTH Authentication required. Waiting for Redis to shutdown ... Waiting for Redis to shutdown ... Waiting for Redis to shutdown ... Waiting for Redis to shutdown ... Waiting for Redis to shutdown ... Waiting for Redis to shutdown ... Waiting for Redis to shutdown ... Waiting for Redis to shutdown ... Waiting for Redis to shutdown ... Waiting for Redis to shutdown ...

找到问题了,原来是/etc/init.d/redis下面的脚本缺少-a 密码认证

[root@localhost init.d]# service redis stop Stopping ... Redis stopped

配置下面的内核参数,否则Redis脚本在重启或停止redis时,将会报错,并且不能自动在停止服务前同步数据到磁盘上/etc/sysctl.conf加上 

#vim /etc/sysctl.conf

vm.overcommit_memory = 1 

#sysctl -p 

vi /etc/profile

export PATH="$PATH:/redis-3.2.13/class="lazy" data-src"    这个位置就是redis-server和redis-cli的位置

redis状态监测:

[root@localhost init.d]# redis-cli -a 123 --stat

redis的搭建过程

[root@localhost init.d]# redis-cli -a 123 --bigkeys -i 0.01

扫描大key

redis的搭建过程

主从同步:

1,先修改从库的配置文件

slaveof 主库ip 端口

2,重启从库

3,登录从库,slaveof 主库ip 端口   ----开启主从同步

遇到的问题。

1,从库配置文件添加了slaveof,但是从主不同步,查看info,

repl_backlog_active:0   显示的为0

解决办法:重启从库,执行slaveof no one,再执行slaveof 主ip+端口,

redis使用命令:

127.0.0.1:6379> config get dir 1) "dir" 2) "/apps/redis/data/master" 127.0.0.1:6379>

info 查看redis的基本信息

1、protected-mode

#protected-mode yes #是否开启保护模式,默认开启。要是配置里没有指定bind和密码。开启该参数后,redis只会 本地进行访问,拒绝外部访问。要是开启了密码 和bind,可以开启。否 则最好关闭,设置为no。

“redis的搭建过程”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注亿速云网站,小编将为大家输出更多高质量的实用文章!

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

redis的搭建过程

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

k8s部署redis集群搭建过程示例详解

这篇文章主要为大家介绍了k8s部署redis集群搭建过程示例详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
2023-02-21

greenplum集群的搭建过程

本篇内容主要讲解“greenplum集群的搭建过程”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“greenplum集群的搭建过程”吧!环境说明本次环境一共四台虚拟机,一台为master,三台为s
2023-06-02

kubernetes的详细搭建过程

本篇内容主要讲解“kubernetes的详细搭建过程”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“kubernetes的详细搭建过程”吧!环境说明:2台机器,167和168,系统都是centos
2023-06-19

云服务器的搭建过程

云服务器的搭建过程比较复杂,一般需要进行以下几个步骤:选择云服务器平台:选择一个合适的云服务器平台是搭建云服务器的第一步,也是关键的一步。在选择云服务器平台时,需要考虑平台的性能、稳定性、安全性、可靠性等因素。可以通过比较不同云服务器平台的性能、稳定性、安全性等来选择最适合自己业务的云服务器平台。安装云服务器软件:在选择云服务器平台后,需要安装云服务器软件。在安装软件时,需要仔细阅读软件的
2023-10-26

编程热搜

目录