redis-server
Persistent key-value database. More information: <https://redis.io>.
Install
- All systems
-
curl cmd.cat/redis-server.sh
- Debian
-
apt-get install redis-server - Ubuntu
-
apt-get install redis-server - Arch Linux
-
pacman -S redis-server - Kali Linux
-
apt-get install redis-server - Fedora
-
dnf install redis-server - Windows (WSL2)
-
sudo apt-get updatesudo apt-get install redis-server - Raspbian
-
apt-get install 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
© tl;dr; authors and contributors