Advertisement
netang

Redis

Aug 31st, 2020 (edited)
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.38 KB | None | 0 0
  1. # install
  2. sudo dnf update -y
  3. sudo dnf install redis -y
  4.  
  5. # To start and enable
  6. sudo systemctl start redis
  7. sudo systemctl enable redis
  8.  
  9. # config
  10. sudo vim /etc/redis.conf
  11.  
  12. # firewall conf
  13. sudo firewall-cmd --zone=public --permanent --add-port 17033/tcp
  14. sudo firewall-cmd --reload
  15. sudo firewall-cmd --list-all
  16.  
  17. # https://www.linuxtechi.com/install-redis-server-on-centos-8-rhel-8/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement