Save Redis config in running
This article shows how to change
Redisconfiguration 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
Some of the content is generated by AI, please be cautious in identifying it.