docker安装redis及避坑:‘locale-collate ““‘ Bad directive or wrong number of arguments
问题原因:不同的redis版本需要不同的配置文件,根据报错日志可知当前redis的版本为。替换掉,然后按照之前的方法修改配置信息,完成后再次启动redis。,所以需要去redis官网下载对应版本的配置文件。
·
一、步骤
拉取redis镜像
docker pull redis
创建挂载目录
mkdir /mydata/redis/data
进入挂载目录/mydata/redis
,下载redis.conf文件
wget http://download.redis.io/redis-stable/redis.conf
授权
chmod 777 redis.conf
修改默认配置信息
vi /docker-data/redis/redis.conf
bind 127.0.0.1 # 这行要注释掉,解除本地连接限制
protected-mode no # 默认yes,如果设置为yes,则只允许在本机的回环连接,其他机器无法连接。 daemonize no # 默认no 为不守护进程模式,docker部署不需要改为yes,docker run -d本身就是后台启动,不然会冲突
requirepass 123456 # 设置密码
appendonly yes # 持久化
docker启动redis
docker run -d --name=redis01 \
-p 6379:6379 \
-v /mydata/redis/redis.conf:/etc/redis/redis.conf \
-v /mydata/redis/data:/data \
--restart=always \
redis:latest redis-server /etc/redis/redis.conf
二、踩坑
完成以上步骤,发现redis容器启动报错,查看日志:
*** FATAL CONFIG FILE ERROR (Redis 6.2.6) ***
Reading the configuration file, at line 416
>>> 'locale-collate ""'
Bad directive or wrong number of arguments
*** FATAL CONFIG FILE ERROR (Redis 6.2.6) ***
Reading the configuration file, at line 416
>>> 'locale-collate ""'
Bad directive or wrong number of arguments
*** FATAL CONFIG FILE ERROR (Redis 6.2.6) ***
Reading the configuration file, at line 416
>>> 'locale-collate ""'
Bad directive or wrong number of arguments
*** FATAL CONFIG FILE ERROR (Redis 6.2.6) ***
Reading the configuration file, at line 416
>>> 'locale-collate ""'
Bad directive or wrong number of arguments
*** FATAL CONFIG FILE ERROR (Redis 6.2.6) ***
Reading the configuration file, at line 416
>>> 'locale-collate ""'
Bad directive or wrong number of arguments
*** FATAL CONFIG FILE ERROR (Redis 6.2.6) ***
Reading the configuration file, at line 416
>>> 'locale-collate ""'
Bad directive or wrong number of arguments
三、解决
问题原因:不同的redis版本需要不同的配置文件,根据报错日志可知当前redis的版本为6.2.6
,所以需要去redis官网下载对应版本的配置文件
redis配置文件下载地址
下载后把之前的redis.conf
替换掉,然后按照之前的方法修改配置信息,完成后再次启动redis
docker run -d --name=redis01 \
-p 6379:6379 \
-v /mydata/redis/redis.conf:/etc/redis/redis.conf \
-v /mydata/redis/data:/data \
--restart=always \
redis:latest redis-server /etc/redis/redis.conf
这下成功启动:
开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!
更多推荐
已为社区贡献1条内容
所有评论(0)