2025-03-14 21:59:59 -06:00
|
|
|
# redis-server
|
|
|
|
|
|
|
|
|
|
> Persistent key-value database.
|
2025-12-16 10:20:31 -07:00
|
|
|
> More information: <https://redis.io/learn/operate/redis-at-scale/talking-to-redis/configuring-a-redis-server>.
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Start Redis server, using the default port (6379), and write logs to `stdout`:
|
|
|
|
|
|
|
|
|
|
`redis-server`
|
|
|
|
|
|
|
|
|
|
- Start Redis server, using the default port, as a background process:
|
|
|
|
|
|
|
|
|
|
`redis-server --daemonize yes`
|
|
|
|
|
|
|
|
|
|
- Start Redis server, using the specified port, as a background process:
|
|
|
|
|
|
|
|
|
|
`redis-server --port {{port}} --daemonize yes`
|
|
|
|
|
|
|
|
|
|
- Start Redis server with a custom configuration file:
|
|
|
|
|
|
|
|
|
|
`redis-server {{path/to/redis.conf}}`
|
|
|
|
|
|
|
|
|
|
- Start Redis server with verbose logging:
|
|
|
|
|
|
|
|
|
|
`redis-server --loglevel {{warning|notice|verbose|debug}}`
|