Skip to content

Commit

Permalink
Update README.md (publiclab#9748)
Browse files Browse the repository at this point in the history
Added instructions for installing redis in Ubuntu using WSL2 at like 150 with proper formatting and emojis.
  • Loading branch information
jrogers-dev authored Jun 9, 2021
1 parent 6b3cae5 commit 41032bc
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,16 @@ Public Lab uses Redis and may be required for some functionality when running th
1. Install Redis if you haven't already:
* Using **MacOS**: `brew install redis`
* Using **Linux**: `sudo yum -y install redis`
* Using **Ubuntu WSL2**:
* update & upgrade Ubuntu: `sudo apt update && apt upgrade`
* install redis: `sudo apt install Redis-server`
* open Redis.config file: `sudo nano /etc/redis/redis.conf`
* update the file by changing the supervised no line to supervised systemd(ubuntu uses systemd)
* start Redis: `sudo service redis-server start`
* open Redis CLI: `redis-cli`
* test Redis: type `ping` & response should be `pong`
* exit cli: type `quit`
* Awesome :thumbsup: All done :white_check_mark:
2. Run Redis server:
* Using **MacOS**: `brew services start redis`
* Using **Linux**: `redis-server`
Expand Down

0 comments on commit 41032bc

Please sign in to comment.