Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Open Terminal and paste the following command:
- /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
- Follow the on-screen instructions to complete the installation.
- Install Redis
- Once Homebrew is installed, you can install Redis with the following command:
- brew install redis
- Start Redis
- After installation, you can start Redis using:
- brew services start redis
- This command sets Redis to start automatically at login. If you prefer to start it manually, use:
- redis-server
- Test Redis
- You can test if Redis is running by opening another Terminal window and typing:
- redis-cli
- This opens the Redis command-line interface. You can then test the connection by typing:
- ping
- # For Ubuntu/Debian
- wget https://downloads.redisinsight.redis.com/latest/RedisInsight-linux-x64.AppImage
- chmod +x RedisInsight-linux-x64.AppImage
- ./RedisInsight-linux-x64.AppImage
- Docker version:
- bash
- Copy
- Edit
- docker run -d -p 8001:8001 --name redisinsight redislabs/redisinsight
- Then open in browser:
- 👉 http://localhost:8001
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement