Skip to content

Change and Save Redis configuration during running

homepage-banner

This article shows how to change Redis configuration from command line and save the changes without shutting down Redis.

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
Leave a message