System Grab Bag

View all TLDR pages from common (or from all pages)

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}}

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.