02 Redis关闭服务报错---(error) ERR Errors trying to SHUTDOWN. Check logs.

127.0.0.1:6379> shutdown
(error) ERR Errors trying to SHUTDOWN. Check logs.

  

1.在redis.conf中修改日志文件的位置

#日志文件位置
logfile /usr/local/redis/log-redis.log

 

2.更改log-redis.log文件的权限

chmod 777 log-redis.log

3.conf文件 修改数据本地保存文件配置

#指定本地数据库文件名
dbfilename dump.rdb
#指定本地数据库路径 默认是当前路径。dir ./  # 当前路径(配置文件所在路径) chmod 777 后,redis可以成功shutdown,有dump.rdb文件
# dir /usr/local/redis/db/ # 设置的其它路径chmod 777 后,redis依然无法shutdown,这个路径下也无法查找到dump.rdb文件

4.可以成功shutdown

如果还不行的话

chmod 777 dump.rdb

原文地址:https://www.cnblogs.com/guchunchao/p/10635363.html

时间: 2024-10-28 20:30:47

02 Redis关闭服务报错---(error) ERR Errors trying to SHUTDOWN. Check logs.的相关文章

linux 使用systemctl 启动服务报错: Error: No space left on device

By default, Linux only allocates 8192 watches for inotify, which is ridiculously low. And when it runs out, the error is also No space left on device, which may be confusing if you aren't explicitly looking for this issue. vi /etc/sysctl.conf  增加  fs

Redis 2.8.18 安装报错 error: jemalloc/jemalloc.h: No such file or directory

Redis是一个开源的使用ANSI C语言编写.支持网络.可基于内存亦可持久化的日志型.Key-Value数据库,并提供多种语言的API. 本文为大家讲解的是Redis 2.8.18 安装报错 error: jemalloc/jemalloc.h: No such file or directory解决方法,感兴趣的同学参考下. 错误描述 安装Redis 2.8.18时报错: zmalloc.h:50:31: error: jemalloc/jemalloc.h: No such file or

Redis报错-(error) NOAUTH Authentication required.

安装过Redis之后, 如果之前在redis.windows-service.conf文件中有设置密码, 例如 # requirepass foobared requirepass 123456 那么启动redis-cli.exe客户端之后,要先授权命令 auth 123456 这样Redis命令才能生效,否则会报错 (error) NOAUTH Authentication required. 原文地址:https://www.cnblogs.com/helenwq/p/11789313.ht

升级 MySQL 至 5.5,报错 [ERROR] Plugin 'InnoDB' init function returned error

MySQL 从 5.5 升级到 5.6,启动时报错: [ERROR] Plugin 'InnoDB' init function returned error. [ERROR] Plugin 'InnoDB' registration as a STORAGE ENGINE failed. [ERROR] Unknown/unsupported storage engine: InnoDB [ERROR] Aborting 原因:主要是没有正常关闭 mysqld 服务的情况下,对数据库参数进行改

【MySQL笔记】mysql报错"ERROR 1206 (HY000): The total number of locks exceeds the lock table size"的解决方法

step1:查看 1.1 Mysql命令行里输入"show engines:"查看innoddb数据引擎状态, 1.2 show variables "%_buffer%"里查看innodb_buffer_pool_size的数值,默认是8M(太小,需要改大一点!) step2:找配置文件,修改innodb_buffer_pool_size=64M 2.1 在linux里配置文件是my.cnf,windows里是my.ini(注:不是my-default.ini).

mysql登陆启动报错 ERROR 2002 (HY000) 解决方法

报错信息 登陆数据库报错:` ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' (2 "No such file or directory")` 重启服务报错:Job for mariadb.service failed because the control process exited with error code. See &quo

升级到macOS 10.12 mysqlb报错ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO)

系统升级到macOS 10.12后启动mysql后,在终端输入mysql 报错ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES/NO) 解决办法1 在系统偏好设置里关闭mySQL2 $ cd /usr/bin3 $ sudo mysqld_safe --skip-grant-tables4 再打开一个终端$ mysqlmysql> use mysql;mysql> UPDATE

mysql报错ERROR 2003 (HY000): Can't connect to MySQL server on 'localhost' (10061)

23:29:02/2017-05-03 现象描述:在Command Line Client可以登陆,但是在命令提示符cmd下登陆出错. 我最终的解决办法是: 我先去看了一下我的my.ini配置文件. 新版5.7的配置文件不是在安装目录,而是在programDat/mysql文件目录下 打开文件之后: 我在安装的时候修改了默认端口3306为8082, 在cmd登陆的时候仍然是默认端口登陆的,所以会报错.那么在登陆的 时候可以指定端口, -P一定要大写. mysql报错ERROR 2003 (HY0

struts1起服务报错

1. 2014-5-10 21:36:56 org.apache.struts.action.ActionServlet init 严重: Unable to initialize Struts ActionServlet due to an unexpected exception or error thrown, so marking the servlet as unavailable.  Most likely, this is due to an incorrect or missin