Change and Save Redis configuration during running
This article shows how to change
Redis
configuration from command line and save the changes without shutting downRedis
.
redis-cli -h IP -p PORT
get all config
config get *
## get prefix
config get p*
change config
config set PARA VALUE
## e.g.
config set protected-mode no
save
config rewrite
## get config_file location and verify changes
info server
Disclaimer
- License under
CC BY-NC 4.0
- Copyright issue feedback
me#imzye.me
, replace # with @ - Not all the commands and scripts are tested in production environment, use at your own risk
- No privacy information is collected here