2019年8月29日

liunx 统计文件夹下文件个数

摘要: 当前文件夹下所有文件个数: ls -l | grep "^-"| wc -l 当前文件夹下目录个数: ls -l | grep "^d"| wc -l 当前文件夹下文件以及子目录文件个数:ls -lR | grep "^-"| wc -l 当前文件夹下目录以及子文件夹下目录个数:ls -lR | g 阅读全文

posted @ 2019-08-29 10:24 Helianthus720 阅读(146) 评论(0) 推荐(0)

liunx 下 redis 日志文件路径

摘要: 可查看redis.conf下的logfile(因文件中有多个logfile,找到前面有loglevel的就是) ,如下图 阅读全文

posted @ 2019-08-29 10:06 Helianthus720 阅读(10340) 评论(0) 推荐(0)

Redis is configured to save RDB snapshots, but is currently not able to persist on disk. Commands that may modify the data set are disabled

摘要: 在redis上删除key值时,出现: Redis is configured to save RDB snapshots, but is currently not able to persist on disk. Commands that may modify the data set are 阅读全文

posted @ 2019-08-29 09:55 Helianthus720 阅读(701) 评论(0) 推荐(0)

导航