检查防火墙是否开启(如果开启需要关闭)
systemctl status firewalld
开启httpd服务
systemctl start httpd
上传gpmall-repo压缩包安装unzip解压服务
yum install -y unzip
解压gpmall-repo文件
unzip /gpmall-repo.zip
把解压出来的文件移动到opt目录下
mv /gpmall-repo /opt
安装redis服务(主,从)
yum install -y redis
编辑主机redis.conf文件
vi /etc/redis.conf
将bind 127.0.0.1这一行注释掉
protected-mode yes //将yes改为no
daemonize no //将no改为yes
#requirepass foobared //下面添加一行
requirepass "123456"
#masterauth //下面添加一行
masterauth "123456"
appendonly no //将no改为yes
设置主机映射(主机从机都要设置)
vi /etc/hosts
复制controller主机的redis.conf文件到compute主机上
scp -r /etc/redis.conf root@compute:/etc/redis.conf
编辑第二节点的redis.conf文件
第二节点:
在第一节点的基础上多一处
#slaveof //下面添加一行
slaveof 192.168.100.10 6379
两个节点启动redis服务
systemctl start redis
进入redis(主从都要查看)
redis-cli
auth 123456 //验证密码
info replication //查看主从复制信息
标签:gpmall,no,Redis,redis,repo,conf,yes,主从 From: https://blog.csdn.net/qq_55789621/article/details/137595718