Forrest logo
back to context overview

redis-server

List of commands for redis-server:

  • redis-server:tldr:0efb3 redis-server: Start Redis server, using the default port, as a background process.
    $ redis-server --daemonize yes
    try on your machine
    explain this command
  • redis-server:tldr:1abc8 redis-server: Start Redis server with a custom configuration file.
    $ redis-server ${path-to-redis-conf}
    try on your machine
    explain this command
  • redis-server:tldr:ab603 redis-server: Start Redis server, using the default port (6379), and write logs to `stdout`.
    $ redis-server
    try on your machine
    explain this command
  • redis-server:tldr:b2584 redis-server: Start Redis server, using the specified port, as a background process.
    $ redis-server --port ${port} --daemonize yes
    try on your machine
    explain this command
  • redis-server:tldr:cd58f redis-server: Start Redis server with verbose logging.
    $ redis-server --loglevel ${select}
    try on your machine
    explain this command
back to context overview