1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 00:02:07 +02:00
tldr/pages/common/redis-server.md
Lucas Gabriel Schneider a5fe31bc47
multiple pages: format technical tokens (#5119)
Co-authored-by: bl-ue <54780737+bl-ue@users.noreply.github.com>
Co-authored-by: Starbeamrainbowlabs <sbrl@starbeamrainbowlabs.com>
2021-01-31 12:05:18 -05:00

24 lines
610 B
Markdown

# redis-server
> Persistent key-value database.
> More information: <https://redis.io>.
- 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}}`