search
HomeDatabaseRedisHow to modify the redis configuration through the command line

How to modify the redis configuration through the command line

Redis has several commands that allow you to change the configuration settings of your Redis server on the fly. This tutorial will introduce some of these commands and explain how to make these configuration changes permanent.

How to use this guide

This guide is written as a cheat sheet with complete examples. We encourage you to skip to any section that is relevant to the task you want to complete.

The commands shown in this guide were tested on an Ubuntu 18.04 server running Redis version 4.0.9. To set up a similar environment, you can follow step 1 of our guide How to install and secure Redis on Ubuntu 18.04. We will demonstrate the behavior of these commands by running them using the Redis command line interface. Note that if you use another Redis interface (such as Redli), the exact output of some commands may vary.

Please note that hosted Redis databases generally do not allow users to change configuration files. If you are using DigitalOcean's managed database, the commands outlined in this guide will cause errors.

Change the configuration of Redis

The commands outlined in this section will only change the behavior of the Redis server during the current session or until you run config rewrite which will make them permanent. You can change it directly by opening and editing the Redis configuration file with your preferred text editor. For example, you can nano do this:

sudo nano /etc/redis/redis.conf

WARNING: This config set command is considered dangerous. By changing the Redis configuration files, it is possible to cause the Redis server to behave in an unexpected or undesirable manner. We recommend running the config set command only when testing the command's behavior or when you are absolutely sure you want to make changes to your Redis configuration.

You may want to rename this command to one that is less likely to be run accidentally.

The config set allows you to reconfigure Redis at runtime without restarting the service. It uses the following syntax:

config set parameter value

For example, if you want to change the name of the database dump file that Redis will produce after running the save command, you can run a command like this:

config set "dbfilename" "new_file.rdb"

If the configuration changes are valid, The command will return OK. Otherwise an error will be returned.

Note: Not every parameter in the redis.conf file can be changed through the config set operation. For example, you cannot change the authentication password defined by the requirepass parameter.

Making configuration changes permanently

The config set does not permanently change the configuration file of the Redis instance; it only changes the behavior of Redis at runtime. To edit redis.conf after running the config-set command and make the current session's configuration permanent, run config rewrite:

config rewrite

This command will do its best to preserve the comments and entirety of the original redis.conf file structure with minimal changes required to match the settings currently used by the server.

Just like config set, config rewrite will return OK if the rewrite is successful.

Check the configuration of Redis

To read the current configuration parameters of the Redis server, run the config get command. config get has only one parameter, which can be an exact match of either of the parameters used in redis.conf or glob pattern). For example:

config get repl*

Depending on your Redis configuration, this command may return:

Output 1) "repl-ping-slave-period"
 2) "10"
 3) "repl-timeout"
 4) "60"
 5) "repl-backlog-size"
 6) "1048576"
 7) "repl-backlog-ttl"
 8) "3600"
 9) "repl-diskless-sync-delay"10) "5"11) "repl-disable-tcp-nodelay"12) "no"13) "repl-diskless-sync"14) "no"

You can also return all supported config set by running Configuration parameters config get *.

Related references:Redis Tutorial

The above is the detailed content of How to modify the redis configuration through the command line. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:https://segmentfault. If there is any infringement, please contact admin@php.cn delete
Redis: Caching, Session Management, and MoreRedis: Caching, Session Management, and MoreMay 01, 2025 am 12:03 AM

Redis's functions mainly include cache, session management and other functions: 1) The cache function stores data through memory to improve reading speed, and is suitable for high-frequency access scenarios such as e-commerce websites; 2) The session management function shares session data in a distributed system and automatically cleans it through an expiration time mechanism; 3) Other functions such as publish-subscribe mode, distributed locks and counters, suitable for real-time message push and multi-threaded systems and other scenarios.

Redis: Exploring Its Core Functionality and BenefitsRedis: Exploring Its Core Functionality and BenefitsApr 30, 2025 am 12:22 AM

Redis's core functions include memory storage and persistence mechanisms. 1) Memory storage provides extremely fast read and write speeds, suitable for high-performance applications. 2) Persistence ensures that data is not lost through RDB and AOF, and the choice is based on application needs.

Redis's Server-Side Operations: What It OffersRedis's Server-Side Operations: What It OffersApr 29, 2025 am 12:21 AM

Redis'sServer-SideOperationsofferFunctionsandTriggersforexecutingcomplexoperationsontheserver.1)FunctionsallowcustomoperationsinLua,JavaScript,orRedis'sscriptinglanguage,enhancingscalabilityandmaintenance.2)Triggersenableautomaticfunctionexecutionone

Redis: Database or Server? Demystifying the RoleRedis: Database or Server? Demystifying the RoleApr 28, 2025 am 12:06 AM

Redisisbothadatabaseandaserver.1)Asadatabase,itusesin-memorystorageforfastaccess,idealforreal-timeapplicationsandcaching.2)Asaserver,itsupportspub/submessagingandLuascriptingforreal-timecommunicationandserver-sideoperations.

Redis: The Advantages of a NoSQL ApproachRedis: The Advantages of a NoSQL ApproachApr 27, 2025 am 12:09 AM

Redis is a NoSQL database that provides high performance and flexibility. 1) Store data through key-value pairs, suitable for processing large-scale data and high concurrency. 2) Memory storage and single-threaded models ensure fast read and write and atomicity. 3) Use RDB and AOF mechanisms to persist data, supporting high availability and scale-out.

Redis: Understanding Its Architecture and PurposeRedis: Understanding Its Architecture and PurposeApr 26, 2025 am 12:11 AM

Redis is a memory data structure storage system, mainly used as a database, cache and message broker. Its core features include single-threaded model, I/O multiplexing, persistence mechanism, replication and clustering functions. Redis is commonly used in practical applications for caching, session storage, and message queues. It can significantly improve its performance by selecting the right data structure, using pipelines and transactions, and monitoring and tuning.

Redis vs. SQL Databases: Key DifferencesRedis vs. SQL Databases: Key DifferencesApr 25, 2025 am 12:02 AM

The main difference between Redis and SQL databases is that Redis is an in-memory database, suitable for high performance and flexibility requirements; SQL database is a relational database, suitable for complex queries and data consistency requirements. Specifically, 1) Redis provides high-speed data access and caching services, supports multiple data types, suitable for caching and real-time data processing; 2) SQL database manages data through a table structure, supports complex queries and transaction processing, and is suitable for scenarios such as e-commerce and financial systems that require data consistency.

Redis: How It Acts as a Data Store and ServiceRedis: How It Acts as a Data Store and ServiceApr 24, 2025 am 12:08 AM

Redisactsasbothadatastoreandaservice.1)Asadatastore,itusesin-memorystorageforfastoperations,supportingvariousdatastructureslikekey-valuepairsandsortedsets.2)Asaservice,itprovidesfunctionalitieslikepub/submessagingandLuascriptingforcomplexoperationsan

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.