redis-server: add page (#4356)

beep
John Ingram 2020-10-05 06:11:57 -05:00 committed by GitHub
parent a3ce094b67
commit 73c6a856e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,24 @@
# 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}}`