mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-03-01 04:54:15 +00:00
Update cheatsheets
This commit is contained in:
29
redis-server
Normal file
29
redis-server
Normal file
@@ -0,0 +1,29 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# 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}}`
|
||||
Reference in New Issue
Block a user